:root {
  --bright-teal: #8effef; /*bright teal for link*/
  --light-teal: #005e5e; /*lighter teal*/
  --navy-950: #0f1917; /* deep graphite (hero, footer, why) */
  --navy-900: #14211f; /* Graphite */
  --navy-800: #1e2e2b;
  --navy-700: #2b403c;
  --teal-600: #0e6e72; /* Teal */
  --teal-500: #12868b;
  --teal-100: #e3f0f0;
  --gold-500: #c09455; /* Gold */
  --gold-100: #f6eedf;
  --ink: #14211f;
  --slate: #5c6663; /* text on light; Steel #9da2a0 is the muted/border tone */
  --line: #d9dddb;
  --mist: #f4f6f5; /* Paper */
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 33, 31, 0.12);
  --shell: min(1180px, calc(100vw - 48px));
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", Aptos, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 32px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 86px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid rgba(20, 33, 31, 0.08);
  transition: height .3s ease, box-shadow .3s ease;
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
    padding-inline: 20px;
  }
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 10px 40px rgba(20, 33, 31, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy-900);
}

.brand-mark {
  width: 52px;
  height: 38px;
  display: inline-flex;
}

@media (max-width: 820px) {
  .brand-mark {
    width: 45px;
  }
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-size: 17px;
  letter-spacing: .17em;
}

@media (max-width: 820px) {
  .brand-type strong {
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .brand-type strong {
    font-size: 14px;
  }
}

.brand-type span {
  margin-top: 5px;
  padding-left: 2px;
  color: var(--teal-600);
  font-size: 9px;
  letter-spacing: .48em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 28px 24px 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 40px rgba(20, 33, 31, .12);
  }

  .site-header.is-scrolled .site-nav {
    top: 72px;
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 820px) {
  .site-nav {
    top: 72px;
    padding: 28px 20px 32px;
  }

  .site-nav.is-open {
    display: flex;
  }
}

.site-nav a {
  text-decoration: none;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 1020px) {
  .site-nav a {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .site-nav a {
    font-size: 16px;
  }
}

.site-nav a:not(.button) {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--teal-600);
  transition: right .25s ease;
}

.site-nav a:hover::after, .site-nav a:focus-visible::after {
  right: 0;
}

@media (max-width: 1020px) {
  .site-nav .button {
    align-self: flex-start;
  }
}

.nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle > span:not(.sr-only) {
    height: 2px;
    width: 24px;
    background: var(--navy-900);
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle > span:not(.sr-only) {
    height: 2px;
    width: 24px;
    background: var(--navy-900);
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(14, 110, 114, .38);
  outline-offset: 3px;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  gap: 14px;
}

.button-teal {
  background: var(--teal-600);
  color: var(--white);
}

.button-teal:hover {
  background: #0b5c5f;
}

.button-navy {
  background: var(--navy-900);
  color: var(--white);
}

.button-navy:hover {
  background: var(--navy-800);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.button-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.ico {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.ico-ne {
  transform: rotate(-45deg);
}

.ico-down {
  transform: rotate(90deg);
}

.button:hover .ico:not(.ico-ne):not(.ico-down), .card-link:hover .ico, .text-link:hover .ico:not(.ico-down) {
  transform: translateX(3px);
}

.button:hover .ico-ne {
  transform: rotate(-45deg) translateX(3px);
}

.card-link .ico, .solution-card > a .ico {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-left: 4px;
}

.text-link .ico, .company-bottom a .ico {
  width: 13px;
  height: 13px;
}

.company-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal-600);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--gold-500);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 86px 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

@media (max-width: 1020px) {
  .hero {
    min-height: 720px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 72px;
    min-height: 760px;
    align-items: end;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: 740px;
  }
}

.hero-media {
  position: absolute;
  inset: 86px 0 0;
  background-image: url("assets/asurgence-lab-hero.png");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.12) saturate(1.05);
}

@media (max-width: 820px) {
  .hero-media {
    inset: 72px 0 0;
    background-position: 64% center;
  }
}

@media (max-width: 580px) {
  .hero-media {
    background-position: 72% center;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 25, 23, .94) 0%, rgba(15, 25, 23, .8) 28%, rgba(15, 25, 23, .4) 58%, rgba(15, 25, 23, .04) 100%), linear-gradient(0deg, rgba(15, 25, 23, .18), transparent 50%);
}

@media (max-width: 1024px) {
  .hero-media::after {
    background: linear-gradient(90deg, rgba(15, 25, 23, .92), rgba(15, 25, 23, .35)), linear-gradient(0deg, rgba(15, 25, 23, .86) 0%, transparent 70%);
  }
}

@media (max-width: 580px) {
  .hero-media::after {
    background: linear-gradient(90deg, rgba(15, 25, 23, .92), rgba(15, 25, 23, .5)), linear-gradient(0deg, rgba(15, 25, 23, .9) 0%, transparent 72%);
  }
}

/* no mask-image here: masking a full-section grid is expensive to paint and can stall the renderer */
.hero-grid {
  display: none;
}

.why-grid-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 86px;
}

@media (max-width: 820px) {
  .hero-content {
    padding: 90px 0 72px;
  }
}

@media (max-width: 580px) {
  .hero-content {
    padding: 92px 0 58px;
  }
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.045em;
  text-wrap: balance;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(44px, 10vw, 66px);
  }

  .hero h1 br {
    display: none;
  }
}

@media (max-width: 580px) {
  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }
}

.hero-line {
  margin: 24px 0 0;
  color: #bfe3e4;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.01em;
}

@media (max-width: 580px) {
  .hero-line {
    font-size: 23px;
  }
}

.hero-copy {
  /*max-width: 640px;*/
  margin: 30px 0 0;
  color: #c9d1cf;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-copy {
    text-shadow: 2px 2px 3px #000;
  }
}

@media (min-width: 1024px) {
  .hero-copy {
    max-width: 640px;
  }
}

@media (max-width: 580px) {
  .hero-copy {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 580px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.light-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding-bottom: 5px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

@media (max-width: 820px) {
  .hero-index {
    display: none;
  }
}

.hero-index span:first-child {
  color: var(--gold-500);
}

/*.proof-band {
  position: relative;
  z-index: 3;
  margin-top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 820px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-grid article {
  position: relative;
  min-height: 150px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

@media (max-width: 1020px) {
  .proof-grid article {
    padding-inline: 18px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .proof-grid article {
    min-height: 125px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 580px) {
  .proof-grid article {
    padding: 22px 16px;
  }
}*/

/*.proof-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}*/

/*.proof-grid article:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 580px) {
  .proof-grid strong {
    font-size: 31px;
  }
}

.proof-grid span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
  text-wrap: balance;
}

@media (max-width: 580px) {
  .proof-grid span {
    font-size: 11px;
  }
}

.proof-grid sup {
  color: var(--gold-500);
}*/

/* ---- Proof / company facts ---- */

.proof-band {
  position: relative;
  z-index: 3;
  padding: 38px 0 42px;
  background: var(--white);
  border-bottom: 1px solid #C6C6C6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.proof-grid article {
  min-height: 132px;
  padding: 26px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  background: #C09455;
  border-radius: 4px;
  box-shadow: 0 4px 0 #525252;
  color: var(--white);
}

.proof-grid strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 37px;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.proof-grid span {
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
  text-wrap: balance;
}


/* Tablet */

@media (max-width: 1020px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */

@media (max-width: 580px) {
  .proof-band {
    padding: 34px 0 42px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-grid article {
    min-height: 132px;
    padding: 24px 26px;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
}

.section-intro {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  align-items: end;
  gap: 80px;
}

@media (max-width: 1020px) {
  .section-intro {
    grid-template-columns: 1.2fr .8fr;
    gap: 44px;
  }
}

@media (max-width: 820px) {
  .section-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 44px;
  }

  .section-intro > p {
    /*max-width: 620px;*/
  }
}

.section-intro h2, .why-lead h2, .final-cta h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -.045em;
  text-wrap: balance;
}

@media (max-width: 580px) {
  .section-intro h2, .why-lead h2, .final-cta h2 {
    font-size: 40px;
  }
}

.section-intro > p {
  margin: 0 0 4px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

.audience-section {
  background: var(--mist);
}

.audience-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 820px) {
  .audience-selector {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.audience-tab {
  position: relative;
  min-height: 186px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: 42px 1fr 44px;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

@media (max-width: 820px) {
  .audience-tab {
    min-height: 155px;
  }
}

@media (max-width: 580px) {
  .audience-tab {
    padding: 24px 20px;
    grid-template-columns: 28px 1fr 38px;
    gap: 10px;
  }
}

.audience-tab + .audience-tab {
  border-left: 0;
}

@media (max-width: 820px) {
  .audience-tab + .audience-tab {
    border-left: 1px solid var(--line);
  }
}

.audience-tab.is-active {
  z-index: 1;
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.audience-number {
  align-self: start;
  color: var(--teal-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.audience-tab-copy {
  display: flex;
  flex-direction: column;
}

.audience-tab-copy small {
  margin-bottom: 12px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.audience-tab.is-active .audience-tab-copy small {
  color: var(--gold-500);
}

.audience-tab-copy strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.1;
  font-weight: 500;
}

@media (max-width: 580px) {
  .audience-tab-copy strong {
    font-size: 25px;
  }
}

.audience-tab-copy > span {
  margin-top: 8px;
  color: var(--slate);
  font-size: 14px;
}

.audience-tab.is-active .audience-tab-copy > span {
  color: #b9c3c0;
}

.round-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .25s ease;
}

.audience-tab:hover .round-arrow {
  transform: rotate(45deg);
}

.audience-panel[hidden] {
  display: none;
}

.audience-panel {
  padding: 42px 44px;
  display: grid;
  grid-template-columns: .8fr 1.4fr 1fr auto;
  gap: 42px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  animation: reveal .3s ease both;
}

@media (max-width: 1020px) {
  .audience-panel {
    grid-template-columns: .7fr 1.25fr 1fr;
  }

  .audience-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .audience-panel {
    grid-template-columns: 1fr 1fr;
  }

  .panel-brand, .panel-solution {
    grid-column: auto;
  }

  .panel-list {
    grid-column: 1 / 2;
  }

  .audience-panel .button {
    grid-column: 2 / 3;
    align-self: end;
    justify-self: stretch;
  }
}

@media (max-width: 580px) {
  .audience-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .panel-brand, .panel-solution, .panel-list, .audience-panel .button {
    grid-column: 1;
  }
}

.panel-brand {
  display: flex;
  flex-direction: column;
}

.panel-label {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.panel-brand strong {
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: .06em;
}

.panel-brand > span:last-child {
  color: var(--slate);
  font-size: 12px;
}

.panel-solution h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}

.panel-solution p {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: var(--slate);
  font-size: 13px;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 1px;
  background: var(--gold-500);
}

.solutions-section {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1020px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  position: relative;
  min-height: 520px;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

@media (max-width: 820px) {
  .solution-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 580px) {
  .solution-card {
    padding: 32px 26px;
  }
}

.solution-card.featured {
  background: var(--light-teal);
  color: var(--white);
}

.card-number {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.featured .card-number {
  color: var(--gold-500);
}

.icon-frame {
  width: 64px;
  height: 64px;
  margin-top: 54px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--teal-600);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 5 L59 32 L32 59 L5 32 Z' fill='rgba(192,148,85,.10)' stroke='%23c09455' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

@media (max-width: 820px) {
  .icon-frame {
    margin-top: 32px;
  }
}

.featured .icon-frame {
  color: var(--gold-500);
}

.icon-frame svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin: 26px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 500;
}

.solution-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
}

.featured p {
  color: #bfc8c5;
}

/*@media (max-width: 820px) {
  .featured p {
    text-wrap: balance;
  }
}*/

.solution-card ul {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.solution-card li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 13px;
}

.featured li {
  border-color: rgba(255, 255, 255, .12);
  color: #d8dedc;
}

.solution-card > a, .card-link {
  margin-top: auto;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  background: transparent;
  color: var(--teal-600);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.featured .card-link {
  color: var(--bright-teal);
}

/* ---- Solution cards: all navy, equal weight ---- */
.solution-card.featured .card-link:hover {
  color: var(--white);
}

.why-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

@media (max-width: 580px) {
  .why-section {
    padding: 92px 0;
  }
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

@media (max-width: 1020px) {
  .why-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
}

.why-lead {
  position: sticky;
  top: 120px;
}

@media (max-width: 820px) {
  .why-lead {
    position: static;
  }
}

.why-lead h2 {
  color: var(--white);
}

.why-lead > p:not(.eyebrow) {
  /*max-width: 500px;*/
  margin: 30px 0 34px;
  color: #b9c3c0;
  font-size: 17px;
}

@media (min-width: 820px) {
  .why-lead > p:not(.eyebrow) {
    text-wrap: balance;
  }
}

.why-points {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.why-points article {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width: 580px) {
  .why-points article {
    padding: 28px 0;
  }
}

.why-points article > span {
  color: var(--gold-500);
  font-size: 11px;
  font-weight: 800;
}

.why-points h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 500;
}

.why-points p {
  margin: 0;
  color: #aeb8b5;
  font-size: 15px;
}

.companies-section {
  background: var(--mist);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 820px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}

.company-card {
  min-height: 480px;
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

@media (max-width: 820px) {
  .company-card {
    min-height: auto;
  }
}

@media (max-width: 580px) {
  .company-card {
    min-height: 470px;
    padding: 30px 26px;
  }
}

.company-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 580px) {
  .company-meta {
    flex-direction: column;
    gap: 4px;
  }
}

.company-card h3 {
  margin: 86px 0 28px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.045em;
}

.company-card p {
  /*max-width: 520px;*/
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
}

@media (min-width: 820px) {
  .company-card p {
    max-width: 520px;
  }
}

.company-bottom {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  border-top: 1px solid rgba(20, 33, 31, .14);
}

@media (max-width: 580px) {
  .company-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.company-bottom > span {
  color: var(--slate);
  font-size: 12px;
}

.company-bottom a {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

/* ---- Company cards with logos ---- */
.company-logo {
  margin: 64px 0 28px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 580px) {
  .company-logo {
    margin-top: 40px;
  }
}

.company-logo img {
  height: 64px;
  width: auto;
  /*max-width: 100%;*/
  max-width: 325px;
  object-fit: contain;
}

.company-logo img[src*="probo"] {
  /*height: 64px;*/
  height: auto;
}

.company-formerly {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--slate);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.company-cert {
  margin-top: 18px !important;
  color: var(--teal-600) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
}

.final-cta {
  padding: 92px 0;
  background: var(--teal-600);
  color: var(--white);
}

@media (max-width: 580px) {
  .final-cta {
    padding: 72px 0;
  }
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

@media (max-width: 820px) {
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
}

@media (min-width: 820px) {
  .final-cta h2 {
    display: grid;
  }
}

/* ---- Final CTA actions ---- */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: 50px;
}

@media (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-type strong {
  color: var(--white);
  font-size: 20px;
}

.footer-brand .brand-type span {
  font-size: 10px;
  margin-top: 6px;
}

.footer-grid > div:first-child p {
  color: #9da2a0;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-grid a, .footer-grid button {
  padding: 2px 0;
  border: 0;
  background: none;
  color: #c4cac8;
  text-decoration: none;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.footer-disclaimer {
  margin: 50px auto 0;
  max-width: 820px;
  color: #7f8784;
  font-size: 11.5px;
  line-height: 1.6;
}

.footer-legal {
  margin-top: 22px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #7f8784;
  font-size: 11px;
}

@media (max-width: 580px) {
  .footer-legal {
    gap: 10px;
    flex-direction: column;
  }
}

/* ---- Footer additions ---- */
.footer-tagline {
  margin-top: 14px;
  color: var(--gold-500) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-legal a {
  color: #a8afac;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}

.router {
  position: fixed;
  z-index: 90;
  inset: 0;
}

.router[hidden] {
  display: none;
}

.router-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 16, .72);
  backdrop-filter: blur(6px);
  animation: fade .25s ease both;
}

.router-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 70px 62px;
  background: var(--white);
  box-shadow: -30px 0 80px rgba(10, 17, 16, .22);
  animation: slide .35s cubic-bezier(.22, .8, .3, 1) both;
}

@media (max-width: 580px) {
  .router-panel {
    padding: 70px 24px 40px;
  }
}

.router-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.router-mark {
  width: 44px;
  height: auto;
  margin-bottom: 18px;
}

.router-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 500;
}

@media (max-width: 580px) {
  .router-panel h2 {
    font-size: 40px;
  }
}

.router-intro {
  margin: 18px 0 32px;
  color: var(--slate);
}

.router-options {
  border-top: 1px solid var(--line);
}

.router-options button {
  width: 100%;
  min-height: 68px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 36px 1fr 26px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.router-options button span {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
}

.router-options button i {
  font-style: normal;
  display: inline-flex;
  transition: transform .2s ease;
}

.router-options button i .ico {
  width: 16px;
  height: 16px;
}

.router-options button:hover {
  color: var(--teal-600);
}

.router-options button:hover i {
  transform: translateX(4px);
}

.router-options button.is-selected {
  color: var(--white);
  background: var(--navy-900);
  padding-inline: 16px;
}

.route-result {
  margin-top: 26px;
  padding: 26px;
  background: var(--mist);
  border-left: 3px solid var(--teal-600);
  animation: reveal .3s ease both;
}

.route-kicker {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.route-result h3 {
  margin: 7px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
}

.route-result p {
  margin: 0 0 20px;
  color: var(--slate);
}

body.router-open {
  overflow: hidden;
}

/* ---- Brand logo (header) ---- */
.brand-logo {
  width: 274px;
  max-width: 58vw;
  height: auto;
  display: block;
  transition: width .3s ease;
}

@media (max-width: 820px) {
  .brand-logo {
    width: 238px;
  }
}

@media (max-width: 580px) {
  .brand-logo {
    width: 204px;
  }
}

.footer-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header.is-scrolled .brand-logo {
  width: 250px;
}

/* ---- Who we serve ---- */
.serve-section {
  background: var(--mist);
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 820px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
}

.serve-card {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal-600);
  transition: transform .25s ease, box-shadow .25s ease;
}

@media (max-width: 580px) {
  .serve-card {
    padding: 30px 24px;
  }
}

.serve-card:hover, .company-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.serve-kicker {
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.serve-card h3 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--navy-900);
}

.serve-audience {
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
}

.serve-copy {
  margin: 0 0 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.serve-card .panel-list {
  margin-bottom: 30px;
  columns: 2;
  column-gap: 28px;
}

@media (max-width: 580px) {
  .serve-card .panel-list {
    columns: 1;
  }
}

.serve-card .panel-list li {
  break-inside: avoid;
  font-size: 14px;
  padding: 6px 0 6px 18px;
}

.serve-card .panel-list li::before {
  top: 17px;
}

.serve-specialist {
  margin: auto 0 26px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 64px;
  column-gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 580px) {
  .serve-specialist {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.serve-specialist .panel-label {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.serve-specialist img {
  height: 40px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

@media (max-width: 580px) {
  .serve-specialist img {
    max-width: 100%;
  }
}

.serve-specialist img[src*="probo"] {
  /*height: 50px;*/
  height: auto;
}

.serve-location {
  color: var(--slate);
  font-size: 13px;
}

.serve-card .button {
  align-self: flex-start;
}

@media (max-width: 580px) {
  .serve-card .button {
    align-self: stretch;
    gap: 12px;
    padding-inline: 18px;
    text-align: left;
  }

  .serve-card .button span {
    margin-left: auto;
  }
}

/* ---- Contact ---- */
.contact-section {
  background: var(--white);
}

.contact-section .section-intro {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 48px;
}

.contact-section .section-intro > p {
  /*max-width: 780px;*/
}

@media (min-width: 820px) {
  .contact-section .section-intro > p {
    text-wrap: balance;
  }
}

.contact-section .section-intro > p a {
  color: var(--teal-600);
  font-weight: 600;
  text-decoration: none;
}

.contact-section .section-intro > p a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 60px;
  align-items: start;
}

@media (max-width: 1020px) {
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .form-card {
    order: -1;
  }
}

.contact-block {
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--teal-600);
}

.contact-block + .contact-block {
  margin-top: 34px;
}

.contact-block h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--navy-900);
}

.contact-block p {
  margin: 0 0 4px;
  color: var(--slate);
  font-size: 14.5px;
}

.contact-sub {
  color: var(--teal-600) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 10px !important;
}

.contact-phone {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-900);
  text-decoration: none;
}

.contact-phone:hover {
  color: var(--teal-600);
}

.contact-alt {
  color: var(--slate);
  font-size: 14px;
}

.contact-block a:not(.contact-phone) {
  color: var(--teal-600);
  text-decoration: none;
  font-weight: 600;
}

.placeholder-note {
  color: #94a3b8;
  font-style: italic;
}

.form-card {
  padding: 36px 34px;
  background: var(--mist);
  border: 1px solid var(--line);
}

@media (max-width: 580px) {
  .form-card {
    padding: 28px 22px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

@media (max-width: 580px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-900);
}

.field .req {
  color: var(--teal-600);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(14, 110, 114, .18);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6663' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.field .error-msg {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  color: #b4232a;
}

.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #b4232a;
}

.field.invalid .error-msg {
  display: block;
}

.form-note {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 12.5px;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 14.5px;
}

.form-status.success {
  display: block;
  background: var(--teal-100);
  border: 1px solid var(--teal-600);
  color: #0b4f52;
}

.form-status.error {
  display: block;
  background: #fbeaea;
  border: 1px solid #b4232a;
  color: #8e1c22;
}

.form-card .button[type="submit"] {
  margin-top: 22px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Gravity Forms: preserve the original contact form design ---- */

/*
 * The original static form did not display an internal form heading.
 * Keep the provided shortcode title="true", but visually suppress the
 * Gravity Forms heading so the surrounding "Contact us." section remains
 * exactly as designed.
 */
.gravity-form-card .gform_heading {
  display: none;
}

.gravity-form-card .gform_wrapper,
.gravity-form-card .gform_wrapper form {
  margin: 0;
}

.gravity-form-card .gform_wrapper fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/*
 * Match the original 2-column desktop layout:
 * Name / Company
 * Email / Phone
 * Interest
 * Message
 *
 * This assumes the six visible Gravity Forms fields are in that same order.
 */
.gravity-form-card #gform_fields_1,
.gravity-form-card .gform_fields {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 18px 20px !important;
}

.gravity-form-card #gform_fields_1 > .gfield,
.gravity-form-card .gform_fields > .gfield {
  grid-column: span 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gravity-form-card #gform_fields_1 > .gfield:nth-child(n+5),
.gravity-form-card .gform_fields > .gfield:nth-child(n+5),
.gravity-form-card .gfield.gfield--width-full {
  grid-column: 1 / -1 !important;
}

.gravity-form-card .gfield.gfield--width-half {
  grid-column: span 1 !important;
}

@media (max-width: 580px) {
  .gravity-form-card #gform_fields_1,
  .gravity-form-card .gform_fields {
    grid-template-columns: 1fr !important;
  }

  .gravity-form-card #gform_fields_1 > .gfield,
  .gravity-form-card .gform_fields > .gfield {
    grid-column: 1 !important;
  }
}

.gravity-form-card .gfield_label,
.gravity-form-card .gform-field-label {
  display: block;
  margin: 0 0 7px !important;
  padding: 0;
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 13px !important;
  line-height: 1.6;
  font-weight: 700 !important;
  letter-spacing: .02em;
}

.gravity-form-card .gfield_required,
.gravity-form-card .gfield_required_asterisk {
  color: var(--teal-600) !important;
}

.gravity-form-card .ginput_container {
  margin: 0 !important;
}

.gravity-form-card input[type="text"],
.gravity-form-card input[type="email"],
.gravity-form-card input[type="tel"],
.gravity-form-card input[type="url"],
.gravity-form-card input[type="number"],
.gravity-form-card select,
.gravity-form-card textarea {
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.gravity-form-card input[type="text"],
.gravity-form-card input[type="email"],
.gravity-form-card input[type="tel"],
.gravity-form-card input[type="url"],
.gravity-form-card input[type="number"],
.gravity-form-card select {
  min-height: 50px !important;
}

.gravity-form-card input:focus,
.gravity-form-card select:focus,
.gravity-form-card textarea:focus {
  outline: none !important;
  border-color: var(--teal-600) !important;
  box-shadow: 0 0 0 3px rgba(14, 110, 114, .18) !important;
}

.gravity-form-card textarea {
  min-height: 130px !important;
  resize: vertical;
}

.gravity-form-card select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6663' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
}

.gravity-form-card .gfield_error input,
.gravity-form-card .gfield_error select,
.gravity-form-card .gfield_error textarea {
  border-color: #b4232a !important;
}

.gravity-form-card .gfield_validation_message,
.gravity-form-card .validation_message {
  margin: 6px 0 0 !important;
  padding: 0 !important;
  color: #b4232a !important;
  background: transparent !important;
  border: 0 !important;
  font-family: var(--font-body);
  font-size: 12.5px !important;
  line-height: 1.45;
}

.gravity-form-card .gform_validation_errors {
  margin: 0 0 18px !important;
  padding: 14px 18px !important;
  background: #fbeaea !important;
  border: 1px solid #b4232a !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}

.gravity-form-card .gform_validation_errors h2,
.gravity-form-card .gform_validation_errors .gform_submission_error {
  margin: 0 !important;
  color: #8e1c22 !important;
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.gravity-form-card .gform_footer {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gravity-form-card .gform_footer .form-note {
  margin: 18px 0 0;
}

.gravity-form-card .gform_footer input[type="submit"],
.gravity-form-card .gform_footer button[type="submit"],
.gravity-form-card .gform_button {
  min-height: 54px !important;
  margin: 22px 0 0 !important;
  padding: 14px 22px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white) !important;
  background: var(--teal-600) !important;
  border: 1px solid transparent !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 750 !important;
  letter-spacing: .01em !important;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.gravity-form-card .gform_footer input[type="submit"]:hover,
.gravity-form-card .gform_footer button[type="submit"]:hover,
.gravity-form-card .gform_button:hover {
  background: #0b5c5f !important;
  transform: translateY(-2px);
}

.gravity-form-card .gform_footer input[type="submit"]:focus-visible,
.gravity-form-card .gform_footer button[type="submit"]:focus-visible,
.gravity-form-card .gform_button:focus-visible {
  outline: 3px solid rgba(14, 110, 114, .38) !important;
  outline-offset: 3px;
}

.gravity-form-card .gform_ajax_spinner,
.gravity-form-card .gform-loader {
  margin-left: 12px;
}

.gravity-form-card .gform_confirmation_message {
  margin: 0;
  padding: 14px 18px;
  color: #0b4f52;
  background: var(--teal-100);
  border: 1px solid var(--teal-600);
  border-radius: 3px;
  font-size: 14.5px;
}


/* ---- Inner page (privacy) ---- */
.inner-page {
  padding: 150px 0 110px;
  min-height: 60vh;
}

.inner-page h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--navy-900);
}

.inner-notice {
  max-width: 720px;
  padding: 22px 26px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  color: var(--slate);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---- Asurgence single posts ---- */

.asurgence-breadcrumbs {
  margin: 0 0 28px;
  color: var(--slate);
  font-size: 13px;
}

.asurgence-breadcrumbs a {
  color: var(--teal-600);
  text-decoration: none;
}

.asurgence-breadcrumbs a:hover {
  text-decoration: underline;
}

.asurgence-single__content {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

.asurgence-single__content > *:first-child {
  margin-top: 0;
}

.asurgence-single__content > *:last-child {
  margin-bottom: 0;
}

.asurgence-single__content h2,
.asurgence-single__content h3,
.asurgence-single__content h4 {
  color: var(--navy-900);
}

.asurgence-single h1 {
  font-size: 56px;
  line-height: 63px;
  margin-bottom: 2rem;
}

.asurgence-single__content h2 {
  margin: 48px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.03em;
}

.asurgence-single__content h3 {
  margin: 36px 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.asurgence-single__content p,
.asurgence-single__content ul,
.asurgence-single__content ol {
  margin: 0 0 22px;
}

.asurgence-single__content a {
  color: var(--teal-600);
  font-weight: 600;
}

.asurgence-single__content img {
  max-width: 100%;
  height: auto;
}

/* ---- Press archive ---- */

.press-archive__header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.press-archive__header h1 {
  margin-bottom: 0;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1020px) {
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
}

.press-card {
  min-height: 360px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal-600);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.press-card__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--navy-900);
}

.press-card__title a {
  color: inherit;
  text-decoration: none;
}

.press-card__title a:hover {
  color: var(--teal-600);
}

.press-card__excerpt {
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.press-card__excerpt p {
  margin: 0;
}

.press-card__link {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 580px) {
  .press-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .press-card__title {
    font-size: 27px;
  }

  .press-card__link {
    align-self: stretch;
  }
}


/* ---- Press pagination ---- */

.press-pagination {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.press-pagination .page-numbers {
  min-width: 44px;
  min-height: 44px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--navy-900);
  background: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.press-pagination a.page-numbers:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.press-pagination .page-numbers.current {
  border-color: var(--teal-600);
  background: var(--teal-600);
  color: var(--white);
}


/* ---- Empty press archive ---- */

.press-empty {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.press-empty h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy-900);
}

.press-empty p {
  margin: 0;
  color: var(--slate);
}

/* ---- Footer social links ---- */

.footer-grid .footer-social-link {
  width: fit-content;
  /*margin-top: 8px;*/
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  width: 25px;
  height: 25px;
  flex: none;
  fill: currentColor;
}

.footer-grid .footer-social-link:hover {
  color: var(--white);
}

/* ---- Announcement banner ---- */

:root {
  --announcement-height: 58px;
}

.announcement-banner {
  position: fixed;
  z-index: 45;
  top: 86px;
  left: 0;
  right: 0;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  background: var(--teal-600);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: top .3s ease;
}

/*
 * The main nav shrinks from 86px to 72px after scrolling,
 * so keep the announcement attached directly beneath it.
 */
.site-header.is-scrolled + .announcement-banner {
  top: 72px;
}

.announcement-banner-spacer {
  height: var(--announcement-height);
}

.announcement-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.announcement-banner__title {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.announcement-banner__link {
  flex: none;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 3px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  transition:
          background .2s ease,
          color .2s ease,
          border-color .2s ease,
          transform .2s ease;
}

.announcement-banner__link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.announcement-banner__link span {
  transition: transform .2s ease;
}

.announcement-banner__link:hover span {
  transform: translateX(3px);
}


/* Account for the fixed nav + announcement when jumping to anchors. */

html {
  scroll-padding-top: 144px;
}


@media (max-width: 820px) {
  :root {
    --announcement-height: 64px;
  }

  .announcement-banner,
  .site-header.is-scrolled + .announcement-banner {
    top: 72px;
  }

  html {
    scroll-padding-top: 146px;
  }

  .announcement-banner__inner {
    gap: 18px;
  }

  .announcement-banner__title {
    font-size: 13px;
  }

  .announcement-banner__link {
    padding: 8px 12px;
    font-size: 12px;
  }
}


@media (max-width: 580px) {
  :root {
    --announcement-height: 92px;
  }

  html {
    scroll-padding-top: 174px;
  }

  .announcement-banner__inner {
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .announcement-banner__title {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .announcement-banner__link {
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: var(--bright-teal);
  }

  .announcement-banner__link:hover {
    background: transparent;
    color: var(--white);
  }
}