:root {
  --black: #111;
  --ink: #171717;
  --muted: #565656;
  --line: #cfcfcf;
  --paper: #f3f3f3;
  --white: #fff;
  --max: 965px;
}

* {
  box-sizing: border-box;
  font-family: Arial !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f7f6;
  font-family: Arial;
  line-height: 1.35;
  opacity: 1;
  animation: pageFadeIn .28s ease both;
  transition: opacity .24s ease, transform .24s ease;
}

body.page-exit {
  opacity: 0;
  transform: translateY(5px);
}

body.article-page {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}

body.article-page .reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

@keyframes refinedFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes refinedHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introBrandIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px)) scale(.98);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes introRuleIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

html.intro-active,
html.intro-active body {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .08), transparent 30%),
    #111;
  color: var(--white);
  opacity: 1;
  transition: opacity .9s ease, visibility .9s ease;
}

.site-intro::after {
  position: absolute;
  right: 0;
  top: calc(39% + clamp(70px, 8vw, 104px));
  left: 0;
  width: min(260px, 44vw);
  height: 1px;
  margin: auto;
  background: rgba(255, 255, 255, .34);
  transform: scaleX(0);
  transform-origin: center;
  animation: introRuleIn .55s ease .38s both;
  content: "";
}

.site-intro.is-leaving {
  visibility: hidden;
  opacity: 0;
}

.site-intro-brand {
  position: absolute;
  top: 39%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 24px);
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 48px);
  opacity: 0;
  animation: introBrandIn .7s ease .1s both;
}

.site-intro-brand img {
  width: clamp(64px, 7vw, 96px);
  height: clamp(64px, 7vw, 96px);
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 28px rgba(255, 255, 255, .28));
}

.site-intro-brand span {
  color: var(--white);
  font-size: clamp(34px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(255, 255, 255, .16);
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    transition: none;
  }

  body.page-exit {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 51px;
  padding: 0 clamp(20px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--black);
  border-bottom: 0;
  animation: refinedHeaderIn .55s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
  transition: text-shadow .24s ease, opacity .24s ease;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: .78;
  transform: translateY(0);
  transition: opacity .24s ease, filter .24s ease, transform .24s ease;
}

.brand:hover,
.brand:focus-visible {
  text-shadow: 0 0 14px rgba(0, 0, 0, .18), 0 0 28px rgba(0, 0, 0, .08);
}

.brand:hover img,
.brand:focus-visible img {
  opacity: .98;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, .22));
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  font-size: 12px;
}

.site-nav a {
  position: relative;
  padding: 18px 0 15px;
}

.site-nav a::before {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .45;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  content: "";
}

.site-nav a:hover::before {
  transform: scaleX(1);
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--black);
  content: "";
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 315px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #444;
  overflow: hidden;
}

.hero-tall {
  min-height: 315px;
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  animation: refinedFadeUp .75s ease both;
}

.hero h1 {
  max-width: 520px;
  margin: 0 0 10px;
  font-size: clamp(44px, 6.4vw, 72px);
  line-height: .98;
  font-weight: 900;
}

.hero p {
  max-width: 430px;
  margin: 0 0 26px;
  font-size: clamp(16px, 2.2vw, 18px);
}

.hero-kicker {
  margin: 0 0 16px;
  color: #d7d7d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(680px, 55vw);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .78;
  content: "";
  z-index: 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #111 0 41%, rgba(17, 17, 17, .78) 60%, rgba(17, 17, 17, .2)),
    linear-gradient(0deg, rgba(17, 17, 17, .45), transparent 35%);
  content: "";
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.button-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.centered-row {
  justify-content: center;
}

.btn {
  position: relative;
  z-index: 2;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 24px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-outline {
  color: var(--white);
}

.btn-dark-outline {
  color: var(--white);
  background: transparent;
}

.strip,
.stats-pattern,
.subscribe-band,
.cta-pattern {
  background-color: var(--black);
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px max(24px, calc((100vw - var(--max)) / 2));
}

.stats div {
  position: relative;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  border-right: 1px solid #777;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.stats div::before {
  position: absolute;
  right: 24%;
  bottom: 14px;
  left: 24%;
  height: 1px;
  background: rgba(255, 255, 255, .35);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
  content: "";
  pointer-events: none;
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  position: relative;
  font-size: 26px;
  line-height: 1;
  transition: transform .2s ease, text-shadow .2s ease;
}

.stats span {
  position: relative;
  max-width: 165px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: letter-spacing .2s ease, color .2s ease;
}

.stats div:hover {
  background: rgba(255, 255, 255, .025);
  box-shadow: none;
  transform: translateY(-1px);
}

.stats div:hover::before {
  opacity: 1;
  transform: scale(1);
}

.stats div:hover strong {
  text-shadow: none;
  transform: translateY(-1px);
}

.stats div:hover span {
  color: #f2f2f2;
  letter-spacing: .01em;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.about img {
  width: 100%;
  aspect-ratio: 414 / 249;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .12);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 3.2vw, 36px);
  line-height: 1.03;
}

h3,
p {
  margin-top: 0;
}

.section p {
  font-size: 14px;
}

.home-focus-band {
  background: #efefed;
  border-top: 1px solid #dededc;
  border-bottom: 1px solid #dededc;
}

.focus-section {
  padding-top: 40px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-heading-row h2 {
  max-width: 560px;
  margin: 0;
  text-align: right;
  font-size: clamp(24px, 3vw, 34px);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
}

.focus-grid article {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid #c5c5c2;
  background: #f8f8f7;
  text-align: center;
  font-size: 16px;
  line-height: 1.1;
  transition: transform .18s ease, border-color .18s ease;
}

.focus-grid span {
  font-size: 14px;
}

.focus-grid .dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.focus-grid article:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.stats-pattern,
.subscribe-band,
.cta-pattern,
.site-footer {
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, .08), transparent 26%);
  background-size: 42px 42px, 900px 260px;
}

.stats-pattern {
  align-items: stretch;
  background-color: #141414;
}

.stats-pattern div {
  min-height: 112px;
  justify-content: start;
  padding-top: 12px;
}

.stat-svg {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
}

.stats-pattern strong {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-pattern span {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.icon,
.line-icon {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border: 3px solid currentColor;
}

.icon.home {
  border: 0;
  transform: none;
}

.icon.home::before,
.icon.home::after {
  position: absolute;
  content: "";
}

.icon.home::before {
  top: 4px;
  left: 6px;
  width: 21px;
  height: 21px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg);
}

.icon.home::after {
  right: 7px;
  bottom: 2px;
  left: 7px;
  height: 18px;
  border: 3px solid currentColor;
  border-top: 0;
}

.icon.bars,
.icon.building {
  border: 0;
}

.icon.bars::before,
.icon.building::before {
  position: absolute;
  inset: 2px 4px 0;
  background: linear-gradient(90deg, transparent 0 18%, currentColor 18% 28%, transparent 28% 42%, currentColor 42% 52%, transparent 52% 66%, currentColor 66% 76%, transparent 76%);
  border: 3px solid currentColor;
  content: "";
}

.icon.bars::after,
.icon.building::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  content: "";
}

.icon.pin {
  border: 0;
  transform: none;
}

.icon.pin::before,
.icon.pin::after {
  position: absolute;
  content: "";
}

.icon.pin::before {
  top: 1px;
  left: 4px;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon.pin::after {
  top: 10px;
  left: 13px;
  width: 8px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-weight: 700;
  font-size: 13px;
}

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

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

.btn,
.text-link,
.carousel-controls button {
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(210px, .95fr) 1.05fr;
  border: 1px solid var(--line);
  background: #f8f8f7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease, filter .55s ease;
}

.featured-card:hover {
  border-color: #9d9d9d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .07);
}

.featured-card > a {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #111;
}

.featured-card:hover img:not(.insights-art) {
  filter: contrast(1.04);
  transform: scale(1.025);
}

.featured-card > div {
  padding: 18px 22px;
}

.featured-card time {
  font-size: 11px;
  color: var(--muted);
}

.featured-card h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.1;
}

.carousel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.article-carousel > div {
  display: flex;
  flex-direction: column;
}

.article-carousel img,
.article-carousel h3,
.article-carousel p,
.article-carousel time,
.article-carousel .text-link {
  transition: opacity .28s ease, transform .28s ease;
}

.article-carousel.is-switching img,
.article-carousel.is-switching h3,
.article-carousel.is-switching p,
.article-carousel.is-switching time,
.article-carousel.is-switching .text-link {
  opacity: 0;
  transform: translateY(6px);
}

.article-carousel .carousel-actions {
  align-items: flex-end;
  margin-top: auto;
  padding-top: 20px;
  min-height: 48px;
}

.article-carousel a {
  position: relative;
  z-index: 2;
}

.article-carousel .text-link {
  height: 48px;
  min-width: 146px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  line-height: 1;
  white-space: nowrap;
}

.carousel-controls {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  height: 48px;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.carousel-controls button:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.intro-band,
.quote-band {
  padding: 24px;
  background: var(--paper);
  text-align: center;
}

.intro-band p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
}

.principles {
  padding: 14px max(24px, calc((100vw - var(--max)) / 2)) 12px;
  background: var(--black);
  color: var(--white);
}

.principles h2,
.framework h2 {
  text-align: center;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-grid article {
  min-height: 150px;
  padding: 24px 22px;
  border: 1px solid #888;
}

.principle-grid span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-right: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.principle-grid h3 {
  display: inline;
  font-size: 17px;
}

.principle-grid p {
  margin: 14px 0 0;
  font-size: 13px;
}

.framework {
  padding-top: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.steps article {
  position: relative;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps h3 {
  margin: 6px 0 8px;
  font-size: 14px;
}

.steps p {
  font-size: 12px;
}

.steps .icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  border: 0;
}

.investment-focus {
  background: var(--paper);
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  font-size: 13px;
}

th,
td {
  padding: 8px 18px;
  border: 1px solid var(--line);
}

th {
  width: 42%;
  font-weight: 900;
}

.quote-band {
  border-top: 1px solid var(--line);
}

.quote-band span {
  display: block;
  height: 28px;
  font-size: 52px;
  font-weight: 900;
  line-height: .7;
}

.quote-band p {
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.12;
}

.quote-band .button-row {
  padding: 14px;
  margin: 0 -24px -24px;
  background: var(--black);
  background-image: linear-gradient(130deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
}

.approach-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .12), transparent 28%),
    linear-gradient(135deg, #292929 0%, #1f1f1f 46%, #242424 100%);
  color: var(--white);
}

.approach-dark::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .035), transparent 34%);
  background-size: 52px 52px, 100% 100%;
  pointer-events: none;
  content: "";
}

.approach-dark::after {
  position: absolute;
  top: -120px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.approach-dark > * {
  position: relative;
  z-index: 1;
}

.approach-inner {
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
}

.approach-execution {
  padding: 64px 0 58px;
}

.approach-overview {
  padding: 34px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.approach-overview p {
  max-width: 720px;
  margin: 0 auto 4px;
  color: #f0f0f0;
  font-size: 17px;
  line-height: 1.5;
}

.approach-principles {
  padding: 48px 0 58px;
}

.approach-principles h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 46px);
  line-height: 1.05;
}

.approach-execution h1,
.approach-focus h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 46px);
  line-height: 1.05;
}

.section-lead {
  max-width: 640px;
  margin: 0 0 38px;
  color: #d7d7d7;
  font-size: 17px;
}

.execution-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.execution-card-grid article {
  min-height: 286px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  backdrop-filter: blur(2px);
}

.execution-card-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #efefef;
  font-weight: 900;
}

.execution-card-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.15;
}

.execution-card-grid b,
.ownership-mindset b {
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 0 22px;
  background: currentColor;
}

.execution-card-grid p {
  margin: 0;
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.65;
}

.approach-focus {
  padding: 56px 0;
  border-top: 1px solid #333;
  background:
    radial-gradient(circle at 12% 85%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(135deg, #262626 0%, #1e1e1e 52%, #2b2b2b 100%);
}

.focus-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.focus-layout p {
  max-width: 360px;
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.65;
}

.focus-layout p + p {
  margin-top: 28px;
}

.focus-table {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  backdrop-filter: blur(2px);
}

.focus-table div {
  display: grid;
  grid-template-columns: 64px minmax(150px, .85fr) minmax(160px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 86px;
  padding: 18px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.focus-table div:last-child {
  border-bottom: 0;
}

.focus-table svg {
  width: 36px;
  height: 36px;
  color: #e9e9e9;
}

.focus-table strong {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, .20);
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.focus-table span {
  font-size: 19px;
  line-height: 1.22;
}

.ownership-mindset {
  padding: 64px 24px 58px;
  background: #f4f3f2;
  text-align: center;
}

.ownership-mindset .eyebrow {
  margin-bottom: 22px;
}

.ownership-mindset h2 {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(32px, 4vw, 43px);
  line-height: 1.18;
}

.ownership-mindset b {
  width: 188px;
  margin: 0 auto 30px;
  background: var(--black);
}

.ownership-mindset p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.approach-cta {
  position: relative;
  min-height: 282px;
  display: flex;
  align-items: center;
  padding: 52px max(36px, calc((100vw - 1080px) / 2));
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.approach-cta::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, .98) 0 45%, rgba(17, 17, 17, .7) 65%, rgba(17, 17, 17, .35)), var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.approach-cta div {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.approach-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 36px);
}

.approach-cta p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e3e3e3;
  font-size: 16px;
  line-height: 1.55;
}

.news-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f7f6;
  color: var(--black);
}

.news-page .news-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .08) 72%), var(--hero-image);
  background-position: center 42%;
  background-size: cover;
}

.news-page .news-hero::before,
.news-page .news-hero::after {
  display: none;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 52px;
}

.news-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 22px;
}

.news-feature h2 {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: .98;
  letter-spacing: 0;
}

.news-feature > div p:not(.eyebrow) {
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.news-feature article {
  display: grid;
  grid-template-columns: minmax(330px, .92fr) minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .075);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

[data-card-href] {
  cursor: pointer;
}

[data-card-href]:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.news-feature article.text-only-feature {
  display: flex;
  min-height: 350px;
}

.news-feature article:hover {
  border-color: #9d9d9d;
  box-shadow: 0 28px 64px rgba(0, 0, 0, .095);
  transform: translateY(-2px);
}

.news-feature article > a {
  display: block;
  align-self: center;
  background: #111;
}

.news-feature img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.news-feature article:hover img:not(.insights-art) {
  filter: contrast(1.04);
  transform: scale(1.02);
}

.news-feature img.insights-art,
.news-card img.insights-art,
.featured-card img.insights-art {
  background: #111;
  object-fit: contain;
  object-position: center;
}

.news-feature img.insights-art {
  display: block;
  height: auto;
  padding: 0;
}

.news-feature article div {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px 38px;
}

.news-feature .text-only-feature div {
  width: 100%;
  min-height: 0;
  justify-content: center;
  padding: 44px clamp(44px, 5vw, 68px);
}

.news-feature .text-only-feature h3 {
  max-width: 720px;
  font-size: clamp(30px, 2.75vw, 42px);
  line-height: 1.08;
}

.news-feature .text-only-feature span {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
}

.news-feature article p,
.news-feature article span {
  font-size: 13px;
}

.news-feature h3 {
  max-width: 440px;
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.1;
}

.news-feature .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.news-list-head {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 8px 0 24px;
}

.news-list-head h2 {
  max-width: 680px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.tabs button {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
}

.search-box input {
  width: min(255px, 36vw);
  height: 38px;
  padding: 0 14px;
  border: 1px solid #bdbdbd;
  background: var(--white);
  color: var(--black);
}

.search-box input::placeholder {
  color: #666;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 42px;
  padding-bottom: 48px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.news-page .news-card {
  background: var(--white);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.news-page .news-card:hover {
  border-color: var(--black);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.news-card[hidden] {
  display: none;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.news-card:hover img:not(.insights-art) {
  filter: contrast(1.04);
  transform: scale(1.025);
}

.news-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.news-card p,
.news-card span {
  font-size: 13px;
}

.news-card h2 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.08;
}

.news-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.news-window-controls {
  width: min(var(--max), calc(100% - 48px));
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -24px auto 54px;
}

.news-window-controls[hidden] {
  display: none;
}

.news-window-controls button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.news-window-controls button:hover:not(:disabled) {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.news-window-controls button:disabled {
  opacity: .35;
  cursor: default;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 22px;
}

.pagination a,
.pagination span {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 13px;
}

.pagination span {
  border: 0;
}

.pagination .active {
  background: var(--black);
  color: var(--white);
}

.subscribe-band {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 40px;
  align-items: center;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
}

.subscribe-band h2 {
  margin-bottom: 2px;
  font-size: 28px;
}

.subscribe-band p {
  margin: 0;
  font-size: 13px;
}

.subscribe-band form {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 14px;
}

.subscribe-band input,
.subscribe-band button {
  height: 39px;
  padding: 0 16px;
  border: 1px solid #888;
  font: inherit;
}

.subscribe-band input {
  background: transparent;
  color: var(--white);
}

.subscribe-band button {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.news-contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  background-color: var(--black);
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, .08), transparent 26%);
  background-size: 42px 42px, 900px 260px;
  color: var(--white);
}

.news-contact-band h2 {
  margin-bottom: 4px;
  font-size: 27px;
}

.news-contact-band p {
  margin: 0;
  color: #dfdfdf;
  font-size: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 70px;
}

.contact-page .contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 48px;
  align-items: stretch;
  padding-top: 46px;
  padding-bottom: 34px;
}

.contact-copy h2 {
  font-size: clamp(32px, 4vw, 40px);
}

.contact-page .contact-copy {
  padding: 10px 0;
}

.contact-page .contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
}

.contact-list,
.inquiry-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.contact-list li,
.inquiry-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-page .contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 34px;
}

.contact-page .contact-list li {
  min-height: 82px;
  align-items: flex-start;
  margin: 0;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #f7f7f6;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-list strong,
.inquiry-list strong {
  display: block;
  font-weight: 900;
}

.contact-page .contact-list li:hover {
  border-color: #8f8f8f;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
  transform: translateY(-1px);
}

.contact-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 11px;
  margin-top: 1px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #eeeeed);
  color: var(--black);
  stroke-linecap: round;
  stroke-width: 2.5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.contact-page .contact-list li:hover .contact-icon {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.contact-list .line-icon {
  display: none;
}

.reveal-phone {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.line-icon {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
}

.line-icon.pin {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.line-icon.mail {
  border-top: 0;
  transform: translateY(4px);
}

.line-icon.mail::after {
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
  transform: skewY(-30deg);
  content: "";
}

.line-icon.phone {
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 12px 0;
  transform: rotate(35deg);
}

.line-icon.linkedin,
.linkedin {
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 10px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form button {
  min-height: 44px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font: inherit;
}

.email-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 42px;
  border: 1px solid #222;
  background: #151515;
  color: var(--white);
}

.email-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
}

.email-panel p {
  max-width: 420px;
  margin-bottom: 24px;
  color: #e4e4e4;
  font-size: 16px;
}

.btn-dark {
  align-self: flex-start;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 44px;
}

.contact-routes article {
  min-height: 190px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.route-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 20px;
  color: var(--black);
}

.contact-routes h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-routes p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.office-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.office-section img {
  width: 100%;
  aspect-ratio: 425 / 268;
  object-fit: cover;
  object-position: center;
}

.article-hero {
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 56px;
  align-items: start;
}

.article-layout.article-single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.article-body {
  max-width: 800px;
}

.article-body .eyebrow {
  margin-bottom: 14px;
}

.article-body h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.02;
}

.article-body .dek {
  margin-bottom: 28px;
  font-size: 18px;
  color: var(--muted);
}

.article-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 30px;
  object-fit: cover;
  object-position: center;
}

.article-inline-image {
  margin: 34px 0;
}

.article-inline-image img {
  aspect-ratio: auto;
  margin-bottom: 10px;
  background: #f4f4f4;
  object-fit: contain;
}

.article-inline-image figcaption {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

.article-body p {
  font-size: 16px;
}

.article-body #articleContent strong {
  display: block;
  margin-top: 30px;
  font-size: 22px;
}

.article-side {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-side h2 {
  font-size: 20px;
}

.article-side a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.article-side a:last-child {
  border-bottom: 0;
}

.inquiry-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.inquiry-list .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
}

.cta-pattern {
  padding: 28px;
  text-align: center;
}

.cta-pattern h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 29px);
}

.site-footer {
  background-color: #171717;
  color: var(--white);
}

.footer-main {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: .85fr 1.7fr .8fr;
  gap: 40px;
  margin: 0 auto;
  padding: 24px 0;
}

.footer-main address,
.footer-main nav,
.mini-form {
  padding: 0 24px;
  font-size: 13px;
  font-style: normal;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
}

.footer-logo {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: invert(1);
  opacity: .62;
  transition: opacity .18s ease;
}

.footer-brand:hover .footer-logo {
  opacity: 1;
}

.footer-main address,
.mini-form {
  border-right: 1px solid #aaa;
}

.linkedin {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
}

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

.mini-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 10px;
}

.mini-form label {
  display: grid;
  gap: 3px;
  font-size: 11px;
}

.mini-form .wide {
  grid-column: 1 / -1;
}

.mini-form input,
.mini-form textarea {
  width: 100%;
  border: 1px solid #555;
  background: transparent;
  color: var(--white);
}

.mini-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 118px;
  height: 24px;
  border: 0;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
}

.footer-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid #aaa;
  font-size: 13px;
}

.footer-message strong {
  margin-bottom: 10px;
}

.footer-message p {
  max-width: 360px;
  margin: 0 0 14px;
  color: #d6d6d6;
}

.footer-message a {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid #555;
  color: #cfcfcf;
  font-size: 11px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

.privacy-page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.privacy-page h1 {
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
}

.privacy-date {
  margin-bottom: 34px;
  color: var(--muted);
}

.privacy-page h2 {
  margin-top: 30px;
  font-size: 24px;
}

.privacy-page p {
  font-size: 16px;
  line-height: 1.65;
}

.privacy-page a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 820px) {
  .site-header {
    height: 62px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero,
  .hero-tall {
    min-height: 315px;
  }

  .hero::after {
    width: 34vw;
  }

  .stats,
  .principle-grid,
  .steps,
  .news-grid,
  .footer-main,
  .execution-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .article-layout,
  .focus-layout,
  .contact-panel,
  .contact-page .contact-panel,
  .office-section,
  .subscribe-band {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    flex-direction: column;
  }

  .news-feature,
  .news-feature article,
  .news-contact-band {
    grid-template-columns: 1fr;
  }

  .search-box input {
    width: 100%;
  }

  .footer-main address,
  .mini-form,
  .footer-message {
    border-right: 0;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row h2 {
    margin-top: 10px;
    text-align: left;
  }

  .focus-layout {
    gap: 34px;
  }

  .focus-layout p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    font-size: 25px;
  }

  .hero-content,
  .section,
  .footer-main {
    width: calc(100% - 32px);
  }

  .stats,
  .focus-grid,
  .principle-grid,
  .steps,
  .news-grid,
  .footer-main,
  .execution-card-grid,
  .field-row,
  .subscribe-band form {
    grid-template-columns: 1fr;
  }

  .approach-inner {
    width: calc(100% - 32px);
  }

  .approach-execution,
  .approach-focus {
    padding: 40px 0;
  }

  .execution-card-grid article {
    min-height: auto;
  }

  .focus-table div {
    grid-template-columns: 42px 1fr;
    gap: 14px 18px;
    padding: 18px;
  }

  .focus-table strong {
    border-right: 0;
    padding-right: 0;
  }

  .focus-table span {
    grid-column: 2;
    font-size: 17px;
  }

  .ownership-mindset {
    padding: 48px 18px;
  }

  .approach-cta {
    padding: 42px 18px;
  }

  .stats div,
  .steps article {
    border-right: 0;
    border-bottom: 1px solid #777;
  }

  .stats div:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    gap: 28px;
  }

  .contact-page .contact-list,
  .contact-routes {
    grid-template-columns: 1fr;
  }

  .email-panel {
    min-height: auto;
    padding: 30px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Home page v2 */
.home-page {
  background: #f2f2f1;
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 72px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.home-page .site-nav a.active::after {
  background: var(--white);
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, .55);
}

.home-page .nav-toggle span {
  background: var(--white);
}

.home-hero {
  min-height: 620px;
  background: #0f0f0f;
}

.home-hero::after {
  width: 72vw;
  background-position: center;
  opacity: 1;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, .96) 0 27%, rgba(15, 15, 15, .68) 48%, rgba(15, 15, 15, .18) 74%),
    linear-gradient(0deg, rgba(15, 15, 15, .35), transparent 42%);
}

.home-hero .hero-content {
  width: min(1090px, calc(100% - 96px));
  padding-top: 58px;
}

.home-hero h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(54px, 6.4vw, 82px);
  font-weight: 400;
  line-height: 1.02;
}

.home-hero p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.5;
}

.home-hero .btn {
  min-width: 170px;
  min-height: 44px;
  font-size: 13px;
}

.btn-arrow {
  gap: 18px;
}

.home-page .about {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(36px, 1fr) minmax(330px, 405px) minmax(430px, 480px) minmax(36px, 1fr);
  gap: 0;
  padding: 0;
  background: #f5f5f4;
}

.home-page .about > div {
  grid-column: 2;
  padding: 72px 58px 68px 0;
}

.home-page .about img {
  grid-column: 3 / 5;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  box-shadow: none;
  object-fit: cover;
}

.home-page .about h2,
.home-page .news-teaser h2 {
  font-weight: 400;
  letter-spacing: 0;
}

.home-page .about p {
  font-size: 14px;
  line-height: 1.55;
}

.home-focus-band {
  padding: 32px 0 46px;
  background: #efefee;
}

.home-focus-band .section {
  width: min(735px, calc(100% - 48px));
  padding: 0;
}

.home-focus-band .eyebrow {
  margin-bottom: 14px;
  color: #878787;
}

.home-page .focus-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.home-page .focus-grid article {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  padding: 20px 22px 18px;
  border: 1px solid #dededc;
  background: #fafafa;
  font-size: 20px;
}

.home-page .focus-grid article span {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #6f6f6f;
  font-size: 14px;
}

.home-page .focus-grid article strong {
  align-self: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.08;
}

.home-page .focus-grid article b {
  width: 52px;
  height: 1px;
  background: currentColor;
}

.mini-mark {
  width: 24px;
  height: 24px;
  display: block;
  margin-bottom: 10px;
  color: currentColor;
}

.mini-mark::before,
.mini-mark::after {
  display: block;
  content: "";
}

.mini-mark.target {
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fafafa;
}

.dark .mini-mark.target {
  box-shadow: inset 0 0 0 6px var(--black);
}

.mini-mark.bars {
  border-bottom: 1px solid currentColor;
  background: linear-gradient(90deg, transparent 0 22%, currentColor 22% 30%, transparent 30% 46%, currentColor 46% 54%, transparent 54% 70%, currentColor 70% 78%, transparent 78%);
}

.mini-mark.pie {
  border: 1px solid currentColor;
  border-radius: 50%;
  background: conic-gradient(currentColor 0 90deg, transparent 90deg);
}

.mini-mark.people::before {
  width: 18px;
  height: 12px;
  margin: 8px auto 0;
  border: 1px solid currentColor;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.mini-mark.shield {
  border: 1px solid currentColor;
  border-radius: 12px 12px 16px 16px;
}

.mini-mark.trend::before {
  width: 22px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skew(-28deg) translateY(8px);
}

.home-page .stats-pattern {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #090909;
  background-image:
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, .08) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, #0a0a0a, #151515, #0a0a0a);
}

.home-page .stats-pattern div {
  min-height: 110px;
}

.home-page .stats-pattern strong {
  font-size: 31px;
  font-weight: 400;
}

.home-page .news-teaser {
  width: min(1090px, calc(100% - 96px));
  grid-template-columns: 250px 1fr;
  gap: 62px;
  padding: 48px 0;
  background: #f7f7f6;
}

.home-page .home-news-card {
  grid-template-columns: 1.05fr .95fr;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-news-card img {
  min-height: 185px;
}

.home-page .home-news-card div {
  padding: 4px 0 0 34px;
}

.home-page .home-news-card h3 {
  max-width: 330px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 820px) {
  .home-page .site-header {
    position: sticky;
    background: var(--black);
  }

  .home-page .site-nav {
    background: var(--black);
  }

  .home-hero {
    min-height: 540px;
  }

  .home-hero .hero-content,
  .home-page .news-teaser {
    width: calc(100% - 48px);
  }

  .home-page .about {
    grid-template-columns: 1fr;
  }

  .home-page .about > div,
  .home-page .about img {
    grid-column: 1;
  }

  .home-page .about > div {
    padding: 42px 24px;
  }

  .home-page .focus-grid,
  .home-page .news-teaser,
  .home-page .home-news-card {
    grid-template-columns: 1fr;
  }

  .home-page .home-news-card div {
    padding: 24px 0 0;
  }
}

@media (max-width: 560px) {
  .home-hero .hero-content {
    width: calc(100% - 32px);
  }

  .home-hero h1 {
    font-size: 46px;
  }
}

/* Home page V3 concept */
.home-v3 {
  background: var(--white);
}

.home-v3 .site-header {
  position: sticky;
  height: 51px;
  border: 1px solid var(--black);
  border-bottom: 0;
  background: var(--white);
  color: var(--black);
}

.home-v3 .site-nav a.active::after {
  background: var(--black);
}

.home-v3 .hero-tall {
  min-height: 315px;
}

.home-v3 .hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .08) 72%), var(--hero-image);
  background-position: center 42%;
  background-size: cover;
}

.contact-page .hero,
.article-hero,
.privacy-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .08) 72%), var(--hero-image);
  background-position: center 42%;
  background-size: cover;
}

.home-v3 .hero::before,
.home-v3 .hero::after {
  display: none;
}

.contact-page .hero::before,
.contact-page .hero::after,
.article-hero::before,
.article-hero::after,
.privacy-hero::before,
.privacy-hero::after {
  display: none;
}

.home-v3 .hero-content {
  width: min(var(--max), calc(100% - 48px));
  padding-top: 0;
}

.home-v3 .hero h1 {
  max-width: 510px;
  margin-bottom: 10px;
  font-size: clamp(38px, 5.1vw, 58px);
  font-weight: 900;
  line-height: .98;
}

.home-v3 .hero p {
  max-width: 430px;
  font-size: 16px;
}

.home-v3 .strip {
  background: #171717;
}

.home-v3 .section {
  width: min(var(--max), calc(100% - 48px));
  padding: 36px 0;
}

.home-v3 .about {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 76px);
  background: var(--white);
}

.home-v3 .about > div {
  padding: 0;
}

.home-v3 .about img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 414 / 249;
  border: 0;
  box-shadow: none;
}

.home-v3 .about h2,
.home-v3 .news-teaser h2 {
  font-weight: 900;
}

.home-v3 .home-focus-band {
  padding: 38px 0 42px;
  background: #f2f2f1;
  border-top: 1px solid #dededc;
  border-bottom: 1px solid #dededc;
}

.home-v3 .home-focus-band .section {
  width: min(965px, calc(100% - 48px));
  padding: 0;
}

.home-v3 .home-focus-band .eyebrow {
  margin-bottom: 16px;
  text-align: left;
  color: var(--black);
}

.home-v3 .focus-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-v3 .focus-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  line-height: 1.25;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.home-v3 .focus-grid article span {
  position: static;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.home-v3 .focus-grid article strong {
  display: block;
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.home-v3 .focus-grid article p {
  margin: 0;
  color: #424242;
  font-size: 14px;
  line-height: 1.45;
}

.home-v3 .focus-grid article:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.home-v3 .focus-grid article:hover span,
.home-v3 .focus-grid article:hover p {
  color: var(--white);
}

.home-v3 .stats-pattern {
  background-color: var(--black);
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, .08), transparent 26%);
  background-size: 42px 42px, 900px 260px;
}

.home-v3 .stats-pattern strong {
  font-size: 26px;
  font-weight: 900;
}

.home-v3 .news-teaser {
  width: min(var(--max), calc(100% - 48px));
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.65fr);
  gap: 42px;
  padding: 36px 0;
  background: var(--white);
}

.home-v3 .featured-card {
  grid-template-columns: minmax(260px, .95fr) 1.05fr;
  height: 300px;
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
}

.home-v3 .featured-card img {
  display: block;
  height: 100%;
  min-height: 0;
}

.home-v3 .featured-card > a {
  height: 100%;
}

.home-v3 .featured-card img.insights-art {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #111;
}

.home-v3 .featured-card > div {
  height: 300px;
  min-height: 0;
  padding: 18px 22px;
}

.home-v3 .featured-card h3 {
  max-width: none;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .home-v3 .site-header {
    position: sticky;
    background: var(--white);
    color: var(--black);
  }

  .home-v3 .nav-toggle {
    border-color: var(--line);
  }

  .home-v3 .nav-toggle span {
    background: var(--black);
  }

  .home-v3 .site-nav {
    background: var(--white);
  }

  .home-v3 .about,
  .home-v3 .news-teaser,
  .home-v3 .featured-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .home-v3 .featured-card img {
    height: auto;
    min-height: 0;
  }

  .home-v3 .featured-card > div {
    height: auto;
    min-height: 255px;
  }
}

/* Approach page V3 concept */
.approach-v3 {
  background: var(--white);
}

.approach-v3 .site-header {
  position: sticky;
  height: 51px;
  border: 1px solid var(--black);
  border-bottom: 0;
  background: var(--white);
  color: var(--black);
}

.approach-v3 .site-nav a.active::after {
  background: var(--black);
}

.approach-v3-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .08) 72%), var(--hero-image);
  background-position: center 42%;
  background-size: cover;
}

.approach-v3-hero::before,
.approach-v3-hero::after {
  display: none;
}

.approach-v3-hero .hero-content {
  width: min(var(--max), calc(100% - 48px));
  padding-top: 0;
}

.approach-v3-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(36px, 4.6vw, 48px);
  font-weight: 900;
}

.approach-v3-hero p {
  max-width: 390px;
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.approach-v3 .intro-band {
  padding: 24px;
  background: #f7f7f7;
}

.approach-v3 .intro-band p {
  max-width: 720px;
  font-size: 16px;
}

.approach-v3-principles {
  padding-top: 14px;
  padding-bottom: 12px;
  background: #151515;
}

.approach-v3-principles h2 {
  margin-bottom: 8px;
  text-align: center;
  font-size: 26px;
}

.approach-v3 .principle-grid {
  gap: 24px;
}

.approach-v3 .principle-grid article {
  min-height: 150px;
  padding: 20px 22px;
  border-color: #7b7b7b;
  background: transparent;
}

.approach-v3 .principle-grid span {
  width: 44px;
  height: 44px;
  margin-right: 12px;
  font-size: 16px;
}

.approach-v3 .principle-grid h3 {
  font-size: 17px;
}

.approach-v3 .principle-grid p {
  font-size: 13px;
  line-height: 1.55;
}

.approach-v3-framework {
  width: 100%;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  background: var(--white);
}

.approach-v3-framework h2 {
  text-align: center;
  font-size: 25px;
}

.v3-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.v3-steps article {
  position: relative;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.v3-steps article:last-child {
  border-right: 0;
}

.v3-steps article:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: -34px;
  color: var(--black);
  font-size: 24px;
  content: "→";
  z-index: 1;
}

.v3-steps i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 10px 24px rgba(0, 0, 0, .12);
}

.v3-steps svg {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.v3-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.v3-steps h3 {
  margin-bottom: 8px;
  font-size: 14px;
}

.v3-steps p {
  max-width: 170px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.28;
}

.v3-steps p + p {
  margin-top: 8px;
  color: #333;
  font-size: 11px;
}

.approach-v3-investment {
  width: 100%;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  background: #f2f2f2;
}

.approach-v3-investment h2 {
  font-size: 28px;
}

.approach-v3-investment p {
  max-width: 390px;
}

.approach-v3-investment table {
  background: transparent;
}

.approach-v3-quote {
  padding: 14px 24px 0;
  background: #f7f7f7;
}

.approach-v3-quote p {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 400;
}

.approach-v3-quote cite {
  display: block;
  margin: 0 auto 18px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.approach-v3-quote .button-row {
  margin-top: 0;
  background-color: var(--black);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .approach-v3 .principle-grid,
  .v3-steps,
  .approach-v3-investment {
    grid-template-columns: 1fr;
  }

  .v3-steps article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .v3-steps article::after {
    display: none;
  }
}
