/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --color-ink: #0d1b2e;
  --color-navy: #003a59;
  --color-coral: #ff5b45;
  --color-gold: #f6c33a;
  --color-cream: #fff8e3;
  --color-muted: #8f96a1;
  --color-line: #d8dde3;
  --font-sans: "Sarabun", "Inter", "Avenir Next", Arial, sans-serif;
  --font-display: "Hussar", "Sarabun", "Avenir Next", Arial, sans-serif;
  --page-width: 1440px;
  --inner-width: 1256px;
}

/* ==========================================================================
   Base
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
  background: #ffffff;
}

p {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.js-ready [data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 840ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.js-ready .reveal-delay-1 {
  transition-delay: 90ms;
}

.js-ready .reveal-delay-2 {
  transition-delay: 170ms;
}

.js-ready .reveal-delay-3 {
  transition-delay: 250ms;
}


.section-inner {
  width: var(--inner-width);
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 159px;
  height: 52px;
  padding: 0 31px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: var(--color-coral);
  overflow: hidden;
  transition:
    background-color 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease;
}

.button::after {
  content: "→";
  display: inline-flex;
  width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-8px);
  transition:
    width 220ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-left 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(255, 91, 69, 0.2);
}

.button:hover::after,
.button:focus-visible::after {
  width: 1.05em;
  margin-left: 10px;
  opacity: 1;
  transform: translateX(0);
}

.button-small {
  min-width: 122px;
  height: 46px;
  padding: 0 25px;
  font-size: 16px;
}

.button-wide {
  min-width: 386px;
  height: 54px;
  font-size: 18px;
}

.button-navy {
  background: var(--color-navy);
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 4px;
}

/* ==========================================================================
   Brand
   ========================================================================== */

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  text-decoration: none;
}

.brand img {
  width: 228px;
  height: 61px;
  object-fit: contain;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 15px;
  left: 0;
  z-index: 100;
  width: 100%;
}

.js-ready .site-header {
  opacity: 0;
  transform: translate3d(0, -32px, 0);
}

.js-ready.is-header-ready .site-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-shell {
  display: flex;
  align-items: center;
  width: 1356px;
  height: 76px;
  margin: 0 auto;
  padding: 0 22px 0 33px;
  border: 1px solid rgba(194, 202, 214, 0.82);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 28px rgba(13, 27, 46, 0.07);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(194, 202, 214, 0.96);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 14px 32px rgba(13, 27, 46, 0.1);
}

.site-header.is-top-bounce .header-shell {
  animation: header-top-bounce 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes header-top-bounce {
  0% {
    transform: translateY(0);
  }

  34% {
    transform: translateY(8px);
  }

  68% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: 309px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  color: #46484d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: #ff5b45;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-shell .button {
  margin-left: auto;
}

.nav-toggle {
  display: none;
}

.mobile-nav-meta {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #f4f4f2;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  background:
    linear-gradient(108deg, rgba(185, 185, 185, 0.5) 22%, rgba(0, 0, 0, 0.54) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(0, 0, 0, 0.18) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-content {
  --hero-text-offset: min(535px, 42vw);
  position: relative;
  z-index: 2;
  display: block;
  width: min(1290px, calc(100vw - 96px));
  margin: 0 auto;
  padding-top: 285px;
}

.hero h1 {
  max-width: calc(100% - var(--hero-text-offset));
  margin: 0 0 0 var(--hero-text-offset);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.19);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.js-ready .hero-text-reveal[data-reveal] {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.hero-word {
  display: inline-block;
}

.js-ready .hero-word {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 44px, 0) scale(0.98);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 880ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.js-ready .hero-text-reveal.is-animated .hero-word {
  animation: hero-word-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--hero-word-delay, 0ms);
}

.js-ready .hero-text-reveal.is-visible .hero-word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-word-rise {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translate3d(0, 44px, 0) scale(0.98);
  }

  70% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero h1 .accent {
  color: #ffd44b;
}

.hero p {
  width: min(860px, calc(100% - var(--hero-text-offset)));
  margin: 16px 0 0 var(--hero-text-offset);
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.34;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   Client Strip
   ========================================================================== */

.client-strip {
  height: 166px;
  margin-top: -1px;
  padding-top: 37px;
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  overflow: hidden;
}

.client-strip h2 {
  margin: 0 0 28px;
  color: #66748a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
}

.client-slider {
  --logo-count: 1;
  --logo-slot-width: 260px;
  --logo-slider-speed: 56s;
  position: relative;
  display: flex;
  width: min(1330px, calc(100vw - 72px));
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.client-logos {
  flex: 0 0 calc(var(--logo-count) * var(--logo-slot-width));
  display: grid;
  grid-template-columns: repeat(var(--logo-count), var(--logo-slot-width));
  align-items: center;
  width: calc(var(--logo-count) * var(--logo-slot-width));
  margin: 0;
  padding: 0;
  color: #969da7;
  list-style: none;
}

.client-slider.is-ready .client-logos {
  animation: client-logo-slide var(--logo-slider-speed) linear infinite;
}

.client-slider:hover .client-logos {
  animation-play-state: paused;
}

.client-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.82;
  filter: grayscale(1);
  opacity: 0.92;
}

.client-logos img {
  display: block;
  width: 170px;
  height: 72px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

@keyframes client-logo-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .js-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .js-ready .hero-word {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }

  .js-ready .stats-card[data-reveal] {
    transform: translateX(-50%);
  }

  .button,
  .button::after,
  .site-header,
  .site-header.is-top-bounce .header-shell {
    animation: none;
    transition: none;
  }

  .faq-accordion-panel,
  .faq-toggle::after {
    transition: none;
  }

  .client-slider.is-ready .client-logos {
    animation: none;
  }
}

.logo-stat {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 3px;
}

.logo-bloomberg {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
}

.logo-mail {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 900;
}

.logo-wsj {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -4px;
}

.logo-wcvb {
  font-size: 47px;
  font-weight: 900;
  line-height: 0.74;
  text-align: center;
}

.logo-wcvb span {
  font-size: 23px;
}

.logo-guardian {
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 900;
  text-align: right;
}

.logo-stat img,
.logo-wsj img,
.logo-time img {
  width: 128px;
}

.logo-bloomberg img,
.logo-mail img,
.logo-guardian img,
.logo-fiercebiotech img,
.logo-sciam img {
  width: 178px;
}

.logo-wcvb img,
.logo-kgtv img {
  width: 112px;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

.intro-section {
  position: relative;
  z-index: 1;
  min-height: 728px;
  padding: 49px 0 0;
  overflow: hidden;
  background: #ffffff;
}

.intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 730px 1fr;
  gap: 96px;
}

.intro-copy h2 {
  width: 680px;
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 45px;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: 0;
}

.intro-copy h2 span {
  color: var(--color-coral);
}

.intro-copy p {
  width: 744px;
  margin: 0 0 26px;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.43;
}

.intro-copy .button {
  position: relative;
  z-index: 3;
}

.portrait-card {
  position: relative;
  width: 429px;
  height: 429px;
  margin: 36px 0 0 32px;
}

.portrait-card img {
  position: absolute;
  top: 5px;
  left: 4px;
  width: 413px;
  height: 418px;
  border-radius: 0;
  object-fit: cover;
}

.stats-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 800px;
  height: 103px;
  margin: 0;
  border-radius: 60px;
  background: var(--color-navy);
  transform: translateX(-50%);
}

.js-ready .stats-card[data-reveal] {
  transform: translate3d(-50%, 34px, 0);
}

.js-ready .stats-card[data-reveal].is-visible {
  transform: translate3d(-50%, 0, 0);
}

.stats-card dl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0 34px;
  text-align: center;
}

.stats-card dt {
  color: #ffffff;
  font-size: 39px;
  font-weight: 800;
  line-height: 1;
}

.stats-card dd {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   Momentum Questions
   ========================================================================== */

.momentum-section {
  position: relative;
  z-index: 0;
  min-height: 818px;
  padding: 74px 0 116px;
  overflow: visible;
  background: transparent;
}

.momentum-section::before {
  content: "";
  position: absolute;
  top: -188px;
  left: 50%;
  width: max(1440px, 100vw);
  height: 880px;
  background-image: var(--momentum-bg-image, none);
  background-position: center top;
  background-size: max(1440px, 100vw) 880px;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.momentum-section .section-inner {
  position: relative;
  z-index: 1;
}

.mission-quote {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: min(1050px, calc(100vw - 64px));
  margin: 0 auto 84px;
  text-align: left;
}

.mission-quote-mark {
  display: block;
  width: 74px;
  height: auto;
  margin: -23px 0 0;
  color: var(--color-coral);
}

.mission-quote blockquote {
  min-width: 0;
  margin: 0;
}

.mission-quote p {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.4px;
}

.mission-quote p span {
  color: var(--color-coral);
}

.question-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 65px;
  row-gap: 38px;
  width: 1200px;
  margin: 0 auto 74px;
}

.question-column {
  display: grid;
  row-gap: 38px;
}

.question-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    #0b1119 0,
    #0b1119 calc((100% - 65px) / 2),
    transparent calc((100% - 65px) / 2),
    transparent calc((100% + 65px) / 2),
    #0b1119 calc((100% + 65px) / 2),
    #0b1119 100%
  );
  transform: translateY(-50%);
}

.question-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 50px;
  align-items: start;
  min-height: 96px;
  padding: 0 0 35px;
}

.question-card span {
  color: var(--color-gold);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.question-card h3 {
  margin: -8px 0 0;
  color: #013252;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.28;
}

.question-card a {
  display: flex;
  justify-content: flex-end;
  width: 40px;
  margin-top: 0;
  padding: 6px 0 6px 12px;
  text-decoration: none;
}

.question-card a img {
  display: block;
  width: 27.97px;
  height: 28.31px;
}

.cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Interior Pages
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 520px;
  padding: 350px 0 50px;
  overflow: hidden;
  color: #ffffff;
  background: #f4f4f2 center center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(185, 185, 185, 0.48) 20%, rgba(0, 0, 0, 0.58) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(0, 0, 0, 0.18) 100%);
  mix-blend-mode: multiply;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
}

.page-hero h1 .accent {
  color: var(--color-gold);
}

.page-hero-services {
  background-position: center center;
}

.page-hero-services h1 {
  max-width: 1080px;
}

.page-hero-services h1 .accent {
  white-space: nowrap;
}

.page-hero-faq {
  background-position: center center;
}

.page-hero-about {
  background-position: center center;
}

.page-hero-blog {
  background-position: center center;
}

.page-hero-contact {
  background-position: center center;
}

.page-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 24px;
  line-height: 1.35;
}

.content-band {
  padding: 72px 0;
  background: #ffffff;
}

.content-band-soft {
  background: #fffaf0;
}

.services-intro {
  padding: 92px 0 0;
  background: #ffffff;
}

.services-intro-copy {
  padding-left: 0;
}

.services-intro-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.services-intro-copy h2 span {
  color: var(--color-coral);
}

.services-intro-copy p {
  width: 840px;
  margin: 32px 0 0;
  color: var(--color-navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.52;
}

.services-intro-flow {
  width: min(100%, 1120px);
  margin-top: 59px;
}

.services-intro-flow p {
  width: 100%;
  margin: 0 0 34px;
}

.services-intro-flow p:last-child {
  margin-bottom: 0;
}

.services-intro-flow .services-intro-emphasis {
  font-weight: 700;
}

.services-framework {
  padding: 69px 0 96px;
  background: #ffffff;
}

.services-framework-title {
  margin: 0 0 48px;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.5px;
}

.split-copy {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 86px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--color-coral);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.6px;
}

.large-copy {
  margin: 0;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.service-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 37px;
}

.service-grid {
  --service-card-measured-height: 500px;
}

.service-grid-offset {
  margin-top: 90px;
}

.service-card,
.blog-card,
.faq-item {
  border-top: 1px solid #0b1119;
  padding-top: 34px;
}

.service-card {
  position: relative;
  min-height: var(--service-card-measured-height);
  padding: 26px 18px 68px;
  border: 1px solid #dfe6ee;
  border-radius: 14px;
  overflow: hidden;
}

.service-card img {
  width: 77.55px;
  height: 111px;
  margin-bottom: 24px;
  object-fit: contain;
}

.service-card .number {
  display: block;
  margin-bottom: 37px;
  color: var(--color-gold);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.service-card h2,
.blog-card h2,
.faq-item h2 {
  margin: 0 0 34px;
  color: var(--color-ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
}

.service-card h2 {
  color: #013252;
  min-height: 86px;
  padding-bottom: 33px;
  border-bottom: 1px solid #0b1119;
}

.service-card p,
.blog-card p,
.faq-item p {
  margin: 0;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.36;
}

.service-card > p {
  color: #013252;
}

.service-card-full {
  grid-column: 1 / -1;
}

.service-card-hitarea {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.service-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: block;
  width: 54px;
  height: 22px;
  background-color: var(--color-gold);
  mask: url("../icons/icon-arrow.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/icon-arrow.svg") center / contain no-repeat;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-reveal:hover .service-card-arrow,
.service-card-reveal:focus-within .service-card-arrow,
.service-card-reveal.is-revealed .service-card-arrow {
  opacity: 0;
  transform: translateX(2px);
}

.service-card > p {
  font-style: italic;
}

.service-card-detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 9px 19px 24px;
  overflow-y: auto;
  color: #ffffff;
  background: var(--color-navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-card-reveal:hover .service-card-detail,
.service-card-reveal:focus-within .service-card-detail,
.service-card-reveal.is-revealed .service-card-detail {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: none;
  width: 54px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
}

.service-card-close span,
.service-card-close::before,
.service-card-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.service-card-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-card-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-card-close span {
  overflow: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}


@media (max-width: 640px) {
  .service-card-reveal:not(.is-revealed) .service-card-arrow {
    opacity: 1;
    transform: none;
  }

  .service-card-reveal:not(.is-revealed) .service-card-detail {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .service-card-reveal.is-revealed .service-card-detail {
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .service-card-reveal.is-revealed .service-card-close {
    display: block;
  }
}

.service-card-close:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.service-card-detail .number {
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 28px;
  line-height: 1;
}

.service-card-detail-list {
  display: grid;
  gap: 18px;
}

.service-card-detail-item {
  display: grid;
  gap: 4px;
}

.service-card-detail h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.service-card-detail p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.38;
}

.service-card-hitarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -7px;
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-listing {
  padding: 74px 0 89px;
  background: #ffffff;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 395px);
  gap: 18px 18px;
  justify-content: center;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 496px;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 14px;
  background: #ffffff;
}

.post-card-image-link {
  position: relative;
  display: block;
  width: calc(100% + 2px);
  height: 224px;
  margin: -1px -1px 0;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #eef1f4 center center / cover no-repeat;
}

.post-card-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: grayscale(1);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 13px 18px;
}

.post-card h3 {
  min-height: 62px;
  margin: 0;
  color: var(--color-navy);
  font-size: 27px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.6px;
}

.post-card h3 a {
  text-decoration: none;
}

.post-card p {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid #0b1119;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}

.post-card time {
  color: #8f96a1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.post-card-link span {
  font-size: 27px;
  font-weight: 300;
  line-height: 0.7;
}

.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blog-load-more .button {
  min-width: 200px;
  height: 65px;
  font-size: 18px;
}

/* ==========================================================================
   Blog Individual
   ========================================================================== */

.single-post {
  padding: 96px 0 0;
  background: #ffffff;
}

.single-post-inner {
  width: 799px;
  margin: 0 auto;
}

.single-post-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 0 24px;
  border: 1px solid #dfe6ee;
  border-radius: 50%;
  color: var(--color-navy);
  font-size: 0;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.single-post-back::before {
  content: "←";
  display: block;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.single-post-back:hover,
.single-post-back:focus-visible {
  border-color: var(--color-coral);
  color: var(--color-coral);
  transform: translateX(-3px);
}

.single-post-hero {
  width: 799px;
  height: 455px;
  margin: 0;
  overflow: hidden;
}

.single-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.single-post-header {
  width: 685px;
  margin: 26px auto 0;
}

.single-post-header h1 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 41px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.6px;
}

.single-post-header time {
  display: block;
  margin-top: 25px;
  color: #8f96a1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.single-post-content {
  width: 685px;
  margin: 28px auto 0;
}

.single-post-content p {
  margin: 0 0 35px;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.46;
}

.single-post-content p:last-child {
  margin-bottom: 0;
}

.single-post-content strong {
  font-weight: 800;
}

.related-posts {
  padding: 50px 0 79px;
  background: #ffffff;
}

.related-posts h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 275px;
  height: 50px;
  padding: 0 28px;
  margin: 0 auto 41px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-navy);
}

.related-posts h2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.related-post-slider {
  position: relative;
}

.related-post-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-post-viewport::-webkit-scrollbar {
  display: none;
}

.related-posts .related-post-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, min(395px, 100%));
  grid-template-columns: none;
  justify-content: start;
}

.related-posts .post-card {
  scroll-snap-align: start;
}

.related-post-slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #dfe6ee;
  border-radius: 50%;
  color: var(--color-navy);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  background: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.related-post-slider-button-prev {
  left: -23px;
}

.related-post-slider-button-next {
  right: -23px;
}

.related-post-slider-button:hover,
.related-post-slider-button:focus-visible {
  border-color: var(--color-coral);
  color: var(--color-coral);
}

.related-post-slider-button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.related-post-slider-button:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.related-post-slider.is-static .related-post-slider-button {
  display: none;
}

.service-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 68px;
  align-items: center;
  margin-top: 92px;
  padding: 54px 64px;
  border-radius: 52px;
  color: #ffffff;
  background: var(--color-navy);
}

.service-cta h2 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.15;
}

.service-cta p {
  margin: 0;
  font-size: 22px;
  line-height: 1.36;
}

.service-cta .button {
  justify-self: end;
}

.service-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 454px;
  border-radius: 44px;
  padding: 48px 36px;
  color: #ffffff;
  background: var(--color-navy);
  text-align: center;
}

.service-card-cta h2 {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.36;
}

.service-card-cta p {
  margin: 0;
  max-width: 264px;
  font-size: 20px;
  line-height: 1.42;
}

.service-card-cta .button {
  min-width: 193px;
  margin-top: 45px;
}

.service-card-cta-full {
  grid-column: 1 / -1;
  min-height: 360px;
  padding: 64px;
}

.service-card-cta-full h2 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 38px;
  line-height: 1.16;
}

.service-card-cta-full p {
  max-width: 760px;
  font-size: 24px;
  line-height: 1.42;
}

.services-cta {
  border-top: 1px solid #e2e8f0;
  padding: 86px 0 102px;
  background: #ffffff;
}

.services-cta-inner {
  text-align: center;
}

.services-cta h2,
.services-cta h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.6px;
}

.services-cta h2 {
  font-size: 46px;
  line-height: 1.12;
}

.services-cta p {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--color-navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.52;
}

.services-cta h3 {
  margin-top: 36px;
  font-size: 32px;
  line-height: 1.18;
}

.services-cta .button {
  margin-top: 42px;
}

.centered-copy {
  text-align: center;
}

.narrow-copy {
  max-width: 648px;
  margin: 36px auto 0;
}

.section-title-small {
  margin-top: 28px;
  font-size: 28px;
}

.section-button {
  margin-top: 38px;
}

.copy-spaced {
  margin-top: 28px;
}

.about-portrait {
  width: 413px;
  height: 418px;
  object-fit: cover;
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */

.faq-intro {
  position: relative;
  padding: 102px 0 96px;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}

.faq-intro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 1050px;
  height: 420px;
  background: var(--faq-intro-bg-image, none) center center / 1050px auto no-repeat;
  opacity: 0.44;
  transform: translateX(-50%);
  pointer-events: none;
}

.faq-intro .section-inner {
  position: relative;
  z-index: 1;
}

.faq-intro .eyebrow {
  margin-bottom: 18px;
  color: var(--color-coral);
  font-size: 11px;
  letter-spacing: 4px;
}

.faq-intro h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 41px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.faq-intro h2 .accent {
  color: var(--color-gold);
}

.faq-intro-text,
.faq-intro h2 .accent {
  display: inline;
}

.faq-intro-line {
  display: inline;
  white-space: normal;
}

.faq-accordion-section {
  padding: 0 0 96px;
  background: #ffffff;
}

.faq-accordion {
  display: grid;
  gap: 27px;
  max-width: 1126px;
}

.faq-accordion-item {
  border-radius: 32px;
  background: #ffffff;
}

.faq-accordion-trigger {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  text-align: left;
  background: var(--color-navy);
  cursor: pointer;
}

.faq-number {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.faq-question {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: center;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.faq-accordion-trigger[aria-expanded="true"] .faq-toggle::after {
  opacity: 0;
}

.faq-accordion-panel {
  box-sizing: border-box;
  overflow: hidden;
  margin-top: -1px;
  padding: 31px 41px 34px;
  border: 1px solid #dfe6ee;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  opacity: 1;
  transition:
    height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 300ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.faq-accordion-panel.is-collapsed {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.faq-accordion-panel p {
  max-width: 930px;
  margin: 0;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.36;
}

.faq-bottom-cta {
  padding: 85px 0 114px;
  border-top: 1px solid #dfe6ee;
  background: #ffffff;
  text-align: center;
}

.faq-bottom-cta h2 {
  margin: 0;
  color: var(--color-coral);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.faq-bottom-cta p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.34;
}

.faq-bottom-cta .button {
  margin-top: 28px;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-intro {
  padding: 79px 0 94px;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 300px 260px 1fr 1fr;
  grid-template-areas:
    "heading heading heading heading"
    "pulse-icon pulse-copy pulse-copy pulse-copy"
    "wave pen-icon pen-copy pen-copy";
  gap: 34px 48px;
  align-items: center;
}

.about-intro-heading {
  grid-area: heading;
}

.about-intro-heading h2 {
  margin: 0 0 15px;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.about-intro-heading h2 span {
  color: var(--color-coral);
}

.about-intro-row {
  display: contents;
}

.about-intro-copy h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.about-intro-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--color-navy);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.48;
}

.about-symbol {
  width: 230px;
  height: 233px;
  object-fit: contain;
  justify-self: center;
}

.about-intro-row-pulse .about-symbol {
  grid-area: pulse-icon;
}

.about-intro-row-pulse .about-intro-copy {
  grid-area: pulse-copy;
}

.about-intro-row-pen .about-symbol {
  grid-area: pen-icon;
}

.about-intro-row-pen .about-intro-copy {
  grid-area: pen-copy;
}

.about-intro-wave {
  grid-area: wave;
  width: min(100%, 430px);
  min-height: 160px;
  background: var(--about-wave-image, none) center center / contain no-repeat;
  opacity: 0.55;
  justify-self: center;
}

.about-founder {
  padding: 80px 0 50px;
  background: #ffffff;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 408px 1fr;
  gap: 110px;
  align-items: start;
}

.about-founder-media {
  position: relative;
  width: 440px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 18px 0 0 7px;
}

.about-founder-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-founder-copy h2 {
  margin: 0 0 36px;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.about-founder-copy h2 span {
  color: var(--color-coral);
}

.about-founder-copy p {
  max-width: 735px;
  margin: 0 0 34px;
  color: var(--color-navy);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
}

.about-founder-copy h3 {
  margin: 22px 0 24px;
  color: var(--color-navy);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.about-founder-personal p:last-child {
  margin-bottom: 0;
}

.worked-with-strip {
  height: 164px;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.worked-with-strip > p {
  margin: 0 0 25px;
  color: #969da7;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.worked-with-strip .client-slider {
  --logo-slider-speed: 18s;
  width: min(1330px, calc(100vw - 72px));
}

.worked-with-logos li {
  height: 82px;
}

.worked-with-logos img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
}

.worked-with-text-logo {
  color: #969da7;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.62;
}

.about-media-strip {
  border-top: 1px solid var(--color-line);
}

.about-quote-cta {
  position: relative;
  padding: 129px 0 122px;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}

.about-quote-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 1120px;
  height: 510px;
  background: var(--about-cta-bg-image, none) center center / 1120px auto no-repeat;
  opacity: 0.52;
  transform: translateX(-50%);
  pointer-events: none;
}

.about-quote-cta .section-inner {
  position: relative;
  z-index: 1;
}

.about-quote-cta blockquote {
  margin: 0 auto;
  max-width: 1040px;
}

.about-quote-cta p {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.6px;
}

.about-quote-cta p span {
  color: var(--color-coral);
}

.about-quote-cta .button {
  min-width: 389px;
  margin-top: 44px;
}

.article-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 96px;
}

.article-meta {
  color: var(--color-coral);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.article-content h1 {
  margin: 0 0 34px;
  color: var(--color-navy);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
}

.article-content p {
  margin: 0 0 28px;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.55;
}

.contact-description {
  position: relative;
  z-index: 1;
  padding: 92px 0 94px;
  text-align: center;
  background: #ffffff;
}

.contact-description h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.contact-description h2 span {
  color: var(--color-coral);
}

.contact-description p {
  margin: 10px 0 0;
  color: var(--color-navy);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

.contact-section {
  position: relative;
  z-index: 1;
  padding: 28px 0 116px;
  background: #ffffff;
  isolation: isolate;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 785px) minmax(0, 413px);
  gap: 46px;
  align-items: start;
}

.contact-copy {
  display: grid;
  justify-items: center;
  min-height: 456px;
  margin-top: 6px;
  padding: 58px 44px 52px;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  background: var(--color-navy);
}

.contact-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.contact-copy h2 span {
  color: var(--color-gold);
}

.contact-copy .button {
  width: 292px;
  height: 46px;
  min-width: 0;
  margin-top: 58px;
  border-radius: 23px;
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 60px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 28px 16px;
  padding: 44px 56px 50px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #ffffff;
}

.contact-form h2 {
  margin: 0 0 2px;
  color: var(--color-navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0;
  text-transform: none;
}

.form-row-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 12px 10px;
  color: var(--color-navy);
  font: 400 22px/1.3 var(--font-sans);
  background: #f3f3f5;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-navy) 50%),
    linear-gradient(135deg, var(--color-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 17px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.contact-select-field {
  position: relative;
}

.contact-select-field .native-select {
  position: absolute;
  inset: auto auto 0 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  display: block;
  width: 100%;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  padding: 0 44px 0 6px;
  color: var(--color-navy);
  font: 400 22px/1.2 var(--font-sans);
  text-align: left;
  background: #f3f3f5;
  cursor: pointer;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 9px solid var(--color-navy);
  transform: translateY(-38%);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-62%) rotate(180deg);
}

.custom-select-trigger:focus-visible {
  outline: 3px solid rgba(0, 87, 199, 0.25);
  outline-offset: 4px;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 12;
  display: grid;
  width: 100%;
  padding: 12px;
  border: 2px solid #0057c7;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 55, 82, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 22px;
  color: var(--color-navy);
  font: 700 19px/1.2 var(--font-sans);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible,
.custom-select-menu button[aria-selected="true"] {
  color: #ffffff;
  outline: 0;
  background: var(--color-navy);
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.upload-label {
  margin: 0 0 -18px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.48;
}

.file-upload {
  position: relative;
  min-height: 128px;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border: 1px dashed #aeb8c5;
  border-radius: 18px;
  color: var(--color-navy);
  text-align: center;
  cursor: pointer;
  background: #fbfcfd;
}

.file-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-title {
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.file-upload-note {
  color: #7c8795;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.file-upload.is-dragging {
  border-color: var(--color-coral);
  background: #fff7f4;
}

.contact-form .button {
  width: 100%;
  height: 40px;
  min-width: 0;
  margin-top: 16px;
  border-radius: 20px;
  font-size: 17px;
}

/* ==========================================================================
   Legal Page
   ========================================================================== */

.legal-page {
  padding: 168px 0 112px;
  background: #ffffff;
}

.legal-content {
  max-width: 940px;
}

.legal-header {
  padding-bottom: 42px;
  border-bottom: 1px solid #dfe6ee;
}

.legal-header h1 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.8px;
}

.legal-header p {
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.legal-content section {
  padding: 42px 0;
  border-bottom: 1px solid #dfe6ee;
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.14;
}

.legal-content h3 {
  margin: 30px 0 12px;
  color: var(--color-navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.24;
}

.legal-content p,
.legal-content li {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-content li {
  margin: 6px 0;
}

.legal-content a {
  color: var(--color-navy);
  font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  min-height: 176px;
  padding: 0 32px;
  color: #ffffff;
  background: var(--color-navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(430px, 1fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1256px, 100%);
  height: 100%;
  min-height: 176px;
  margin: 0 auto;
}

.brand-footer {
  color: #ffffff;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: grid;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
}

.footer-nav nav {
  display: flex;
  gap: 17px;
}

.footer-nav a,
.footer-copy a {
  color: #ffffff;
  text-decoration: none;
}

.footer-nav nav a {
  font-weight: 700;
}

.footer-contact-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
}

.footer-contact-links span {
  color: #ffffff;
}

.footer-contact-links .footer-linkedin-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.footer-contact-links .footer-linkedin-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-contact-links .footer-linkedin-link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  justify-self: end;
  width: min(430px, 100%);
  min-width: 0;
}

.footer-copy strong {
  display: block;
  margin-bottom: 17px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
  white-space: nowrap;
}

.footer-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-copy span {
  margin: 0 11px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1399px) {
  :root {
    --inner-width: min(1120px, calc(100vw - 48px));
  }

  .service-grid {
    --service-card-measured-height: 560px;
  }

  .header-shell {
    width: calc(100vw - 48px);
  }

  .primary-nav {
    margin-left: auto;
  }

  .hero-content {
    width: calc(100vw - 96px);
    grid-template-columns: minmax(0, 1.35fr) minmax(440px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(56px, 4.8vw, 68px);
  }

  .hero p {
    width: min(860px, calc(100% - var(--hero-text-offset)));
    max-width: none;
  }

  .client-slider {
    width: calc(100vw - 72px);
  }

  .client-slider {
    --logo-slot-width: clamp(260px, calc((100vw - 72px) / 4.65), 300px);
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.8fr);
    gap: 56px;
  }

  .intro-copy h2,
  .intro-copy p {
    width: auto;
  }

  .question-grid {
    width: var(--inner-width);
  }

  .page-hero h1 {
    font-size: clamp(54px, 5vw, 65px);
  }

  .services-intro-copy p {
    width: min(840px, 100%);
  }

  .services-intro-flow {
    width: 100%;
  }

  .services-intro-flow p {
    width: auto;
  }

  .service-grid,
  .blog-grid {
    gap: 34px;
  }

  .post-grid,
  .related-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-accordion {
    max-width: var(--inner-width);
  }

  .about-intro-grid {
    grid-template-columns: 260px 220px 1fr 1fr;
    gap: 30px 36px;
  }

  .about-founder-grid {
    grid-template-columns: 360px 1fr;
    gap: 72px;
  }

  .worked-with-strip .client-slider {
    width: calc(100vw - 48px);
  }

  .footer-inner {
    width: var(--inner-width);
  }
}

@media (max-width: 1180px) {
  .site-footer {
    height: auto;
    padding: 44px 18px;
  }

  .footer-inner {
    width: 100%;
    grid-template-columns: minmax(190px, 0.72fr) minmax(380px, 1fr) minmax(300px, 0.88fr);
    gap: 24px;
    min-height: 0;
  }

  .brand-footer img {
    width: 200px;
  }

  .brand-footer {
    align-self: start;
  }

  .footer-nav {
    align-self: start;
    font-size: 14px;
  }

  .footer-nav nav {
    flex-wrap: nowrap;
  }

  .footer-contact-links {
    flex-wrap: nowrap;
    gap: 12px;
    white-space: nowrap;
  }

  .footer-copy {
    justify-self: end;
    width: 100%;
  }

  .footer-copy strong {
    font-size: 18px;
  }

  .footer-copy p {
    font-size: 12px;
  }
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .hero-content {
    --hero-text-offset: min(420px, 38vw);
    width: calc(100vw - 96px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 4.25vw, 52px);
  }

  .hero p {
    width: min(720px, calc(100% - var(--hero-text-offset)));
    max-width: none;
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 1023px) {
  .site-header {
    top: 12px;
  }

  .nav-open .site-header {
    top: 24px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--color-navy);
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.nav-open::before {
    transform: translateX(0);
  }

  .header-shell {
    position: relative;
    z-index: 102;
    height: 68px;
    padding: 0 16px 0 22px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
  }

  .brand img {
    width: 178px;
    height: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 104;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 0;
    color: var(--color-navy);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: clamp(140px, 18vh, 174px);
    left: 50px;
    right: auto;
    z-index: 101;
    display: grid;
    gap: clamp(24px, 4.5vh, 36px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .mobile-nav-meta {
    position: fixed;
    left: 50px;
    top: auto;
    bottom: clamp(24px, 6vh, 58px);
    z-index: 101;
    display: block;
    color: #ffffff;
    pointer-events: none;
  }

  .mobile-nav-meta p {
    margin: 0 0 20px;
    color: #ffffff;
    max-width: calc(100vw - 100px);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0;
  }

  .mobile-nav-meta p span {
    display: block;
  }

  .mobile-nav-meta a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
  }

  .primary-nav a,
  .header-shell .button,
  .mobile-nav-meta p,
  .mobile-nav-meta a {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 170ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0ms;
  }

  .nav-open .mobile-nav-meta {
    pointer-events: auto;
  }

  .nav-open .primary-nav {
    pointer-events: auto;
  }

  .nav-open .primary-nav a,
  .nav-open .header-shell .button,
  .nav-open .mobile-nav-meta p,
  .nav-open .mobile-nav-meta a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-open .primary-nav a:nth-child(1) {
    transition-delay: 90ms;
  }

  .nav-open .primary-nav a:nth-child(2) {
    transition-delay: 125ms;
  }

  .nav-open .primary-nav a:nth-child(3) {
    transition-delay: 160ms;
  }

  .nav-open .primary-nav a:nth-child(4) {
    transition-delay: 195ms;
  }

  .nav-open .header-shell .button {
    transition-delay: 230ms;
  }

  .nav-open .mobile-nav-meta p {
    transition-delay: 265ms;
  }

  .nav-open .mobile-nav-meta a {
    transition-delay: 300ms;
  }

  .primary-nav a {
    padding: 0;
    border-bottom: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }

  .primary-nav a::after {
    content: none;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .header-shell .button {
    position: fixed;
    top: clamp(390px, 56vh, 500px);
    left: 50px;
    right: auto;
    z-index: 103;
    display: inline-flex;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    margin: 0;
    color: var(--color-coral);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    background: transparent;
    pointer-events: none;
  }

  .nav-open .header-shell .button {
    pointer-events: auto;
  }

  .hero {
    min-height: 530px;
    background-position: center top;
  }

  .hero::before {
    height: 100%;
  }

  .hero-content {
    --hero-text-offset: 0px;
    display: block;
    width: calc(100vw - 48px);
    max-width: 620px;
    padding-top: 276px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(45px, 7vw, 60px);
  }

  .hero p {
    width: min(530px, 100%);
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.36;
  }

  .page-hero-services h1 .accent {
    white-space: normal;
  }

  .client-strip {
    height: 152px;
  }

  .intro-section {
    min-height: 0;
    padding: 48px 0 130px;
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy h2 {
    font-size: clamp(36px, 5.6vw, 45px);
  }

  .intro-copy p {
    font-size: 21px;
  }

  .portrait-card {
    justify-self: center;
    margin: 0;
  }

  .stats-card {
    width: min(800px, calc(100vw - 48px));
  }

  .momentum-section {
    min-height: 0;
    padding: 70px 0 92px;
  }

  .momentum-section::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .mission-quote {
    width: min(100%, 900px);
  }

  .mission-quote-mark {
    width: 74px;
    margin-top: -18px;
  }

  .question-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .question-column {
    row-gap: 0;
  }

  .question-grid::before {
    display: none;
  }

  .question-card {
    min-height: 0;
    padding: 28px 0;
    border-bottom: 1px solid #0b1119;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: start;
    align-items: start;
    text-align: center;
  }

  .brand-footer {
    justify-content: center;
  }

  .footer-nav nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-contact-links {
    justify-content: center;
    gap: 8px;
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .footer-copy {
    justify-self: center;
    width: auto;
  }

  .page-hero {
    min-height: 408px;
    padding: 232px 0 45px;
  }

  .page-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 7vw, 58px);
  }

  .services-intro {
    padding-top: 82px;
  }

  .services-intro-copy h2,
  .services-cta h2 {
    font-size: clamp(36px, 5.7vw, 44px);
  }

  .services-intro-copy p,
  .services-cta p {
    width: 100%;
    font-size: 21px;
    line-height: 1.5;
  }

  .services-framework {
    padding: 54px 0 76px;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 395px));
  }

  .single-post {
    padding-top: 84px;
  }

  .single-post-inner,
  .single-post-hero,
  .single-post-header,
  .single-post-content {
    width: min(799px, calc(100vw - 48px));
  }

  .single-post-hero {
    height: auto;
    aspect-ratio: 799 / 455;
  }

  .single-post-header h1 {
    font-size: clamp(36px, 5.8vw, 41px);
  }

  .single-post-content p {
    font-size: 19px;
  }

  .related-post-grid {
    grid-template-columns: repeat(2, minmax(0, 395px));
  }

  .related-post-viewport {
    padding: 0 54px;
  }

  .related-post-slider-button-prev {
    left: 8px;
  }

  .related-post-slider-button-next {
    right: 8px;
  }

  .service-grid {
    --service-card-measured-height: 560px;
  }

  .service-card-cta {
    min-height: 560px;
  }

  .service-card-cta-full {
    min-height: 360px;
    padding: 54px 42px;
  }

  .services-cta {
    padding: 68px 0 82px;
  }

  .services-cta h3 {
    font-size: 28px;
  }

  .faq-intro {
    padding: 82px 0 78px;
  }

  .faq-intro h2 {
    font-size: clamp(34px, 5.3vw, 41px);
  }

  .faq-intro-line {
    display: inline;
    white-space: normal;
  }

  .faq-accordion-section {
    padding-bottom: 78px;
  }

  .faq-accordion-trigger {
    grid-template-columns: 44px 1fr 28px;
    min-height: 76px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-bottom-cta {
    padding: 70px 0 92px;
  }

  .about-intro {
    padding: 68px 0 74px;
  }

  .about-intro-grid,
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-intro-grid {
    grid-template-areas:
      "heading"
      "pulse-row"
      "wave"
      "pen-row";
  }

  .about-intro-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: start;
  }

  .about-intro-row-pulse {
    grid-area: pulse-row;
  }

  .about-intro-row-pen {
    grid-area: pen-row;
  }

  .about-intro-row .about-symbol,
  .about-intro-row .about-intro-copy {
    grid-area: auto;
  }

  .about-intro-heading h2,
  .about-founder-copy h2 {
    font-size: clamp(36px, 5.5vw, 42px);
  }

  .about-intro-copy p,
  .about-founder-copy p {
    max-width: 100%;
    font-size: 20px;
  }

  .about-symbol {
    width: min(230px, 78vw);
    height: auto;
    justify-self: start;
  }

  .about-founder-media {
    justify-self: center;
  }

  .about-founder-media {
    margin-left: 0;
  }

  .about-quote-cta {
    padding: 92px 0 96px;
  }

  .about-quote-cta p {
    font-size: clamp(28px, 4.4vw, 34px);
  }

  .contact-description {
    padding: 72px 0 74px;
  }

  .contact-description h2 {
    font-size: clamp(36px, 5vw, 44px);
  }

  .contact-section {
    padding: 50px 0 90px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form {
    order: 1;
  }

  .contact-copy {
    order: 2;
    width: min(100%, 413px);
    justify-self: center;
    padding: 58px 44px 52px;
  }

  .contact-copy h2 {
    font-size: 30px;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  body::before,
  .primary-nav a,
  .header-shell .button,
  .mobile-nav-meta p,
  .mobile-nav-meta a {
    transition: none;
  }

  body::before {
    opacity: 0;
    transform: none;
  }

  body.nav-open::before {
    opacity: 1;
  }

  .primary-nav a,
  .header-shell .button,
  .mobile-nav-meta p,
  .mobile-nav-meta a {
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --inner-width: calc(100vw - 32px);
  }

  .site-header {
    top: 10px;
  }

  .nav-open .site-header {
    top: 31px;
  }

  body.nav-open .site-header.site-header {
    transform: none;
  }

  .header-shell {
    width: calc(100vw - 24px);
    height: 62px;
    padding-left: 16px;
    border-radius: 31px;
  }

  .nav-open .header-shell {
    width: calc(100vw - 28px);
    height: 78px;
    padding: 0 18px 0 25px;
    border-radius: 40px;
  }

  .brand img {
    width: 154px;
  }

  .nav-open .brand img {
    width: 221px;
  }

  .nav-open .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .primary-nav {
    top: clamp(138px, 17vh, 168px);
    left: 40px;
    gap: clamp(24px, 5vh, 34px);
  }

  .mobile-nav-meta {
    left: 40px;
    top: auto;
    bottom: 28px;
  }

  .mobile-nav-meta p {
    max-width: calc(100vw - 80px);
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.42;
  }

  .mobile-nav-meta a {
    font-size: 20px;
    line-height: 1.2;
  }

  .primary-nav a {
    font-size: 24px;
  }

  .header-shell .button {
    top: clamp(388px, 52vh, 462px);
    left: 40px;
    font-size: 24px;
  }

  .button {
    min-width: 0;
  }

  .hero {
    min-height: 510px;
    background-position: center top;
  }

  .hero::before {
    height: 100%;
  }

  .hero-content {
    width: calc(100vw - 48px);
    padding-top: 240px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 33px;
    line-height: 1.06;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero p {
    width: 100%;
    max-width: 530px;
    font-size: 22px;
    line-height: 1.25;
  }

  .client-strip {
    height: 132px;
    padding-top: 28px;
  }

  .client-strip h2 {
    margin-bottom: 22px;
    letter-spacing: 4px;
  }

  .client-slider {
    width: calc(100vw - 32px);
  }

  .client-slider {
    --logo-slot-width: clamp(152px, calc((100vw - 32px) / 2.15), 190px);
  }

  .logo-stat {
    font-size: 40px;
  }

  .logo-bloomberg {
    font-size: 30px;
  }

  .logo-mail {
    font-size: 28px;
  }

  .logo-wsj {
    font-size: 42px;
  }

  .logo-wcvb {
    font-size: 34px;
  }

  .logo-wcvb span {
    font-size: 17px;
  }

  .logo-guardian {
    font-size: 26px;
  }

  .client-logos img {
    width: 136px;
    height: 56px;
  }

  .logo-stat img,
  .logo-wsj img,
  .logo-time img {
    width: 98px;
  }

  .logo-bloomberg img,
  .logo-mail img,
  .logo-guardian img,
  .logo-fiercebiotech img,
  .logo-sciam img {
    width: 142px;
  }

  .logo-wcvb img,
  .logo-kgtv img {
    width: 88px;
  }

  .intro-section {
    padding: 38px 0 310px;
  }

  .intro-copy h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .intro-copy p {
    font-size: 18px;
    line-height: 1.48;
  }

  .portrait-card {
    width: min(100%, 340px);
    height: 342px;
  }

  .portrait-card img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .stats-card {
    bottom: 28px;
    height: auto;
    border-radius: 26px;
  }

  .stats-card dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    padding: 24px 22px;
  }

  .stats-card dt {
    font-size: 34px;
  }

  .stats-card dd {
    margin-top: 8px;
    font-size: 9px;
  }

  .momentum-section {
    padding: 56px 0 72px;
    overflow: hidden;
  }

  .momentum-section::before {
    top: -80px;
    width: 1000px;
    height: 580px;
    background-size: 1000px 580px;
  }

  .mission-quote {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 44px;
    text-align: left;
  }

  .mission-quote-mark {
    width: 48px;
    margin-top: -8px;
  }

  .mission-quote p {
    font-size: 24px;
    line-height: 1.18;
  }

  .question-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #0b1119;
  }

  .question-card span {
    font-size: 28px;
  }

  .question-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.28;
  }

  .question-card a {
    margin: 0;
    justify-content: flex-start;
    width: 40px;
    padding: 6px 12px 6px 0;
  }

  .question-card a img {
    width: 27.97px;
    height: 28.31px;
  }

  .page-hero {
    min-height: 368px;
    padding: 190px 0 38px;
    background-position: center center;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.5px;
  }

  .services-intro {
    padding-top: 58px;
  }

  .services-intro-copy h2,
  .services-cta h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  .services-intro-copy p {
    margin-top: 24px;
  }

  .services-intro-flow {
    margin-top: 24px;
  }

  .services-intro-flow p {
    margin-top: 0;
  }

  .services-intro-flow p {
    margin-bottom: 24px;
  }

  .services-intro-copy p,
  .services-cta p {
    font-size: 18px;
    line-height: 1.48;
  }

  .services-framework {
    padding: 42px 0 58px;
  }

  .services-framework-title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 1.18;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-listing {
    padding: 54px 0 68px;
  }

  .post-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .post-card {
    min-height: 0;
  }

  .post-card-image-link {
    height: auto;
    aspect-ratio: 395 / 224;
  }

  .single-post {
    padding-top: 72px;
  }

  .single-post-inner,
  .single-post-hero,
  .single-post-header,
  .single-post-content {
    width: calc(100vw - 32px);
  }

  .single-post-header {
    margin-top: 22px;
  }

  .single-post-header h1 {
    font-size: 32px;
    line-height: 1.06;
  }

  .single-post-header time {
    margin-top: 18px;
  }

  .single-post-content {
    margin-top: 24px;
  }

  .single-post-content p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.48;
  }

  .related-posts {
    padding: 40px 0 64px;
  }

  .related-posts h2 {
    width: 230px;
    height: 50px;
    margin-bottom: 32px;
    font-size: 20px;
  }

  .related-post-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid {
    --service-card-measured-height: 500px;
  }

  .service-card-cta {
    min-height: 500px;
  }

  .service-card {
    padding: 24px 18px 68px;
  }

  .service-card img {
    width: 77.55px;
    height: 111px;
  }

  .service-card .number {
    margin-bottom: 24px;
  }

  .service-card h2 {
    min-height: 0;
    margin-bottom: 24px;
    padding-bottom: 24px;
    font-size: 24px;
  }

  .service-card p,
  .service-card-cta p {
    font-size: 18px;
  }

  .service-card-detail h3,
  .service-card-detail p {
    font-size: 20px;
  }

  .post-card h3 {
    font-size: 25px;
  }

  .post-card p {
    font-size: 20px;
    line-height: 1.16;
  }

  .service-card-cta {
    padding: 42px 28px;
    border-radius: 28px;
  }

  .service-card-cta-full h2 {
    font-size: 30px;
  }

  .service-card-cta-full p {
    font-size: 19px;
  }

  .services-cta {
    padding: 52px 0 64px;
  }

  .services-cta h3 {
    font-size: 24px;
  }

  .faq-intro {
    padding: 60px 0 58px;
  }

  .faq-intro::before {
    width: 850px;
    height: 360px;
    background-size: 850px auto;
  }

  .faq-intro h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  .faq-accordion-section {
    padding-bottom: 58px;
  }

  .faq-accordion {
    gap: 18px;
  }

  .faq-accordion-trigger {
    grid-template-columns: 36px 1fr 22px;
    gap: 14px;
    min-height: 70px;
    padding: 0 18px;
    border-radius: 28px;
  }

  .faq-number {
    font-size: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-accordion-panel {
    padding: 24px 22px 28px;
  }

  .faq-accordion-panel p {
    font-size: 17px;
  }

  .faq-bottom-cta {
    padding: 56px 0 72px;
  }

  .faq-bottom-cta h2 {
    font-size: 32px;
  }

  .faq-bottom-cta p {
    font-size: 17px;
  }

  .about-intro {
    padding: 48px 0 58px;
  }

  .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "pulse-row"
      "wave"
      "pen-row";
    gap: 42px;
  }

  .about-intro-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
    margin-top: 0;
  }

  .about-intro-heading h2,
  .about-founder-copy h2 {
    font-size: 32px;
  }

  .about-intro-copy h3,
  .about-founder-copy h3 {
    font-size: 22px;
  }

  .about-intro-copy p,
  .about-founder-copy p,
  .about-founder-personal p {
    font-size: 18px;
    line-height: 1.45;
  }

  .about-symbol {
    width: min(230px, 78vw);
    height: auto;
    justify-self: start;
  }

  .about-founder {
    padding: 80px 0 50px;
  }

  .about-founder-media {
    width: 288px;
    height: 288px;
  }

  .about-intro-wave {
    width: 100%;
    max-width: 520px;
    min-height: clamp(150px, 34vw, 210px);
    margin: 0 auto;
    background-size: contain;
  }

  .worked-with-strip .client-slider {
    width: calc(100vw - 32px);
  }

  .worked-with-strip > p {
    line-height: 1.45;
  }

  .worked-with-logos img {
    max-width: 130px;
  }

  .about-quote-cta {
    padding: 72px 0 78px;
  }

  .about-quote-cta::before {
    width: 850px;
    height: 430px;
    background-size: 850px auto;
  }

  .about-quote-cta blockquote {
    margin-top: 0;
  }

  .about-quote-cta p {
    font-size: 25px;
  }

  .about-quote-cta .button {
    width: 100%;
    min-width: 0;
  }

  .contact-section {
    padding: 38px 0 68px;
  }

  .contact-description {
    padding: 58px 0 46px;
  }

  .contact-description h2 {
    font-size: 34px;
  }

  .contact-description p {
    font-size: 18px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px 34px;
  }

  .contact-form h2 {
    font-size: 25px;
  }

  .contact-copy h2 {
    font-size: 28px;
  }

  .contact-details {
    font-size: 18px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form label {
    gap: 11px;
    font-size: 17px;
    line-height: 1.18;
  }

  .custom-select-trigger {
    min-height: 52px;
    border-radius: 0;
    padding: 0 42px 0 10px;
    font-size: 18px;
  }

  .custom-select-trigger::after {
    right: 22px;
    border-right-width: 7px;
    border-left-width: 7px;
    border-top-width: 8px;
  }

  .custom-select-menu {
    border-radius: 20px;
  }

  .custom-select-menu button {
    padding: 14px 16px;
    font-size: 17px;
  }

  .upload-label {
    margin-bottom: -12px;
    font-size: 18px;
  }

  .file-upload {
    min-height: 132px;
  }

  .file-upload-title {
    font-size: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .legal-page {
    padding: 118px 0 72px;
  }

  .legal-header {
    padding-bottom: 30px;
  }

  .legal-header h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .legal-content section {
    padding: 30px 0;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .legal-content h3 {
    font-size: 19px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    line-height: 1.55;
  }

  .button-wide {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    font-size: 16px;
  }

  .site-footer {
    height: auto;
    padding: 34px 0;
  }

  .footer-copy strong {
    font-size: 18px;
  }

  .footer-copy p {
    font-size: 12px;
  }
}

/* ==========================================================================
   404
   ========================================================================== */

.not-found-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 190px 0 110px;
  color: var(--color-navy);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url(../images/pulse_backgroun_image_homepage.png) center / cover no-repeat;
}

.not-found-inner {
  max-width: 860px;
}

.not-found-eyebrow {
  margin: 0 0 20px;
  color: var(--color-yellow);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.not-found-page h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
}

.not-found-page p:not(.not-found-eyebrow) {
  max-width: 720px;
  margin: 0 0 38px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .not-found-page {
    min-height: 68vh;
    padding: 150px 0 80px;
  }

  .not-found-eyebrow {
    font-size: 28px;
  }

  .not-found-page h1 {
    font-size: 42px;
  }

  .not-found-page p:not(.not-found-eyebrow) {
    font-size: 22px;
  }
}


/* Related articles carousel */
.related-post-slider {
  width: min(100%, 1640px);
  margin: 0 auto;
}

.related-post-viewport {
  width: min(100%, calc(100vw - 96px));
  margin: 0 auto;
}

.related-posts .related-post-grid {
  gap: 24px;
}

@media (max-width: 1180px) {
  .related-post-viewport {
    width: min(100%, calc(100vw - 72px));
  }

  .related-posts .related-post-grid {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 700px) {
  .related-post-slider {
    width: min(100%, calc(100vw - 32px));
    padding-bottom: 68px;
  }

  .related-post-viewport {
    width: 100%;
    padding: 0;
  }

  .related-posts .related-post-grid {
    grid-auto-columns: 100%;
    gap: 18px;
  }

  .related-post-slider-button {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .related-post-slider-button-prev {
    left: calc(50% - 58px);
  }

  .related-post-slider-button-next {
    right: calc(50% - 58px);
  }
}


@media (max-width: 1023px) {
  body.nav-open .site-header.site-header {
    transform: none;
  }

  body.nav-open .mobile-nav-meta {
    position: fixed;
    top: auto;
    right: clamp(32px, 6vw, 50px);
    bottom: max(24px, env(safe-area-inset-bottom));
    left: clamp(32px, 6vw, 50px);
    max-width: none;
  }

  body.nav-open .mobile-nav-meta p {
    max-width: 100%;
  }
}


/* Stable mobile navigation viewport layout */
@media (max-width: 1023px) {
  body.nav-open::before {
    height: 100vh;
    height: 100dvh;
  }

  body.nav-open .site-header.site-header {
    top: max(18px, env(safe-area-inset-top));
    transform: none;
  }

  body.nav-open .primary-nav {
    top: clamp(132px, 17dvh, 174px);
    left: clamp(32px, 6vw, 50px);
    gap: clamp(22px, 4dvh, 36px);
  }

  body.nav-open .header-shell .button {
    top: min(56dvh, calc(100dvh - 280px));
    left: clamp(32px, 6vw, 50px);
  }

  body.nav-open .mobile-nav-meta {
    position: fixed;
    top: auto;
    right: clamp(32px, 6vw, 50px);
    bottom: max(24px, env(safe-area-inset-bottom));
    left: clamp(32px, 6vw, 50px);
    z-index: 103;
    max-width: none;
  }

  body.nav-open .mobile-nav-meta p {
    max-width: 100%;
  }
}


/* Short mobile navigation viewport support */
@media (max-width: 1023px) and (max-height: 720px) {
  body.nav-open .primary-nav {
    top: clamp(116px, 17dvh, 138px);
    gap: clamp(18px, 3.5dvh, 26px);
  }

  body.nav-open .header-shell .button {
    top: min(54dvh, calc(100dvh - 220px));
  }

  body.nav-open .mobile-nav-meta p {
    margin-bottom: 12px;
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.32;
  }

  body.nav-open .mobile-nav-meta a {
    font-size: clamp(17px, 5vw, 20px);
  }
}


/* Prevent mobile navigation fixed-position jump */
@media (max-width: 1023px) {
  .js-ready .site-header,
  .js-ready.is-header-ready .site-header,
  body.nav-open .site-header.site-header {
    opacity: 1;
    transform: none;
  }

  .mobile-nav-meta {
    position: fixed;
    top: auto;
    right: clamp(32px, 6vw, 50px);
    bottom: max(24px, env(safe-area-inset-bottom));
    left: clamp(32px, 6vw, 50px);
  }

  .mobile-nav-meta,
  .mobile-nav-meta p,
  .mobile-nav-meta a {
    will-change: opacity, transform;
  }
}


/* Keep mobile menu footer text anchored while the menu opens */
@media (max-width: 1023px) {
  body.nav-open .site-header.site-header {
    transform: none;
  }

  body.nav-open .mobile-nav-meta,
  body.nav-open .mobile-nav-meta p,
  body.nav-open .mobile-nav-meta a {
    transform: none;
  }

  body.nav-open .mobile-nav-meta {
    position: fixed;
    top: auto;
    right: clamp(32px, 6vw, 50px);
    bottom: max(24px, env(safe-area-inset-bottom));
    left: clamp(32px, 6vw, 50px);
    z-index: 103;
    opacity: 1;
  }
}


/* Mobile contact viewport containment */
@media (max-width: 640px) {
  body.page-template-page-contact {
    overflow-x: hidden;
  }

  .contact-section .section-inner,
  .contact-grid {
    width: min(100% - 32px, var(--inner-width));
    max-width: calc(100vw - 32px);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .contact-form,
  .contact-copy,
  .pulse-pen-fluent-form,
  .fluentform,
  .ff-el-group,
  .ff-el-input--content {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form {
    width: 100%;
    overflow: hidden;
    padding: 28px 16px 32px;
  }

  .contact-form label,
  .ff-el-input--label label,
  .upload-label {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .custom-select-trigger,
  .ff-el-form-control {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-copy {
    width: 100%;
    min-height: auto;
    padding: 44px 18px 38px;
    border-radius: 16px;
  }

  .contact-copy h2 {
    font-size: clamp(24px, 8vw, 28px);
  }

  .contact-copy .button {
    width: min(100%, 292px);
    margin-top: 42px;
  }

  .contact-details {
    margin-top: 44px;
    font-size: 16px;
  }

  .contact-details a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    overflow: hidden;
  }

  .footer-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .footer-contact-links,
  .footer-copy,
  .footer-copy strong,
  .footer-copy p {
    max-width: 100%;
  }

  .footer-contact-links a,
  .footer-copy strong,
  .footer-copy p {
    overflow-wrap: anywhere;
  }

  .footer-copy strong,
  .footer-copy p {
    white-space: normal;
  }
}
