/*
 * Continuum high-intent landing pages
 * Shared visual language for Why Continuum, Firm Partners, and Insights.
 */

.brand-page,
.insights-page {
  --bp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bp-shadow: 0 24px 70px rgba(0, 22, 61, 0.09);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

.brand-page main :is(h1, h2, h3),
.insights-page main :is(h1, h2, h3) {
  text-wrap: balance;
}

.brand-page main p,
.insights-page main p {
  text-wrap: pretty;
}

.bp-shell {
  width: min(calc(100% - 4rem), 1184px);
  margin-inline: auto;
}

.bp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--teal-ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bp-kicker::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: '';
}

.bp-kicker--light {
  color: var(--teal);
}

.bp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #10233c 100%);
  color: var(--paper);
}

.bp-hero::before,
.insight-hero::before {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/continuum-mark-pattern.svg');
  background-size: 44px 44px;
  animation: bp-brand-field 38s linear infinite;
  content: '';
  opacity: 0.6;
  pointer-events: none;
}

.bp-hero::after,
.insight-hero::after {
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
  animation: bp-ambient-breathe 18s ease-in-out infinite alternate;
  content: '';
  pointer-events: none;
}

.bp-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.68fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  z-index: 1;
  padding-block: clamp(4.75rem, 8vw, 6.75rem);
}

.bp-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: var(--paper);
  font-size: clamp(3.35rem, 5.75vw, 5.15rem);
  font-weight: 300 !important;
  letter-spacing: -0.046em;
  line-height: 1.01;
}

.bp-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.1rem, 1.65vw, 1.24rem);
  line-height: 1.66;
}

.bp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  margin-top: 2.2rem;
}

.bp-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid var(--cta);
  border-radius: 8px;
  background: var(--cta);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.2);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s var(--bp-ease);
}

.bp-button:hover {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.26);
  color: var(--paper);
  transform: translateY(-3px);
}

.bp-button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.bp-button--light:hover {
  border-color: var(--gray-100);
  background: var(--gray-100);
  color: var(--navy);
}

.bp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 600;
}

.bp-text-link span {
  transition: transform 0.2s ease;
}

.bp-text-link:hover {
  color: var(--teal);
}

.bp-text-link:hover span {
  transform: translateX(4px);
}

.bp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.bp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bp-trust span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: '';
}

.bp-hero-panel {
  width: min(100%, 420px);
  justify-self: end;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.bp-hero-panel > span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bp-hero-panel h2 {
  margin: 0 0 1rem;
  color: var(--paper);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 300 !important;
  line-height: 1.13;
}

.bp-hero-panel > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.96rem;
  line-height: 1.67;
}

.bp-panel-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.bp-panel-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bp-panel-item > span {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
}

.bp-panel-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--paper);
  font-size: 0.94rem;
  font-weight: 600;
}

.bp-panel-item small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.5;
}

.bp-proof {
  border-bottom: 1px solid var(--gray-300);
  background: var(--paper);
}

.bp-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bp-proof-item {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
}

.bp-proof-item + .bp-proof-item {
  border-left: 1px solid var(--gray-300);
}

.bp-proof-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.6vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.bp-proof-item span {
  max-width: 190px;
  color: var(--gray-700);
  font-size: 0.84rem;
  line-height: 1.48;
}

.bp-section {
  padding-block: clamp(4.5rem, 7.5vw, 6rem);
}

.bp-section--warm {
  border-block: 1px solid var(--gray-300);
  background: var(--paper-warm);
}

.bp-section--navy {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}

.bp-section--navy::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  content: '';
  opacity: 0.28;
  pointer-events: none;
}

.bp-section--navy .bp-shell {
  position: relative;
  z-index: 1;
}

.bp-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  margin-bottom: 2.55rem;
}

.bp-heading h2 {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.35vw, 3.7rem);
  font-weight: 300 !important;
  letter-spacing: -0.042em;
  line-height: 1.07;
}

.bp-heading > p {
  max-width: 43ch;
  justify-self: end;
  margin: 0;
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.74;
}

.bp-section--navy .bp-heading h2 {
  color: var(--paper);
}

.bp-section--navy .bp-heading > p {
  color: rgba(255, 255, 255, 0.65);
}

.bp-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}

.bp-principle {
  min-height: 276px;
  padding: 2rem;
  transition: background-color 0.25s ease, transform 0.25s var(--bp-ease);
}

.bp-principle + .bp-principle {
  border-left: 1px solid var(--gray-300);
}

.bp-principle > span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--teal-ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bp-principle h3 {
  max-width: 260px;
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.bp-principle p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.96rem;
  line-height: 1.72;
}

.bp-comparison {
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 22, 61, 0.055);
}

.bp-comparison-head,
.bp-comparison-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr) minmax(0, 1.08fr);
}

.bp-comparison-head {
  background: var(--navy);
  color: var(--paper);
}

.bp-comparison-head > div {
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-comparison-head > div:last-child {
  color: var(--teal);
}

.bp-comparison-row {
  border-top: 1px solid var(--gray-300);
  transition: background-color 0.2s ease;
}

.bp-comparison-row > div {
  padding: 1.25rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.66;
}

.bp-comparison-row > div + div {
  border-left: 1px solid var(--gray-300);
}

.bp-comparison-row .bp-comparison-label {
  color: var(--navy);
  font-weight: 600;
}

.bp-comparison-row .bp-comparison-us {
  background: #f5fbfb;
  color: #29434b;
}

.bp-comparison-note {
  max-width: 820px;
  margin: 1.25rem auto 0;
  color: var(--gray-700);
  font-size: 0.8rem;
  line-height: 1.65;
  text-align: center;
}

.bp-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.bp-system-card {
  min-height: 242px;
  padding: 2rem;
  transition: background-color 0.25s ease;
}

.bp-system-card + .bp-system-card {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.bp-system-card > span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bp-system-card h3 {
  margin: 0 0 0.75rem;
  color: var(--paper);
  font-size: 1.42rem;
  font-weight: 500;
}

.bp-system-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.72;
}

.bp-six-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 12px;
}

.bp-six-item {
  min-height: 125px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  transition: background-color 0.22s ease, border-color 0.22s ease;
}

.bp-six-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.bp-six-item > span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 600;
}

.bp-six-item strong {
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 500;
}

.bp-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  list-style: none;
}

.bp-step {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: var(--paper);
  transition: background-color 0.25s ease;
}

.bp-step + .bp-step {
  border-left: 1px solid var(--gray-300);
}

.bp-step > span {
  display: block;
  margin-bottom: 3rem;
  color: var(--teal-ink);
  font-size: 0.72rem;
  font-weight: 600;
}

.bp-step h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 600;
}

.bp-step p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.72;
}

.bp-proof-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--bp-shadow);
}

.bp-proof-story figure {
  min-height: 430px;
  margin: 0;
  background: var(--gray-100);
}

.bp-proof-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.bp-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.75rem);
}

.bp-proof-copy blockquote {
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.bp-proof-copy cite {
  color: var(--gray-700);
  font-size: 0.8rem;
  font-style: normal;
}

.bp-proof-copy .bp-text-link {
  margin-top: 2rem;
  color: var(--cta);
}

.bp-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.bp-fit-intro,
.bp-faq-intro {
  position: sticky;
  top: calc(var(--chrome-h) + 2rem);
}

.bp-fit-intro h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.35vw, 3.65rem);
  font-weight: 300 !important;
  letter-spacing: -0.04em;
}

.bp-fit-intro p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.74;
}

.bp-fit-list {
  border-top: 1px solid var(--gray-300);
}

.bp-fit-item {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.bp-fit-item > span {
  color: var(--teal-ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.bp-fit-item h3 {
  margin: 0 0 0.3rem;
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 600;
}

.bp-fit-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.91rem;
  line-height: 1.66;
}

.bp-intel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--bp-shadow);
}

.bp-intel-number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4rem;
  background: var(--navy);
  color: var(--paper);
}

.bp-intel-number span {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bp-intel-number strong {
  display: block;
  margin-top: 3rem;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bp-intel-number small {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.5;
}

.bp-intel-copy {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.bp-intel-copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300 !important;
  letter-spacing: -0.035em;
}

.bp-intel-copy p {
  margin: 0 0 1.5rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.74;
}

.bp-intel-copy .bp-text-link {
  color: var(--cta);
}

.bp-faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}

.bp-faq-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 300 !important;
  letter-spacing: -0.04em;
}

.bp-faq-list {
  border-top: 1px solid var(--gray-300);
}

.bp-faq-list details {
  border-bottom: 1px solid var(--gray-300);
}

.bp-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1.2rem 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 600;
  list-style: none;
}

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

.bp-faq-list summary::after {
  color: var(--teal-ink);
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
}

.bp-faq-list details[open] summary::after {
  content: '−';
}

.bp-faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 0 1.3rem;
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.74;
  animation: bp-details-in 0.32s var(--bp-ease) both;
}

.bp-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 7vw, 6rem);
  background: var(--navy-deep);
}

.bp-cta::after {
  position: absolute;
  right: -9rem;
  bottom: -17rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(17, 189, 191, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(17, 189, 191, 0.035);
  animation: bp-orbit 24s ease-in-out infinite alternate-reverse;
  content: '';
}

.bp-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.bp-cta h2 {
  max-width: 720px;
  margin: 0 0 0.9rem;
  color: var(--paper);
  font-size: clamp(2.4rem, 4.6vw, 3.85rem);
  font-weight: 300 !important;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.bp-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.72;
}

/* Insights landing page */
.insight-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 8vw, 6.75rem);
  background: linear-gradient(160deg, #0a1628 0%, #10233c 100%);
}

.insight-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.insight-hero h1 {
  max-width: 790px;
  margin: 0 0 1.35rem;
  color: var(--paper);
  font-size: clamp(3.35rem, 6.2vw, 5.35rem);
  font-weight: 300 !important;
  letter-spacing: -0.052em;
  line-height: 1;
}

.insight-hero-copy > p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.08rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.insight-desk {
  padding: 0.3rem 1.35rem 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.insight-desk > span {
  display: block;
  padding: 1.15rem 0 0.85rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-desk a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.4;
}

.insight-desk a > span:first-child {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 600;
}

.insight-desk a > span:last-child {
  transition: transform 0.2s ease;
}

.insight-desk a:hover {
  color: var(--paper);
}

.insight-desk a:hover > span:last-child {
  transform: translateX(4px);
}

.insight-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.76fr);
  gap: 1.25rem;
}

.insight-feature-layout .featured-guide {
  grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1fr);
}

.insight-feature-layout .featured-guide-visual {
  min-height: 450px;
}

.insight-side-features {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.insight-mini-feature {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--bp-ease);
}

.insight-mini-feature > span {
  color: var(--teal-ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-mini-feature h3 {
  margin: 1rem 0 0.7rem;
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.insight-mini-feature p {
  margin: 0 0 1.2rem;
  color: var(--gray-700);
  font-size: 0.91rem;
  line-height: 1.68;
}

.insight-mini-feature .guide-link {
  margin-top: auto;
}

.insight-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  border-radius: 14px;
  overflow: hidden;
}

.insight-path {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: background-color 0.25s ease;
}

.insight-path + .insight-path {
  border-left: 1px solid var(--gray-300);
}

.insight-path > span {
  margin-bottom: 2.8rem;
  color: var(--teal-ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.insight-path h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.insight-path p {
  margin: 0 0 1.2rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
}

.insight-path a {
  margin-top: auto;
  color: var(--cta);
  font-size: 0.8rem;
  font-weight: 600;
}

.insight-research {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: var(--bp-shadow);
}

.insight-research-metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.insight-research-metric span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-research-metric strong {
  margin-top: 4rem;
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.insight-research-copy {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.insight-research-copy h2 {
  margin: 0 0 1rem;
  color: var(--paper);
  font-size: clamp(2.15rem, 4.5vw, 3.6rem);
  font-weight: 300 !important;
  letter-spacing: -0.04em;
}

.insight-research-copy p {
  max-width: 680px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  line-height: 1.74;
}

.insight-research-copy .bp-text-link {
  color: var(--paper);
}

.bp-button:focus-visible,
.bp-text-link:focus-visible,
.guide-link:focus-visible,
.insight-desk a:focus-visible,
.insight-path a:focus-visible,
.bp-faq-list summary:focus-visible {
  outline: 3px solid rgba(17, 189, 191, 0.72);
  outline-offset: 4px;
}

.bp-motion-ready [data-bp-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.56s var(--bp-ease) var(--bp-delay, 0ms),
    transform 0.56s var(--bp-ease) var(--bp-delay, 0ms);
  will-change: opacity, transform;
}

.bp-motion-ready [data-bp-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .bp-principle:hover,
  .bp-step:hover,
  .insight-path:hover {
    background: #f8fbfd;
  }

  .bp-system-card:hover,
  .bp-six-item:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .bp-comparison-row:hover {
    background: #fafcfe;
  }

  .insight-mini-feature:hover {
    border-color: #9ab8b6;
    box-shadow: 0 18px 38px rgba(0, 22, 61, 0.07);
    transform: translateY(-4px);
  }
}

@keyframes bp-orbit {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-1.5rem, 1.25rem, 0) scale(1.025);
  }
}

@keyframes bp-brand-field {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}

@keyframes bp-ambient-breathe {
  from {
    opacity: 0.72;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes bp-details-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .bp-hero-grid,
  .insight-hero-grid,
  .bp-heading,
  .bp-fit-grid,
  .bp-faq {
    grid-template-columns: 1fr;
  }

  .bp-hero-grid {
    min-height: auto;
  }

  .bp-hero-panel {
    max-width: 640px;
    justify-self: start;
  }

  .bp-fit-intro,
  .bp-faq-intro {
    position: static;
  }

  .bp-proof-grid,
  .insight-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-proof-item:nth-child(3) {
    border-left: 0;
  }

  .bp-proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--gray-300);
  }

  .bp-six-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bp-six-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .bp-six-item:nth-child(n + 4) {
    border-top: 0;
  }

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

  .bp-step:nth-child(3) {
    border-left: 0;
  }

  .bp-step:nth-child(n + 3) {
    border-top: 0;
  }

  .insight-feature-layout {
    grid-template-columns: 1fr;
  }

  .insight-side-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .insight-path:nth-child(3) {
    border-left: 0;
  }

  .insight-path:nth-child(n + 3) {
    border-top: 1px solid var(--gray-300);
  }
}

@media (max-width: 760px) {
  .bp-shell {
    width: min(calc(100% - 2rem), 1160px);
  }

  .bp-hero-grid,
  .insight-hero-grid {
    gap: 2.75rem;
    padding-block: 3.6rem;
  }

  .bp-hero-copy h1,
  .insight-hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 3.65rem);
    line-height: 1.01;
  }

  .bp-hero-copy > p,
  .insight-hero-copy > p {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .bp-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.7rem;
  }

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

  .bp-actions .bp-text-link {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .bp-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.8rem;
    margin-top: 1.25rem;
    font-size: 0.76rem;
  }

  .bp-hero-panel {
    width: 100%;
    padding: 1.4rem;
    border-radius: 12px;
  }

  .bp-panel-item {
    grid-template-columns: 1.6rem minmax(0, 1fr);
  }

  .bp-section {
    padding-block: 3.8rem;
  }

  .bp-heading {
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

  .bp-heading h2 {
    font-size: clamp(2.1rem, 10vw, 2.65rem);
  }

  .bp-heading > p {
    max-width: 60ch;
    justify-self: start;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .bp-proof-grid,
  .bp-principles,
  .bp-system-grid,
  .bp-process,
  .bp-proof-story,
  .bp-intel,
  .insight-side-features,
  .insight-paths,
  .insight-research {
    grid-template-columns: 1fr;
  }

  .bp-proof-item + .bp-proof-item,
  .bp-principle + .bp-principle,
  .bp-system-card + .bp-system-card,
  .bp-step + .bp-step,
  .insight-path + .insight-path {
    border-top: 1px solid var(--gray-300);
    border-left: 0;
  }

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

  .bp-proof-item {
    min-height: 132px;
    padding: 1.2rem;
  }

  .bp-proof-item + .bp-proof-item {
    border-left: 1px solid var(--gray-300);
  }

  .bp-proof-item:nth-child(3) {
    border-left: 0;
  }

  .bp-proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--gray-300);
  }

  .bp-proof-item strong {
    font-size: 2.15rem;
  }

  .bp-proof-item span {
    font-size: 0.76rem;
  }

  .bp-system-card + .bp-system-card {
    border-color: rgba(255, 255, 255, 0.18);
  }

  .bp-principle,
  .bp-system-card,
  .bp-step,
  .insight-path {
    min-height: 0;
    padding: 1.5rem;
  }

  .bp-principle > span,
  .bp-system-card > span,
  .bp-step > span,
  .insight-path > span {
    margin-bottom: 1.65rem;
  }

  .bp-principle h3,
  .bp-system-card h3 {
    font-size: 1.3rem;
  }

  .bp-principle p,
  .bp-system-card p,
  .bp-step p {
    font-size: 0.94rem;
  }

  .bp-comparison {
    border: 0;
    background: transparent;
  }

  .bp-comparison-head {
    display: none;
  }

  .bp-comparison-row {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-300);
    background: var(--paper);
  }

  .bp-comparison-row > div + div {
    border-top: 1px solid var(--gray-300);
    border-left: 0;
  }

  .bp-comparison-row > div {
    padding: 1.1rem;
    font-size: 0.92rem;
  }

  .bp-comparison-row > div:nth-child(2)::before,
  .bp-comparison-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--teal-ink);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .bp-comparison-row > div:nth-child(2)::before {
    content: 'Typical recruiting model';
  }

  .bp-comparison-row > div:nth-child(3)::before {
    content: 'Continuum';
  }

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

  .bp-six-item:nth-child(3n) {
    border-right: 0;
  }

  .bp-six-item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .bp-six-item:nth-child(n + 3) {
    border-top: 0;
  }

  .bp-proof-story figure {
    min-height: 300px;
  }

  .bp-proof-story img {
    object-position: center 18%;
  }

  .bp-proof-copy {
    padding: 2rem 1.5rem;
  }

  .bp-proof-copy blockquote {
    font-size: 1.85rem;
  }

  .bp-intel-number,
  .insight-research-metric {
    min-height: 230px;
  }

  .bp-cta-inner {
    grid-template-columns: 1fr;
  }

  .bp-cta .bp-button {
    width: 100%;
  }

  .insight-feature-layout .featured-guide {
    grid-template-columns: 1fr;
  }

  .insight-feature-layout .featured-guide-visual {
    min-height: 230px;
  }

  .insight-research-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .insight-desk {
    padding-inline: 1rem;
  }

  .insight-mini-feature,
  .insight-path {
    padding: 1.4rem;
  }

  .insight-path > span {
    margin-bottom: 1.6rem;
  }

  .bp-cta {
    padding-block: 3.9rem;
  }

  .bp-cta h2 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-button,
  .bp-text-link span,
  .insight-desk a > span:last-child {
    transition: none;
  }

  .bp-hero::before,
  .bp-hero::after,
  .bp-cta::after,
  .insight-hero::before,
  .insight-hero::after,
  .bp-faq-list details p {
    animation: none;
  }

  .bp-motion-ready [data-bp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
