:root {
  color-scheme: light dark;
  --page: #f4f7f5;
  --paper: #ffffff;
  --paper-soft: #edf3f0;
  --ink: #14231f;
  --ink-soft: #52615c;
  --ink-faint: #52615c;
  --line: #d7e2dd;
  --line-strong: #bdcbc7;
  --brand: #0f675d;
  --brand-deep: #0a4c45;
  --brand-soft: #d8ece6;
  --focus: #0c7b6e;
  --contact: #2b6fcb;
  --contact-soft: #dce9fb;
  --influence: #5c792f;
  --influence-soft: #e5edda;
  --dark: #102021;
  --dark-raised: #172a2b;
  --dark-line: #2c4141;
  --on-dark: #f4f8f7;
  --on-dark-soft: #b9c8c6;
  --shadow-sm: 0 1px 2px rgb(12 32 34 / 0.06), 0 8px 28px rgb(12 32 34 / 0.05);
  --shadow-lg: 0 30px 90px rgb(12 32 34 / 0.14), 0 8px 26px rgb(12 32 34 / 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1280px;
  --font-sans: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 280px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
p {
  margin-top: 0;
}

::selection {
  background: var(--brand);
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 100;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 72%, white);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.2), transparent 52%),
    var(--brand);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.3), 0 8px 24px rgb(23 107 92 / 0.18);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.brand-words {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0;
  align-items: baseline;
  line-height: 1;
}

.brand-words strong {
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.brand-words span {
  color: var(--brand);
  font-size: 1rem;
  font-weight: 650;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.84rem;
}

.button-primary {
  background: var(--brand);
  box-shadow: 0 12px 30px rgb(23 107 92 / 0.23);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 16px 36px rgb(23 107 92 / 0.28);
}

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  color: var(--ink);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--brand);
  background: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(70px, 9vw, 130px) 0 clamp(68px, 8vw, 112px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 34%, transparent), transparent 70%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 54%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 54%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.64), transparent 76%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-one {
  top: -110px;
  right: -170px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-soft) 78%, transparent), transparent 68%);
}

.hero-glow-two {
  bottom: -80px;
  left: -210px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--contact-soft) 72%, transparent), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
}

.hero-copy,
.hero-board {
  min-width: 0;
}

.eyebrow,
.service-eyebrow,
.audience-label {
  margin-bottom: 17px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 6.6vw, 6.1rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.4vw, 1.23rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 690;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.hero-board {
  position: relative;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--dark-line) 78%, transparent);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 0, rgb(52 124 109 / 0.25), transparent 31%),
    linear-gradient(145deg, #14292a, #0d1a1c 72%);
  box-shadow: var(--shadow-lg);
  color: var(--on-dark);
  transform: rotate(1deg);
}

.hero-board::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 0.035);
  border-radius: 22px;
  content: "";
}

.board-header,
.board-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--on-dark-soft);
  font-size: 0.72rem;
  font-weight: 660;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.board-header {
  padding: 4px 5px 15px;
  border-bottom: 1px solid var(--dark-line);
}

.board-header strong {
  margin-left: auto;
  color: var(--on-dark);
  font-size: 0.72rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72d6ae;
  box-shadow: 0 0 0 5px rgb(114 214 174 / 0.08);
}

.board-services {
  display: grid;
  gap: 12px;
  padding-block: 15px;
}

.board-service {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--dark-line);
  border-radius: 20px;
  background: rgb(255 255 255 / 0.035);
}

.board-contact {
  box-shadow: inset 4px 0 0 var(--contact);
}

.board-influence {
  box-shadow: inset 4px 0 0 var(--influence);
}

.board-service-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 27px;
}

.service-monogram {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 11px;
  background: rgb(255 255 255 / 0.07);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.board-contact .service-monogram {
  color: #8bb8f5;
}

.board-influence .service-monogram {
  color: #b9d885;
}

.board-service-heading div {
  display: grid;
  gap: 3px;
}

.board-service-heading strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.board-service-heading div span {
  color: var(--on-dark-soft);
  font-size: 0.76rem;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-line li {
  position: relative;
  padding-top: 18px;
  color: var(--on-dark-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.flow-line li::before {
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.flow-line li::after {
  position: absolute;
  top: 6px;
  right: 4px;
  left: 8px;
  height: 1px;
  background: var(--dark-line);
  content: "";
}

.flow-line li:last-child::after {
  display: none;
}

.board-contact .flow-line li {
  color: #8bb8f5;
}

.board-influence .flow-line li {
  color: #b5d27f;
}

.board-footer {
  justify-content: space-between;
  padding: 2px 5px 4px;
  letter-spacing: 0;
  text-transform: none;
}

.pilot-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--brand-soft) 42%, var(--paper));
}

.pilot-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding-block: 15px;
}

.pilot-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-strip strong::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.pilot-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  padding: clamp(84px, 10vw, 148px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 54px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.standards-copy h2,
.pilot-cta h2 {
  margin-bottom: 19px;
  font-size: clamp(2.25rem, 4.7vw, 4.6rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child,
.section-heading-wide > p,
.standards-copy > p,
.pilot-cta-inner > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

.services-section {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(25px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--page);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.service-card-contact::before {
  background: radial-gradient(circle, var(--contact-soft), transparent 68%);
}

.service-card-influence::before {
  background: radial-gradient(circle, var(--influence-soft), transparent 68%);
}

.service-card-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.service-eyebrow {
  margin-bottom: 5px;
}

.service-card-contact .service-eyebrow {
  color: var(--contact);
}

.service-card-influence .service-eyebrow {
  color: var(--influence);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 1;
}

.service-domain {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 75%, transparent);
  color: var(--ink-faint);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--line);
}

.service-flow span {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 720;
}

.service-flow i {
  color: var(--ink-faint);
  font-style: normal;
}

.service-card h4 {
  max-width: 580px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.service-description {
  margin-bottom: 30px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.benefit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.benefit-columns h5 {
  margin-bottom: 12px;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.check-list li::before {
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.service-card-contact .check-list li::before {
  color: var(--contact);
}

.service-card-influence .check-list li::before {
  color: var(--influence);
}

.service-note {
  margin: 30px 0 24px;
  padding: 15px 16px;
  border-left: 3px solid var(--line-strong);
  background: color-mix(in srgb, var(--paper) 58%, transparent);
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.service-card-contact .service-note {
  border-left-color: var(--contact);
}

.service-card-influence .service-note {
  border-left-color: var(--influence);
}

.service-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 780;
  text-decoration: none;
}

.service-card-contact .service-link {
  color: var(--contact);
}

.service-card-influence .service-link {
  color: var(--influence);
}

.service-link span {
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.service-link:hover span {
  transform: translate(3px, -3px);
}

.process-section {
  background:
    radial-gradient(circle at 100% 20%, color-mix(in srgb, var(--brand-soft) 45%, transparent), transparent 30%),
    var(--page);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-width: 0;
  padding: 30px clamp(20px, 2.5vw, 34px) 34px;
  border-left: 1px solid var(--line);
}

.process-grid li:first-child {
  border-left: 0;
}

.step-number {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 830;
  letter-spacing: 0.08em;
}

.process-grid li::before {
  position: absolute;
  top: 70px;
  left: clamp(20px, 2.5vw, 34px);
  width: 10px;
  height: 10px;
  border: 3px solid var(--page);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
  content: "";
}

.process-grid li::after {
  position: absolute;
  top: 75px;
  right: 0;
  left: calc(clamp(20px, 2.5vw, 34px) + 12px);
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.process-grid li:last-child::after {
  right: clamp(20px, 2.5vw, 34px);
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.04rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

.standards-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgb(23 107 92 / 0.22), transparent 32%),
    var(--dark);
  color: var(--on-dark);
}

.standards-section::after {
  position: absolute;
  top: -280px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 0.018), 0 0 0 140px rgb(255 255 255 / 0.012);
  content: "";
  pointer-events: none;
}

.standards-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(60px, 9vw, 140px);
}

.standards-copy {
  align-self: start;
}

.standards-copy .eyebrow {
  color: #80cbb9;
}

.standards-copy > p {
  color: var(--on-dark-soft);
}

.standard-quote {
  position: relative;
  margin-top: 58px;
  padding: 24px 0 0 34px;
  border-top: 1px solid var(--dark-line);
}

.standard-quote > span {
  position: absolute;
  top: 10px;
  left: 0;
  color: #73bcae;
  font-family: Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.standard-quote strong {
  display: block;
  max-width: 450px;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.5;
}

.standards-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.standards-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 84px;
  border-bottom: 1px solid var(--dark-line);
}

.standards-list span {
  color: #7892a0;
  font-size: 0.72rem;
  font-weight: 800;
}

.standards-list strong {
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 620;
  line-height: 1.35;
}

.audiences-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.audience-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4.6vw, 62px);
  background: var(--page);
}

.audience-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--line-strong);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.audience-label {
  position: relative;
  margin-bottom: 55px;
}

.audience-grid h3 {
  position: relative;
  max-width: 510px;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.audience-grid article > p:not(.audience-label, .audience-note) {
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.audience-note {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.choice-links {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.choice-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  color: var(--brand);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.faq-section {
  background: var(--page);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 126px;
  align-self: start;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  min-height: 78px;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 160ms ease, background-color 160ms ease;
}

.faq-list details[open] .faq-plus {
  background: var(--brand-soft);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 56px 28px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.pilot-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 11vw, 154px) 0;
  background: var(--brand);
  color: #ffffff;
}

.pilot-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.pilot-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
}

.pilot-orbit-one {
  top: -260px;
  right: -100px;
  width: 620px;
  height: 620px;
}

.pilot-orbit-two {
  bottom: -330px;
  left: -100px;
  width: 560px;
  height: 560px;
}

.pilot-cta-inner {
  max-width: 900px;
  text-align: center;
}

.pilot-cta .eyebrow {
  color: #d6ede7;
}

.pilot-cta h2 {
  max-width: 800px;
  margin-inline: auto;
}

.pilot-cta-inner > p {
  max-width: 720px;
  margin-inline: auto;
  color: #e1f0ec;
}

.pilot-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.button-light {
  background: #ffffff;
  box-shadow: 0 15px 36px rgb(12 31 68 / 0.22);
  color: var(--brand-deep);
}

.pilot-actions > span {
  color: #cce4de;
  font-size: 0.76rem;
}

.site-footer {
  padding: 58px 0 22px;
  background: #0c1718;
  color: var(--on-dark);
}

.brand-lockup-footer .brand-mark {
  box-shadow: none;
}

.brand-lockup-footer .brand-words span {
  color: #8fc8bb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(170px, 0.55fr) minmax(280px, 1fr);
  gap: 58px;
  padding-bottom: 50px;
}

.footer-grid > div > p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--on-dark-soft);
  font-size: 0.84rem;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  color: var(--on-dark-soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  margin: 0;
  color: var(--on-dark-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  color: #7f9290;
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 44px;
  }

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

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

  .process-grid li:nth-child(3) {
    border-left: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .standards-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
    gap: 52px;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 124px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    padding-block: 10px 8px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-board {
    width: min(100%, 660px);
    margin-inline: auto;
    transform: none;
  }

  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid,
  .audience-grid,
  .standards-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid {
    gap: 58px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-disclaimer {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-inner > .button {
    min-height: 44px;
    padding: 8px 11px;
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.25rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-board {
    padding: 12px;
    border-radius: 22px;
  }

  .board-header strong {
    display: none;
  }

  .board-service {
    padding: 17px;
    border-radius: 16px;
  }

  .board-service-heading {
    margin-bottom: 21px;
  }

  .board-footer {
    font-size: 0.64rem;
  }

  .pilot-strip-inner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 18px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .standards-copy h2,
  .pilot-cta h2 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .service-card {
    padding: 22px;
    border-radius: 22px;
  }

  .service-card-header {
    display: grid;
  }

  .service-domain {
    width: fit-content;
  }

  .service-flow {
    grid-template-columns: 1fr;
  }

  .service-flow span {
    min-height: 42px;
  }

  .service-flow i {
    transform: rotate(90deg);
  }

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

  .process-grid li,
  .process-grid li:nth-child(3) {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid li::after {
    right: 24px;
  }

  .standards-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 78px;
  }

  .audience-grid article {
    padding: 26px;
  }

  .audience-index {
    top: 22px;
    right: 22px;
  }

  .audience-label {
    margin-bottom: 66px;
  }

  .faq-list summary {
    font-size: 0.96rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .pilot-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-disclaimer {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .brand-lockup {
    gap: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-words strong,
  .brand-words span {
    font-size: 0.78rem;
  }

  .header-inner > .button {
    max-width: 106px;
    padding-inline: 8px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .flow-line li,
  .board-footer {
    font-size: 0.59rem;
  }

  .service-card h3 {
    font-size: 2.55rem;
  }
}

@media (min-width: 1680px) {
  :root {
    --container: 1420px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(470px, 0.84fr);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0d1718;
    --paper: #111d1e;
    --paper-soft: #172526;
    --ink: #eff5f3;
    --ink-soft: #b4c2c0;
    --ink-faint: #829391;
    --line: #263637;
    --line-strong: #3a4a4a;
    --brand: #74bfae;
    --brand-deep: #a7d7cc;
    --brand-soft: #173a35;
    --contact: #78a6eb;
    --contact-soft: #193150;
    --influence: #a7c66b;
    --influence-soft: #2c3a20;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.18), 0 8px 28px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 30px 90px rgb(0 0 0 / 0.35), 0 8px 26px rgb(0 0 0 / 0.18);
  }

  .brand-mark {
    border-color: #80c7b7;
    color: #0e2622;
  }

  .hero-board {
    border-color: #324849;
  }

  .pilot-strip {
    background: #152b28;
  }

  .pilot-strip strong {
    color: #a8d4ca;
  }

  .service-card::before {
    opacity: 0.3;
  }

  .service-domain,
  .service-flow span,
  .service-note {
    background: color-mix(in srgb, var(--paper) 90%, transparent);
  }

  .audience-index {
    color: #314143;
  }

  .button-light {
    color: #104f47;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .pilot-cta,
  .site-footer {
    display: none;
  }

  .hero,
  .section,
  .standards-section {
    padding-block: 30px;
    background: #ffffff;
    color: #111111;
  }

  .hero-board {
    break-inside: avoid;
  }
}
