/* Alliance LR&HRC: shared styles for the five static pages. */

:root {
  
  --charcoal:   #2E333C;
  --petrol:     #005B7F;
  --cyan:       #29A7E1;
  --sky:        #8CE1FD;

  --ink:        #2E333C;
  --ink-soft:   #4E5561;
  --slate:      #6B7280;
  --paper:      #FFFFFF;
  --paper-alt:  #F1F7FA;
  --rule:       #D7DFE5;

  
  --voice:      #005B7F;
  --marker:     #29A7E1;
  --focus:      #1B8CC2;

  
  --on-dark:      #CFE6F0;
  --on-dark-soft: #A9CBDA;
  --rule-dark:    rgba(140,225,253,.28);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;

  --t-xs:   0.78rem;
  --t-sm:   0.9rem;
  --t-base: 1.125rem;
  --t-md:   1.3rem;
  --t-lg:   1.75rem;
  --t-xl:   2.3rem;
  --t-2xl:  3.1rem;
  --t-3xl:  4rem;

  --measure: 34rem;
  --gutter:  2rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-base);
  line-height: 1.68;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.band { padding: 3.75rem 0; }

.band--alt { background: var(--paper-alt); }

.band--ink { background: var(--petrol); color: var(--on-dark); }

.band--ink h2, .band--ink h3 { color: #FFFFFF; }

.band--ink p { color: var(--on-dark); }

.band--ink .points > li { border-top-color: var(--rule-dark); }

.band--ink .points > li:last-child { border-bottom-color: var(--rule-dark); }

.band + .band { border-top: 1px solid var(--rule); }

.band--alt + .band, .band--ink + .band, .band + .band--alt, .band + .band--ink { border-top: 0; }

.measure { max-width: var(--measure); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: var(--t-3xl); line-height: 1.06; letter-spacing: -0.028em; }

h2 { font-size: var(--t-xl); margin-bottom: 1.5rem; }

h3 { font-size: var(--t-md); margin-bottom: .5rem; }

p { margin: 0 0 1.25rem; max-width: var(--measure); }

p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38rem;
}

.band--ink .lede { color: var(--sky); }

a { color: inherit; }

strong { font-weight: 600; }

.meta {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .04em;
  color: var(--slate);
  line-height: 1.5;
}

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

.masthead__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  max-width: 76rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--slate);
  margin-top: .3rem;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-family: var(--sans);
  font-size: var(--t-sm);
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover { border-bottom-color: var(--slate); }

.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--voice); }

.actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

.btn {
  font-family: var(--sans);
  font-size: var(--t-sm);
  text-decoration: none;
  padding: .8rem 1.4rem;
  border-radius: 2px;
  border: 1px solid var(--ink);
  display: inline-block;
  line-height: 1.2;
}

.btn--solid { background: var(--ink); color: var(--paper); }

.btn--solid:hover { background: var(--petrol); border-color: var(--petrol); }

.btn--ghost { background: transparent; color: var(--ink); }

.btn--ghost:hover { background: rgba(0,91,127,.07); }

.band--ink .btn--solid { background: #FFFFFF; color: var(--petrol); border-color: #FFFFFF; }

.band--ink .btn--ghost { color: #FFFFFF; border-color: rgba(255,255,255,.55); }

.band--ink .btn--ghost:hover { background: rgba(255,255,255,.12); }

.path {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 4rem;
  align-items: start;
}

.chain { margin: 0; padding: 0; list-style: none; }

.chain li {
  position: relative;
  padding: 0 0 2.1rem 2.1rem;
  border-left: 1px solid var(--rule);
}

.chain li:last-child { padding-bottom: 0; border-left-color: transparent; }

.chain li::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--marker);
  border-radius: 50%;
}

.chain b {
  display: block;
  font-weight: 500;
  font-size: var(--t-md);
  line-height: 1.3;
  margin-bottom: .2rem;
}

.chain span { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; display: block; }

.excluded {
  border-top: 2px solid var(--ink);
  padding-top: 1.1rem;
}

.excluded ul { margin: 0; padding: 0; list-style: none; }

.excluded li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.excluded li:last-child { border-bottom: 0; }

.excluded h3 { margin-bottom: .35rem; }

.points { margin: 0; padding: 0; list-style: none; max-width: 44rem; }

.points > li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.points > li:last-child { border-bottom: 1px solid var(--rule); }

.points h3 { margin-bottom: .35rem; }

.points p { margin: 0; color: var(--ink-soft); max-width: 40rem; }

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3.5rem;
  max-width: 100%;
}

.grid2 .points { max-width: none; }

.steps { margin: 0; padding: 0; counter-reset: step; list-style: none; max-width: 44rem; }

.steps > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule);
}

.steps > li:last-child { border-bottom: 1px solid var(--rule); }

.steps > li::before {
  content: counter(step);
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--voice);
  padding-top: .35rem;
}

.steps h3 { margin-bottom: .35rem; }

.steps p { margin: 0; color: var(--ink-soft); }

#clients { background: #F1F7FA; }

.clients { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.5rem 3.5rem; }

.clients section { border-top: 2px solid #8EAEBE; padding-top: 1.15rem; }

.clients h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .015em;
  line-height: 1.35;
  color: #10364B;
  margin-bottom: .8rem;
}

.clients p { font-size: 1.125rem; font-weight: 400; line-height: 1.7; color: #10364B; margin: 0; max-width: none; }

.marquee {
  font-size: var(--t-md);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 46rem;
}

.form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem 1.5rem; max-width: 38rem; }

.field { display: flex; flex-direction: column; gap: .35rem; }

.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .04em;
  color: var(--ink-soft);
}

.field input, .field textarea, .field select {
  font-family: var(--serif);
  font-size: 1rem;
  padding: .65rem .7rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: #FFFDFA;
  color: var(--ink);
}

.field textarea { min-height: 8rem; resize: vertical; }

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--petrol);
}

.footer { background: var(--charcoal); color: #B9C2CE; padding: 4rem 0 2.5rem; }

.footer a { color: #FFFFFF; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }

.footer a:hover { border-bottom-color: var(--sky); }

.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }

.footer h3 { font-family: var(--sans); font-size: var(--t-xs); letter-spacing: .09em; color: var(--sky); margin-bottom: .9rem; font-weight: 500; }

.footer ul { list-style: none; margin: 0; padding: 0; }

.footer li { margin-bottom: .5rem; font-size: 1rem; }

.footer p { font-size: 1rem; max-width: 22rem; color: #A7B1BF; }

.footer__base {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--sans);
  font-size: var(--t-xs);
  color: #9BA4B1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .wordmark { color: #FFFFFF; border-bottom: 0; }

.footer .wordmark span { color: #9BA4B1; }

.skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1rem;
  font-family: var(--sans);
  font-size: var(--t-sm);
  z-index: 50;
}

.skip:focus { left: 1rem; top: .6rem; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

.reveal { opacity: 0; transform: translateY(10px); animation: rise .7s cubic-bezier(.2,.7,.3,1) forwards; }

.reveal:nth-child(2) { animation-delay: .09s; }

.reveal:nth-child(3) { animation-delay: .18s; }

.reveal:nth-child(4) { animation-delay: .27s; }

@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
.reveal { animation: none; opacity: 1; transform: none; }

* { transition: none !important; }
}

@media (max-width: 860px) {
:root { --t-3xl: 2.7rem; --t-2xl: 2.2rem; --t-xl: 1.85rem; --gutter: 1.4rem; }

.path { grid-template-columns: 1fr; gap: 2.5rem; }

.grid2 { grid-template-columns: 1fr; gap: 0; }

.clients { grid-template-columns: 1fr; gap: 1.75rem; }

.footer__grid { grid-template-columns: 1fr; gap: 2rem; }

.band { padding: 2.75rem 0; }

.form { grid-template-columns: 1fr; }

.masthead { position: static; }

.masthead__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

.nav { gap: 1.1rem; }
}

@media (max-width: 420px) {
.nav { font-size: .82rem; gap: .85rem; }

.steps > li { grid-template-columns: 2.2rem 1fr; }
}

.band--alt { background: #E9F4F9; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--petrol);
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.split-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 4rem;
  align-items: start;
}

.feature-list { list-style: none; margin: 0; padding: 0; }

.feature-list > li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0 1.1rem;
  padding: 1.05rem 0;
  align-items: start;
}

.icon-circle {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  background: var(--petrol);
  display: grid;
  place-items: center;
  flex: none;
}

.icon-circle svg { width: 1.65rem; height: 1.65rem; stroke: #FFFFFF; fill: none; stroke-width: 1.6; }

.feature-list h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .005em;
  margin: .35rem 0 .2rem;
}

.feature-list p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink-soft); max-width: 22rem; }

.steps--circles > li { grid-template-columns: 2.9rem 1fr; gap: 0 1.2rem; align-items: start; }

.steps--circles > li::before {
  content: counter(step);
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: #E9F4F9;
  color: var(--petrol);
  font-family: var(--sans);
  font-size: 1rem;
  display: grid;
  place-items: center;
  padding-top: 0;
  margin-top: .1rem;
}

.band--alt .steps--circles > li::before { background: #FFFFFF; }

.figure {
  align-self: center;
  margin: 0;
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
}

.figure figcaption {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .04em;
  color: var(--slate);
  margin-top: .8rem;
}

.pullquote {
  align-self: center;
  background: #E9F4F9;
  padding: 2.5rem 2.25rem;
}

.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--petrol);
  margin: 0;
  max-width: none;
}

.pullquote hr {
  border: 0;
  height: 3px;
  width: 3.5rem;
  background: var(--cyan);
  margin: 1.4rem 0 0;
}

.band--alt .pullquote { background: #FFFFFF; }

.band--ink .pullquote { background: none; padding: .5rem 0 .5rem 2.5rem; border-left: 2px solid var(--sky); }

.band--ink .pullquote p { color: var(--sky); }

.band--ink .pullquote hr { background: var(--sky); }

.reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0 3.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.reasons > li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0 1rem;
  padding: 1.2rem 0;
  align-items: start;
}

.reasons svg { width: 2rem; height: 2rem; stroke: var(--petrol); fill: none; stroke-width: 1.5; margin-top: .15rem; }

.reasons h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  margin: .3rem 0 .2rem;
}

.reasons p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink-soft); }

.path--ruled { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 3.5rem; }

.path--ruled > div:last-child { border-top: 0; border-left: 1px solid var(--rule); padding: 0 0 0 3.5rem; }

.excluded--ruled h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .4rem;
}

.client-strip { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 3rem; align-items: start; }

.client-strip .marquee { font-size: 1.08rem; line-height: 1.85; max-width: none; }

.promise { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 3.5rem; align-items: start; }

.promise__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--petrol);
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
.split-cols, .path--ruled, .client-strip, .promise { grid-template-columns: 1fr; gap: 2.5rem; }

.path--ruled > div:last-child { border-left: 0; border-top: 2px solid var(--ink); padding: 1.2rem 0 0; }

.reasons { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 860px) {
.feature-list > li { grid-template-columns: 2.9rem 1fr; }

.icon-circle { width: 2.9rem; height: 2.9rem; }

.icon-circle svg { width: 1.3rem; height: 1.3rem; }

.pullquote { padding: 1.75rem 1.5rem; }

.pullquote p { font-size: 1.3rem; }
}

.page-image-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 3.5rem;
  align-items: center;
}

.page-midway { width: 100%; max-width: 29rem; justify-self: end; }

.excluded .page-midway { margin-top: 2.5rem; }

@media (max-width: 980px) {
.page-image-row { grid-template-columns: 1fr; gap: 2.5rem; }

.page-midway { justify-self: start; }
}

.masthead__inner { padding: 1.35rem var(--gutter); }

.wordmark { font-size: 1.85rem; }

.wordmark span { font-size: .66rem; margin-top: .35rem; }

.nav { font-size: .98rem; gap: 1.9rem; align-items: center; }

.nav .btn {
  padding: .62rem 1.15rem;
  background: var(--petrol);
  color: #FFFFFF;
  border-color: var(--petrol);
  font-size: .92rem;
}

.nav a.btn:hover { background: #004A68; border-color: #004A68; }

.btn--petrol {
  background: var(--petrol);
  color: #FFFFFF;
  border-color: var(--petrol);
  padding: .95rem 1.6rem;
  font-size: .98rem;
}

.btn--petrol:hover { background: #004A68; border-color: #004A68; }

.btn--outline {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
  padding: .95rem 1.6rem;
  font-size: .98rem;
}

.btn--outline:hover { background: rgba(0,91,127,.07); }

.btn__arrow { display: inline-block; margin-left: .55rem; transform: translateY(1px); }
.btn__icon { display: inline-block; width: 1em; height: 1em; margin-right: .55rem; vertical-align: -.15em; }

@media (max-width: 900px) {
.nav .btn { display: none; }
}

.banner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #10364B;
  color: #FFFFFF;
}

.banner-hero__media {
  position: absolute;
  inset: 0 0 0 30%;
  z-index: -2;
}

.banner-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.banner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #10364B 0%, rgba(16,54,75,.98) 30%, rgba(16,54,75,.90) 46%, rgba(16,54,75,.55) 61%, rgba(16,54,75,.08) 78%, rgba(16,54,75,0) 100%);
}

.banner-hero__wrap {
  min-height: 25rem;
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.banner-hero__copy { width: 60%; }

/* Shared inner-page height; allow growth for enlarged text. */
.banner-hero--inner .banner-hero__wrap { min-height: 28rem; }

.banner-hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 3.5vw, 3.4rem);
  font-weight: 500;
  max-width: 23ch;
  margin-bottom: 1.25rem;
}

.banner-hero .lede {
  color: #FFFFFF;
  font-size: 1.16rem;
  line-height: 1.6;
  max-width: 36rem;
  margin-bottom: 0;
}

.banner-hero .eyebrow { color: var(--sky); margin-bottom: 1.25rem; }

.banner-hero .actions { margin-top: 1.75rem; }
.banner-hero__more { margin: 1rem 0 0; font-family: var(--sans); font-size: .95rem; }
.banner-hero__more a { text-underline-offset: .2em; }
.banner-hero__more a:hover { color: var(--sky); }

.banner-hero .btn--petrol { background: #FFFFFF; border-color: #FFFFFF; color: #10364B; }

.banner-hero .btn--petrol:hover { background: var(--sky); border-color: var(--sky); }

.banner-hero .btn--outline { color: #FFFFFF; border-color: #FFFFFF; }

.banner-hero .btn--outline:hover { background: rgba(255,255,255,.15); }

.prose-columns { max-width: none; columns: 2; column-gap: 3.5rem; }

.prose-columns h2 { column-span: all; }

.prose-columns p { break-inside: avoid; max-width: none; }

.steps--grid, .points--grid, .points--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  max-width: none;
}

.points--cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }

.steps--grid > li:last-child, .points--grid > li:last-child, .points--cards > li:last-child { border-bottom: 0; }

.training-intro .page-midway { max-width: 23rem; }

.training-intro p { max-width: 36rem; }

@media (max-width: 980px) {
.points--cards { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 700px) {
.prose-columns { columns: 1; }

.steps--grid, .points--grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
.banner-hero__copy { width: 70%; }

.banner-hero::before { background: linear-gradient(90deg, #10364B 0%, rgba(16,54,75,.94) 40%, rgba(16,54,75,.70) 65%, rgba(16,54,75,.15) 100%); }
}

@media (max-width: 600px) {
.banner-hero__media { left: 0; }

.banner-hero__media img { object-position: 62% center; }

.banner-hero::before { background: rgba(10,35,50,.83); }

.banner-hero__wrap { min-height: 25rem; padding-top: 2.75rem; padding-bottom: 2.75rem; }

.banner-hero__copy { width: 100%; }

.banner-hero h1 { font-size: 2.5rem; }
}

@media (min-width: 601px) and (max-width: 760px) {
.banner-hero--inner .banner-hero__wrap { min-height: 31rem; }
}

@media (max-width: 600px) {
.banner-hero--inner .banner-hero__wrap { min-height: 30rem; }
}

@media (max-width: 380px) {
.banner-hero--inner .banner-hero__wrap { min-height: 34rem; }
}
