/*
Theme Name: Meet Inflection Point
Theme URI: https://meetinflectionpoint.com/
Author: Inflection Point
Description: An editorial, Gutenberg-ready WordPress theme for Inflection Point.
Version: 1.7.1
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: meet-inflection-point
*/

@font-face {
  font-family: "IP Montserrat";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IP Serif";
  src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IP Serif";
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ip-slate: #40464d;
  --ip-deep: #24292e;
  --ip-night: #171b1e;
  --ip-copper: #c47a52;
  --ip-copper-light: #dda07c;
  --ip-cream: #f6f4f2;
  --ip-paper: #fbfaf8;
  --ip-white: #ffffff;
  --ip-muted: #676d72;
  --ip-line: rgba(64, 70, 77, 0.18);
  --ip-line-light: rgba(255, 255, 255, 0.2);
  --ip-shadow: 0 20px 50px rgba(23, 27, 30, 0.08);
  --ip-shell: 1240px;
  --ip-text: 70ch;
  --ip-sans: "IP Montserrat", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ip-serif: "IP Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ip-paper);
  color: var(--ip-slate);
  font-family: var(--ip-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.admin-bar .ip-site-header {
  top: 32px;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--ip-copper);
  color: var(--ip-white);
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--ip-copper-light);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ip-shell,
.wp-site-blocks > :where(.alignwide),
.ip-page-content,
.ip-entry-content > :where(.alignwide) {
  width: min(calc(100% - 48px), var(--ip-shell));
  margin-inline: auto;
}

.ip-entry-content > *:not(.alignwide):not(.alignfull),
.ip-page-content > *:not(.alignwide):not(.alignfull) {
  width: min(calc(100% - 48px), var(--ip-text));
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  margin-inline: 0;
}

.ip-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(36, 41, 46, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.ip-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.ip-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.ip-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.ip-brand-words {
  display: flex;
  flex-direction: column;
  color: var(--ip-white);
  line-height: 1.05;
}

.ip-brand-words strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ip-brand-words small {
  margin-top: 6px;
  padding-top: 5px;
  border-top: 1px solid var(--ip-copper);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.ip-primary-nav {
  margin-left: auto;
}

.ip-menu,
.ip-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.ip-menu li {
  position: relative;
}

.ip-menu a {
  position: relative;
  display: block;
  padding-block: 8px;
  color: var(--ip-white);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.ip-menu > li:not(.menu-item-has-children) > a::after,
.ip-menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--ip-copper);
  transition: right 180ms ease;
}

.ip-menu > li:hover > a::after,
.ip-menu > li:focus-within > a::after,
.ip-menu > li.current-menu-item > a::after,
.ip-menu > li.current-menu-ancestor > a::after {
  right: 0;
}

.ip-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 250px;
  padding: 10px 18px;
  background: var(--ip-deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--ip-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.ip-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.ip-menu li:hover > .sub-menu,
.ip-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ip-menu .sub-menu a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--ip-white);
  font-size: 13px;
}

.ip-menu .sub-menu li:last-child a {
  border-bottom: 0;
}

.ip-header-cta,
.ip-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ip-copper);
  border-radius: 0;
  background: var(--ip-copper);
  color: var(--ip-white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ip-header-cta:hover,
.ip-button:hover,
.wp-block-button__link:hover {
  background: var(--ip-deep);
  border-color: var(--ip-deep);
  color: var(--ip-white);
  transform: translateY(-2px);
}

.ip-header-cta:hover {
  background: var(--ip-white);
  border-color: var(--ip-white);
  color: var(--ip-deep);
}

.ip-button.is-secondary,
.is-style-outline > .wp-block-button__link {
  background: transparent;
  border-color: var(--ip-slate);
  color: var(--ip-slate);
}

.ip-button.is-secondary:hover,
.is-style-outline > .wp-block-button__link:hover {
  background: var(--ip-deep);
  border-color: var(--ip-deep);
  color: var(--ip-white);
}

.ip-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--ip-white);
  cursor: pointer;
}

.ip-menu-toggle span:not(.screen-reader-text),
.ip-menu-toggle::before,
.ip-menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.ip-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text) {
  opacity: 0;
}

.ip-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.ip-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.ip-main {
  min-height: 60vh;
}

.ip-kicker,
.ip-home .ip-eyebrow,
.ip-page-eyebrow {
  margin: 0 0 18px;
  color: var(--ip-copper);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ip-home h1,
.ip-home h2,
.ip-page-hero h1,
.ip-card-title {
  color: var(--ip-deep);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.ip-home h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
}

.ip-home h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.05;
}

.ip-home h3 {
  color: var(--ip-deep);
  font-size: 20px;
  line-height: 1.25;
}

.ip-home p {
  margin-top: 0;
}

.ip-hero {
  min-height: clamp(520px, calc(100svh - 86px), 680px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ip-night);
  background-image:
    linear-gradient(90deg, rgba(23, 27, 30, 0.97) 0%, rgba(23, 27, 30, 0.91) 24%, rgba(23, 27, 30, 0.76) 42%, rgba(23, 27, 30, 0.5) 60%, rgba(23, 27, 30, 0.2) 80%, rgba(23, 27, 30, 0.04) 100%),
    url("assets/images/hero/chess-strategy-copper-v2.jpg");
  background-position: center;
  background-size: cover;
  color: var(--ip-white);
}

.ip-hero .ip-shell {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: clamp(52px, 7vw, 84px);
}

.ip-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.ip-hero-copy .ip-eyebrow {
  color: var(--ip-copper-light);
}

.ip-hero-copy h1 {
  color: var(--ip-white);
}

.ip-definition {
  margin: 0;
}

.ip-definition-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 22px;
}

.ip-hero-copy .ip-definition-term {
  margin: 0;
  color: var(--ip-white);
  font-family: var(--ip-sans);
  font-size: clamp(72px, 7.2vw, 100px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.ip-definition-type {
  margin-bottom: 4px;
  color: var(--ip-copper-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ip-definition-pronunciation {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.ip-definition-list {
  max-width: 830px;
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
  counter-reset: ip-definition;
}

.ip-definition-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: ip-definition;
}

.ip-definition-list li + li {
  margin-top: 0;
}

.ip-definition-list li::before {
  padding-top: 0.28em;
  color: var(--ip-copper-light);
  content: counter(ip-definition) ".";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ip-hero-copy .ip-definition-meaning {
  display: block;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.48;
}

.ip-definition-work {
  display: block;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.48;
}

.ip-hero .ip-actions {
  margin-top: 30px;
}

.ip-hero-copy > p:not(.ip-eyebrow) {
  max-width: 750px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
}

body.admin-bar .ip-hero {
  min-height: clamp(500px, calc(100svh - 118px), 648px);
}

.ip-hero .ip-button.is-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ip-white);
}

.ip-hero .ip-button.is-secondary:hover {
  background: var(--ip-white);
  border-color: var(--ip-white);
  color: var(--ip-deep);
}

.ip-hero-visual {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.ip-hero-visual::before {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -14px;
  width: 54%;
  height: 54%;
  border-top: 2px solid var(--ip-copper);
  border-right: 2px solid var(--ip-copper);
  content: '';
  pointer-events: none;
}

.ip-hero-portrait-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  background: var(--ip-paper);
  box-shadow: var(--ip-shadow);
}

.ip-hero-portrait {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ip-slate);
}

.ip-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter 200ms ease, transform 200ms ease;
}

.ip-hero-portrait:nth-child(1) img,
.ip-hero-portrait:nth-child(2) img {
  object-position: center top;
}

.ip-hero-visual:hover .ip-hero-portrait img,
.ip-hero-visual:focus-visible .ip-hero-portrait img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.025);
}

.ip-hero-visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--ip-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.ip-credibility {
  background: var(--ip-paper);
  border-top: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
}

.ip-credibility-heading {
  padding-block: 18px 12px;
}

.ip-credibility-heading .ip-eyebrow {
  margin: 0;
  padding: 0;
  font-size: 19px;
}

.ip-credibility-heading h2 {
  display: none;
}

.ip-media-showcase {
  padding-bottom: 0;
}

.ip-media-row + .ip-media-row {
  margin-top: 42px;
}

.ip-media-row-heading {
  padding-bottom: 17px;
}

.ip-media-row-heading .ip-eyebrow {
  margin: 0;
  color: var(--ip-copper);
}

.ip-media-marquee {
  overflow: hidden;
  border-top: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
}

.ip-media-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ip-media-row.is-team .ip-media-track {
  animation: ip-media-left 24s linear infinite;
}

.ip-media-row.is-clients .ip-media-track {
  animation: ip-media-right 26s linear infinite;
}

.ip-media-marquee:hover .ip-media-track,
.ip-media-marquee:focus-within .ip-media-track {
  animation-play-state: paused;
}

.ip-media-group {
  display: flex;
  flex: none;
}

.ip-media-logo {
  display: grid;
  width: 190px;
  min-height: 70px;
  margin: 0;
  padding: 12px 26px;
  place-items: center;
  border-right: 1px solid var(--ip-line);
  background: var(--ip-paper);
}

.ip-media-row.is-clients .ip-media-logo {
  width: 218px;
  min-height: 116px;
  padding: 27px 32px;
}

.ip-media-logo img {
  display: block;
  width: 100%;
  max-width: 138px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(0.78);
  opacity: 0.76;
  transform: scale(1);
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.ip-media-logo.is-cropped-source {
  overflow: hidden;
}

.ip-media-logo.is-cropped-source img {
  width: 166px;
  max-width: none;
  height: 166px;
  flex: none;
}

.ip-media-logo:hover img {
  filter: grayscale(0) saturate(1.18) contrast(1.04);
  opacity: 1;
  transform: scale(1.14);
}

@keyframes ip-media-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes ip-media-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.ip-whole-model {
  position: relative;
  overflow: hidden;
  background: var(--ip-night);
  color: var(--ip-paper);
}

.ip-whole-model::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: '';
}

.ip-whole-model-grid {
  display: grid;
  grid-template-columns: minmax(170px, 2.4fr) minmax(0, 9.6fr);
  gap: clamp(38px, 5vw, 72px);
  padding-block: clamp(48px, 5.5vw, 68px);
}

.ip-whole-model .ip-eyebrow {
  align-self: start;
  padding-top: 11px;
  color: var(--ip-copper-light);
  font-size: 12px;
}

.ip-whole-model-content {
  max-width: 900px;
}

.ip-whole-model h2 {
  margin: 0;
  color: var(--ip-paper);
  font-family: var(--ip-sans);
  font-size: clamp(60px, 6.1vw, 90px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.ip-whole-model h2.is-fragmented {
  max-width: 860px;
  color: var(--ip-copper-light);
  font-family: var(--ip-serif);
  font-size: clamp(50px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.ip-whole-model h2 em {
  display: inline-block;
  margin-top: 0.15em;
  color: var(--ip-copper);
  font-family: var(--ip-serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.ip-whole-model-content > p {
  max-width: 900px;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  color: rgba(251, 250, 248, 0.66);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.42;
}

.ip-whole-model-content > p + p {
  margin-top: 12px;
}

.ip-whole-model-content > p strong {
  color: var(--ip-paper);
}

.ip-model-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 254px;
  margin-top: 30px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(251, 250, 248, 0.8);
  color: var(--ip-paper);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.ip-model-link span:last-child {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 2px;
  background: var(--ip-copper);
  color: var(--ip-paper);
  font-size: 12px;
  transition: transform 180ms ease;
}

.ip-model-link:hover span:last-child,
.ip-model-link:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.ip-numbers {
  background: var(--ip-deep);
  color: var(--ip-white);
}

.ip-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ip-number {
  min-height: 154px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--ip-line-light);
}

.ip-number:last-child {
  border-right: 0;
}

.ip-number strong {
  color: var(--ip-copper-light);
  font-family: var(--ip-serif);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.ip-number span {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ip-section {
  padding-block: clamp(76px, 9vw, 120px);
}

.ip-section.is-cream {
  background: var(--ip-cream);
}

.ip-section.is-white {
  background: var(--ip-white);
}

.ip-two-column {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.ip-two-column > :last-child {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid var(--ip-copper);
}

.ip-two-column > :last-child p {
  max-width: 650px;
  color: var(--ip-muted);
  font-size: 18px;
}

.ip-two-column > :last-child p:last-child {
  margin-bottom: 0;
  color: var(--ip-deep);
  font-weight: 650;
}

.ip-return {
  padding-block: clamp(48px, 6vw, 72px);
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-return-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.ip-return h2,
.ip-final-cta h2 {
  color: var(--ip-white);
}

.ip-return p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.ip-three-grid,
.ip-engagement-modes,
.ip-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
}

.ip-three-grid article,
.ip-engagement-modes article {
  min-height: 230px;
  padding: 34px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--ip-line);
}

.ip-three-grid article:first-child,
.ip-engagement-modes article:first-child {
  padding-left: 0;
}

.ip-three-grid article:last-child,
.ip-engagement-modes article:last-child {
  border-right: 0;
}

.ip-three-grid h3,
.ip-engagement-modes h3 {
  margin-top: 0;
  color: var(--ip-deep);
  font-size: 24px;
}

.ip-three-grid p,
.ip-engagement-modes p {
  color: var(--ip-muted);
}

.ip-market-section {
  padding-block: clamp(52px, 5.5vw, 72px);
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-market-section .ip-eyebrow {
  color: var(--ip-copper-light);
}

.ip-market-section h2 {
  max-width: 980px;
  color: var(--ip-white);
  font-size: clamp(40px, 4.5vw, 62px);
}

.ip-market-intro {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2vw, 21px);
}

.ip-market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 3vw, 38px);
}

.ip-market-card {
  min-height: 310px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #0e1215;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ip-white);
  text-decoration: none;
}

.ip-market-card figure,
.ip-market-card figure::after {
  position: absolute;
  inset: 0;
  margin: 0;
}

.ip-market-card figure::after {
  content: "";
  background: linear-gradient(180deg, rgba(13, 17, 20, 0.08) 18%, rgba(13, 17, 20, 0.42) 58%, rgba(13, 17, 20, 0.96) 100%);
}

.ip-market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02) brightness(0.76);
  transition: filter 260ms ease, transform 400ms ease;
}

.ip-market-card-copy {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(12, 16, 20, 0.02) 30%, rgba(12, 16, 20, 0.9) 100%);
  transition: background 220ms ease;
}

.ip-market-card h3 {
  margin: 0;
  color: var(--ip-white);
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.08;
}

.ip-market-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 240ms ease, margin 240ms ease, opacity 180ms ease, transform 240ms ease;
}

.ip-market-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--ip-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 240ms ease, margin 240ms ease, opacity 180ms ease, transform 240ms ease;
}

.ip-market-card-link::after {
  content: "\2192";
  color: var(--ip-copper-light);
  transition: transform 180ms ease;
}

.ip-market-card:hover img,
.ip-market-card:focus-visible img {
  filter: saturate(0.92) contrast(1.03) brightness(0.88);
  transform: scale(1.025);
}

.ip-market-card:hover .ip-market-card-copy,
.ip-market-card:focus-visible .ip-market-card-copy {
  background: rgba(12, 16, 20, 0.91);
}

.ip-market-card:hover p,
.ip-market-card:focus-visible p {
  max-height: 110px;
  margin-top: 12px;
  opacity: 1;
  transform: none;
}

.ip-market-card:hover .ip-market-card-link,
.ip-market-card:focus-visible .ip-market-card-link {
  max-height: 28px;
  margin-top: 15px;
  opacity: 1;
  transform: none;
}

.ip-market-card:hover .ip-market-card-link::after,
.ip-market-card:focus-visible .ip-market-card-link::after {
  transform: translateX(4px);
}

.ip-hire-section,
.ip-offer-section {
  padding-block: clamp(62px, 7vw, 96px);
}

.ip-hire-section {
  padding-block: clamp(42px, 4.2vw, 60px);
  background: var(--ip-cream);
}

.ip-hire-section .ip-home-section-heading {
  grid-template-columns: minmax(150px, 2.3fr) minmax(0, 9.7fr);
  gap: clamp(28px, 4vw, 58px);
}

.ip-hire-section .ip-home-section-heading h2 {
  max-width: 980px;
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 0.98;
}

.ip-offer-section {
  background: var(--ip-paper);
  border-block: 1px solid var(--ip-line);
}

.ip-home-section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 3fr) minmax(0, 9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.ip-home-section-heading h2 {
  max-width: 900px;
}

.ip-hire-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--ip-line);
  border-left: 1px solid var(--ip-line);
}

.ip-hire-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 2.4vw, 34px);
  border-right: 1px solid var(--ip-line);
  border-bottom: 1px solid var(--ip-line);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.ip-hire-card:hover,
.ip-hire-card:focus-visible {
  background: var(--ip-white);
}

.ip-hire-number {
  color: var(--ip-copper);
  font-family: var(--ip-serif);
  font-size: 30px;
  line-height: 1;
}

.ip-hire-card h3 {
  margin: 0 0 12px;
  color: var(--ip-deep);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.ip-hire-card p {
  max-width: 54ch;
  margin: 0;
  color: var(--ip-muted);
  font-size: 15px;
  line-height: 1.48;
}

.ip-hire-card .ip-card-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ip-deep);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ip-hire-card .ip-card-action::after {
  content: "\2192";
  margin-left: 10px;
  color: var(--ip-copper);
}

.ip-offer-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ip-muted);
  font-size: 19px;
}

.ip-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(38px, 5vw, 64px);
}

.ip-offer-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 112px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--ip-white);
  border: 1px solid var(--ip-line);
  box-shadow: 0 18px 50px rgba(23, 27, 30, 0.04);
}

.ip-offer-index {
  margin: 0 0 22px;
  color: var(--ip-copper);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ip-offer-card h3 {
  margin: 0;
  color: var(--ip-deep);
  font-family: var(--ip-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.ip-offer-commission {
  margin: 24px 0 0;
  color: var(--ip-slate);
  font-size: 18px;
  line-height: 1.55;
}

.ip-offer-best {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--ip-line);
  color: var(--ip-muted);
  font-size: 15px;
  line-height: 1.5;
}

.ip-offer-best strong,
.ip-offer-proof > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ip-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ip-offer-proof {
  margin-top: 28px;
}

.ip-offer-proof a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--ip-line);
  color: var(--ip-deep);
  text-decoration: none;
}

.ip-offer-proof a:first-of-type {
  border-top: 1px solid var(--ip-line);
}

.ip-offer-proof a span:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.ip-offer-proof a span:last-child {
  color: var(--ip-muted);
  font-size: 13px;
  white-space: nowrap;
}

.ip-offer-proof a:hover span:first-child,
.ip-offer-proof a:focus-visible span:first-child {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.ip-offer-card > .ip-text-link {
  margin-top: auto;
  padding-top: 30px;
}

.ip-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 28px;
  color: var(--ip-deep);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.ip-text-link::after {
  content: "→";
  color: var(--ip-copper);
  transition: transform 180ms ease;
}

.ip-text-link:hover::after {
  transform: translateX(4px);
}

.ip-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(240px, 4fr);
  gap: 48px;
  align-items: end;
}

.ip-team-section {
  padding-block: clamp(40px, 4.5vw, 50px);
}

.ip-team-section .ip-section-heading {
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: clamp(32px, 4vw, 56px);
}

.ip-team-section .ip-section-heading h2 {
  max-width: 880px;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 0.98;
}

.ip-team-section .ip-section-heading > p {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.55;
}

.ip-team-section .ip-team-grid {
  gap: 14px;
  margin-top: 30px;
}

.ip-team-section .ip-team-card figure {
  aspect-ratio: 1 / 0.92;
  margin-bottom: 13px;
}

.ip-team-section .ip-text-link {
  margin-top: 20px;
}

.ip-section-heading > p {
  color: var(--ip-muted);
}

.ip-team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.ip-team-card {
  color: inherit;
  text-decoration: none;
}

.ip-team-card figure {
  aspect-ratio: 4 / 5;
  margin: 0 0 19px;
  overflow: hidden;
  background: #ddd8d4;
}

.ip-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 220ms ease, transform 220ms ease;
}

.ip-team-card[href*="#julie-wohlberg"] img,
.ip-team-card[href*="#kevin-laird"] img,
.ip-team-card[href*="#chris-heuer"] img,
.ip-team-card[href*="#john-biggs"] img,
.ip-team-card[href*="#mark-rizzn-hopkins"] img,
.ip-profile#julie-wohlberg img,
.ip-profile#kevin-laird img,
.ip-profile#chris-heuer img,
.ip-profile#john-biggs img,
.ip-profile#mark-rizzn-hopkins img {
  object-position: center top;
  transform-origin: center top;
}

.ip-team-card:hover img,
.ip-team-card:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.ip-team-card h3 {
  margin: 0 0 5px;
  font-size: 22px;
}

.ip-team-card .ip-person-title,
.ip-team-card .ip-person-focus {
  margin: 0;
  color: var(--ip-muted);
  font-size: 10px;
  line-height: 1.5;
}

.ip-team-card .ip-person-title {
  color: var(--ip-copper);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.ip-engagement-copy {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 110px);
}

.ip-engagement-copy > :last-child {
  max-width: 650px;
  color: var(--ip-muted);
  font-size: 18px;
}

.ip-process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: 0;
}

.ip-home-process {
  padding-block: clamp(50px, 5.5vw, 70px);
}

.ip-home-process > .ip-shell > h2 {
  max-width: 1040px;
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1;
}

.ip-home-process .ip-process-grid {
  margin-top: clamp(28px, 3vw, 38px);
}

.ip-home-process .ip-process-card {
  min-height: 218px;
  padding: 24px;
}

.ip-home-process .ip-process-card .ip-step {
  margin-bottom: 22px;
  font-size: 30px;
}

.ip-home-process .ip-process-card h3 {
  margin-bottom: 10px;
}

.ip-home-process .ip-process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.48;
}

.ip-home-process .ip-text-link {
  margin-top: 20px;
}

.ip-proof-section {
  padding-block: clamp(48px, 5vw, 66px);
  background: #20272c;
  color: var(--ip-white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ip-proof-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 52px);
  align-items: end;
  margin-bottom: clamp(24px, 2.6vw, 34px);
}

.ip-proof-heading .ip-eyebrow,
.ip-proof-card .ip-kicker {
  color: var(--ip-copper-light);
}

.ip-proof-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ip-white);
  font-size: clamp(38px, 3.7vw, 54px);
}

.ip-proof-controls {
  display: flex;
  gap: 10px;
}

.ip-proof-control {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: transparent;
  color: var(--ip-white);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ip-proof-control:hover,
.ip-proof-control:focus-visible {
  border-color: var(--ip-copper-light);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ip-copper-light);
}

.ip-proof-control:disabled {
  cursor: default;
  opacity: 0.34;
}

.ip-proof-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.ip-proof-grid::-webkit-scrollbar {
  display: none;
}

.ip-proof-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 26px clamp(22px, 2.2vw, 30px) 25px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  scroll-snap-align: start;
  transition: background-color 200ms ease;
}

.ip-proof-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.ip-proof-card .ip-kicker {
  min-height: 34px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.45;
}

.ip-proof-card h3 {
  min-height: 64px;
  margin: 0;
  color: var(--ip-white);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.08;
}

.ip-proof-metric {
  display: block;
  margin: 24px 0 8px;
  color: var(--ip-white);
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.ip-proof-metric.is-long {
  font-size: clamp(44px, 4.5vw, 68px);
  letter-spacing: -0.055em;
}

.ip-proof-card > p:not(.ip-kicker) {
  flex: 1;
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.ip-proof-card .ip-text-link {
  align-self: flex-start;
  color: var(--ip-copper-light);
  font-size: 13px;
}

.ip-process-engagement {
  margin-top: clamp(80px, 9vw, 120px);
  padding: clamp(54px, 6vw, 78px);
  background: var(--ip-cream);
  border-block: 1px solid var(--ip-line);
}

.ip-process-engagement .ip-engagement-modes {
  margin-top: 42px;
}

.ip-process-card {
  min-height: 310px;
  padding: 30px;
  background: var(--ip-paper);
  border: 1px solid var(--ip-line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.ip-process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 122, 82, 0.5);
  box-shadow: var(--ip-shadow);
}

.ip-process-card .ip-step {
  display: block;
  margin-bottom: 50px;
  color: var(--ip-copper);
  font-family: var(--ip-serif);
  font-size: 34px;
}

.ip-process-card h3 {
  margin: 0 0 16px;
}

.ip-process-card p {
  color: var(--ip-muted);
  font-size: 15px;
}

.ip-final-cta {
  padding-block: clamp(72px, 8vw, 102px);
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-final-cta h2 {
  color: var(--ip-copper-light);
  font-family: var(--ip-serif);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.ip-final-cta .ip-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(48px, 7vw, 100px);
  align-items: end;
}

.ip-final-cta-copy > p:not(.ip-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
}

.ip-final-cta-copy > p.ip-cta-next {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.ip-final-cta > .ip-shell > .ip-button {
  min-width: 236px;
  justify-content: center;
  white-space: nowrap;
}

.ip-page-hero {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding-block: 70px 58px;
  background: var(--ip-paper);
  border-bottom: 1px solid var(--ip-line);
}

.ip-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ip-copper);
  font-family: var(--ip-serif);
  font-size: clamp(58px, 7.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.ip-page-eyebrow {
  color: var(--ip-deep);
}

.ip-page-hero p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ip-slate);
  font-size: 19px;
}

.ip-page-content,
.ip-entry-content {
  padding-block: clamp(70px, 9vw, 110px);
}

.ip-case-article-header {
  padding-block: clamp(76px, 9vw, 118px) clamp(62px, 8vw, 96px);
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-case-article-header .ip-page-eyebrow {
  color: var(--ip-copper-light);
}

.ip-case-article-header h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--ip-white);
  font-size: clamp(54px, 7.4vw, 94px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.ip-case-article-header h1 + p {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}

.ip-case-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ip-case-featured-image {
  aspect-ratio: 16 / 8;
  margin-top: 0;
  overflow: hidden;
  background: var(--ip-cream);
}

.ip-case-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-case-source,
.ip-case-article-body {
  width: min(calc(100% - 48px), 760px);
  margin-inline: auto;
}

.ip-case-source {
  margin-bottom: 44px;
  padding: 20px 24px;
  background: var(--ip-cream);
  border-left: 3px solid var(--ip-copper);
  color: var(--ip-muted);
  font-size: 14px;
}

.ip-case-source p {
  margin: 0;
}

.ip-case-article-body {
  color: var(--ip-slate);
  font-size: 18px;
}

.ip-case-article-body > :first-child {
  margin-top: 0;
}

.ip-case-article-body h2 {
  margin-top: 58px;
  font-size: clamp(34px, 4vw, 50px);
}

.ip-case-article-body h3 {
  margin-top: 38px;
  color: var(--ip-deep);
  font-size: 25px;
}

.ip-case-cta {
  margin-top: clamp(72px, 9vw, 112px);
  padding: clamp(38px, 6vw, 68px);
  background: var(--ip-deep);
  color: var(--ip-white);
}

.ip-case-cta .ip-page-eyebrow {
  color: var(--ip-copper-light);
}

.ip-entry-content .ip-case-cta h2 {
  max-width: 840px;
  margin: 0;
  color: var(--ip-white);
}

.ip-case-cta > p:not(.ip-page-eyebrow) {
  max-width: 700px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.ip-page-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.ip-page-content h2,
.ip-entry-content h2 {
  color: var(--ip-deep);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.ip-team-directory {
  display: grid;
  gap: 86px;
}

.ip-profile {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  gap: clamp(42px, 7vw, 92px);
  scroll-margin-top: 120px;
}

.ip-profile figure {
  position: sticky;
  top: 120px;
  align-self: start;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--ip-cream);
}

.ip-profile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-profile h2 {
  margin: 0 0 8px;
}

.ip-profile-meta {
  margin: 0 0 26px;
  color: var(--ip-copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ip-profile-content {
  color: var(--ip-muted);
}

.ip-profile-content > p:first-child {
  color: var(--ip-deep);
  font-size: 20px;
}

.ip-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ip-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.ip-page-content > .ip-card-grid.is-industry-grid {
  width: min(calc(100vw - 48px), 1560px);
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.ip-page-content > .ip-card-grid.is-case-grid {
  width: min(calc(100vw - 48px), var(--ip-shell));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: 50%;
  transform: translateX(-50%);
}

.ip-card-grid.is-case-grid .ip-card-copy {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ip-card-grid.is-case-grid .ip-card-copy h2 {
  margin-bottom: 0;
}

.ip-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--ip-white);
  border: 1px solid var(--ip-line);
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ip-shadow);
}

.ip-card figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--ip-cream);
}

.ip-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.12);
  transition: filter 200ms ease, transform 200ms ease;
}

.ip-card:hover figure img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.ip-card-copy {
  padding: 26px;
}

.ip-card-copy .ip-kicker {
  margin-bottom: 10px;
}

.ip-card-copy h2,
.ip-card-copy h3 {
  margin: 0 0 12px;
  color: var(--ip-deep);
  font-size: 23px;
  line-height: 1.2;
}

.ip-card-copy p {
  margin: 0;
  color: var(--ip-muted);
  font-size: 15px;
}

.ip-case-sections {
  width: min(calc(100% - 48px), var(--ip-shell));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
}

.ip-case-story-grid {
  width: min(calc(100vw - 48px), var(--ip-shell));
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 0 50%;
  border: 1px solid var(--ip-line);
  transform: translateX(-50%);
}

.ip-case-story-grid > .wp-block-group__inner-container {
  display: contents;
}

.ip-case-story-panel {
  min-width: 0;
  padding: clamp(30px, 3.5vw, 48px);
  border-right: 1px solid var(--ip-line);
}

.ip-case-story-panel:last-child {
  border-right: 0;
}

.ip-case-story-panel .ip-case-step {
  margin: 0 0 34px;
  color: var(--ip-copper);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ip-case-story-panel h2,
.ip-case-article-body .ip-case-story-panel h2 {
  margin: 0 0 20px;
  color: var(--ip-deep);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.ip-case-story-panel p:not(.ip-case-step),
.ip-case-story-panel li {
  color: var(--ip-muted);
  font-size: 16px;
  line-height: 1.6;
}

.ip-case-story-panel p:last-child,
.ip-case-story-panel ul:last-child {
  margin-bottom: 0;
}

.ip-case-story-panel ul {
  padding-left: 20px;
}

.ip-case-sections section {
  padding: 30px;
  background: var(--ip-cream);
  border-top: 2px solid var(--ip-copper);
}

.ip-case-sections h2 {
  margin-top: 0;
  font-size: 30px;
}

.ip-case-sections ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ip-muted);
}

.ip-case-sections li + li {
  margin-top: 12px;
}

.ip-contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(50px, 8vw, 110px);
}

.ip-contact-details {
  padding: 34px;
  background: var(--ip-cream);
}

.ip-contact-details a {
  color: var(--ip-deep);
  font-weight: 650;
}

.ip-infographic-heading {
  max-width: 900px;
}

.ip-infographic-heading h2,
.ip-why-intro h2,
.ip-process-intro h2,
.ip-process-rhythm h2,
.ip-inline-cta h2,
.ip-presence h2 {
  margin: 0;
}

.ip-infographic-heading > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ip-muted);
  font-size: 18px;
}

.ip-why-intro,
.ip-process-intro,
.ip-process-rhythm {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(300px, 5fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
}

.ip-why-intro > div:last-child,
.ip-process-intro > div:last-child,
.ip-process-rhythm > p {
  color: var(--ip-muted);
  font-size: 19px;
}

.ip-why-intro > div:last-child p:first-child,
.ip-process-intro > div:last-child p:first-child {
  margin-top: 0;
}

.ip-why-intro > div:last-child p:last-child,
.ip-process-intro > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--ip-deep);
  font-weight: 650;
}

.ip-why-infographic {
  margin-top: clamp(80px, 9vw, 124px);
  padding-block: clamp(86px, 9vw, 126px);
  background: var(--ip-cream);
  border-block: 1px solid var(--ip-line);
}

.ip-decision-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.ip-decision-flow article {
  position: relative;
  min-height: 270px;
  padding: 28px 24px;
  background: var(--ip-white);
  border-top: 3px solid var(--ip-copper);
  box-shadow: 0 16px 40px rgba(23, 27, 30, 0.06);
}

.ip-decision-flow article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ip-copper);
  color: var(--ip-white);
  content: "→";
  transform: translateY(-50%);
}

.ip-decision-flow span,
.ip-output-grid span,
.ip-principle-grid strong {
  color: var(--ip-copper);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.ip-decision-flow h3 {
  margin: 48px 0 14px;
  color: var(--ip-deep);
  font-size: 22px;
  line-height: 1.18;
}

.ip-decision-flow p {
  margin: 0;
  color: var(--ip-muted);
  font-size: 15px;
}

.ip-why-principles,
.ip-process-outputs {
  margin-top: clamp(90px, 10vw, 132px);
}

.ip-principle-grid,
.ip-output-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  border-block: 1px solid var(--ip-line);
}

.ip-principle-grid article,
.ip-output-grid article {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--ip-line);
}

.ip-principle-grid article:first-child,
.ip-output-grid article:first-child {
  padding-left: 0;
}

.ip-principle-grid article:last-child,
.ip-output-grid article:last-child {
  border-right: 0;
}

.ip-principle-grid h3,
.ip-output-grid h3 {
  margin: 40px 0 14px;
  color: var(--ip-deep);
  font-size: 22px;
}

.ip-principle-grid p,
.ip-output-grid p {
  color: var(--ip-muted);
  font-size: 15px;
}

.ip-model-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(84px, 9vw, 120px);
}

.ip-model-compare > div {
  min-height: 410px;
  padding: clamp(34px, 5vw, 62px);
}

.ip-model-compare .is-fragmented {
  background: var(--ip-cream);
}

.ip-model-compare .is-integrated {
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-model-compare h3 {
  max-width: 440px;
  margin: 26px 0 34px;
  color: var(--ip-deep);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.ip-model-compare .is-integrated h3 {
  color: var(--ip-white);
}

.ip-model-compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-model-compare li {
  padding: 14px 0;
  border-top: 1px solid var(--ip-line);
}

.ip-model-compare .is-integrated li {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.ip-inline-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: clamp(84px, 9vw, 120px);
  padding: 38px 0;
  border-block: 1px solid var(--ip-line);
}

.ip-process-infographic {
  margin-top: clamp(80px, 9vw, 124px);
  padding-block: clamp(88px, 10vw, 134px);
  background: var(--ip-night);
  color: var(--ip-white);
}

.ip-infographic-heading.is-light h2 {
  color: var(--ip-white);
}

.ip-infographic-heading.is-light > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.ip-process-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ip-process-journey article {
  position: relative;
  min-height: 455px;
  padding: 62px 30px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.ip-process-journey article:first-child {
  padding-left: 0;
}

.ip-process-journey article:last-child {
  border-right: 0;
}

.ip-phase-number {
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ip-copper);
  color: var(--ip-white);
  font-size: 11px;
  font-weight: 750;
}

.ip-process-journey h3 {
  margin: 20px 0;
  color: var(--ip-copper-light);
  font-family: var(--ip-serif);
  font-size: clamp(36px, 3.7vw, 52px);
  font-weight: 400;
}

.ip-process-journey p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.ip-process-journey ul {
  margin: 28px 0 0;
  padding: 0;
  color: var(--ip-white);
  font-size: 13px;
  list-style: none;
}

.ip-process-journey li {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ip-process-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ip-process-signal i {
  color: var(--ip-copper-light);
  font-style: normal;
}

.ip-process-signal strong {
  color: var(--ip-copper-light);
}

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

.ip-process-rhythm {
  margin-top: clamp(80px, 9vw, 116px);
  padding: clamp(40px, 6vw, 70px);
  background: var(--ip-cream);
}

.ip-process-rhythm > p {
  margin: 0;
}

.ip-case-overview {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px);
  background: var(--ip-cream);
  border-top: 3px solid var(--ip-copper);
}

.ip-case-overview h2 {
  margin-top: 20px;
}

.ip-case-overview p {
  color: var(--ip-muted);
  font-size: 18px;
}

.ip-presence {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(420px, 7fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
  margin-top: clamp(78px, 9vw, 112px);
  padding-top: clamp(54px, 7vw, 84px);
  border-top: 1px solid var(--ip-line);
}

.ip-location-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--ip-line);
}

.ip-location-grid span {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  padding: 24px 15px;
  border-right: 1px solid var(--ip-line);
  color: var(--ip-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ip-location-grid span::before {
  position: absolute;
  top: 26px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ip-copper);
  box-shadow: 0 0 0 7px rgba(196, 122, 82, 0.12);
  content: "";
}

.ip-location-grid span:last-child {
  border-right: 0;
}

.ip-site-footer {
  padding-block: 56px 28px;
  background: var(--ip-night);
  color: rgba(255, 255, 255, 0.72);
}

.ip-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
}

.ip-footer-brand img {
  width: 210px;
  max-width: 100%;
}

.ip-footer-brand p {
  max-width: 380px;
  margin: 24px 0 0;
}

.ip-footer-heading {
  margin: 0 0 16px;
  color: var(--ip-copper-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ip-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-footer-menu a,
.ip-footer-contact a {
  color: var(--ip-white);
  text-decoration: none;
}

.ip-footer-menu li + li,
.ip-footer-contact p + p {
  margin-top: 8px;
}

.ip-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ip-line-light);
  font-size: 12px;
}

.ip-footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .ip-header-cta {
    display: none;
  }

  .ip-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 20px;
  }

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

}

@media (max-width: 860px) {
  body.admin-bar .ip-site-header {
    top: 46px;
  }

  .ip-header-inner {
    min-height: 76px;
  }

  .ip-menu-toggle {
    display: block;
  }

  .ip-primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px 24px 28px;
    background: var(--ip-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--ip-shadow);
  }

  .ip-primary-nav.is-open {
    display: block;
  }

  .ip-menu {
    display: block;
  }

  .ip-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ip-menu a {
    padding: 13px 0;
  }

  .ip-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .ip-menu .sub-menu a {
    padding: 9px 0;
  }

  .ip-two-column,
  .ip-return-grid,
  .ip-engagement-copy,
  .ip-section-heading,
  .ip-final-cta .ip-shell,
  .ip-contact-grid {
    grid-template-columns: 1fr;
  }

  .ip-hero {
    min-height: clamp(580px, calc(100svh - 76px), 680px);
    background-image:
      linear-gradient(90deg, rgba(23, 27, 30, 0.96) 0%, rgba(23, 27, 30, 0.91) 34%, rgba(23, 27, 30, 0.78) 66%, rgba(23, 27, 30, 0.5) 100%),
      url("assets/images/hero/chess-strategy-copper-v2.jpg");
    background-position: 64% center;
  }

  body.admin-bar .ip-hero {
    min-height: clamp(560px, calc(100svh - 122px), 640px);
  }

  .ip-hero .ip-shell {
    display: flex;
  }

  .ip-hero-copy {
    max-width: 760px;
  }

  .ip-hero-visual {
    width: min(100%, 560px);
  }

  .ip-whole-model-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ip-whole-model .ip-eyebrow {
    padding-top: 0;
  }

  .ip-credibility-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .ip-credibility-heading h2 {
    margin-left: 0;
    text-align: left;
  }

  .ip-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-number:nth-child(2) {
    border-right: 0;
  }

  .ip-number:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ip-line-light);
  }

  .ip-three-grid,
  .ip-engagement-modes,
  .ip-process-grid,
  .ip-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-market-grid {
    grid-template-columns: 1fr;
  }

  .ip-home-section-heading,
  .ip-offer-grid {
    grid-template-columns: 1fr;
  }

  .ip-hire-section .ip-home-section-heading,
  .ip-hire-grid {
    grid-template-columns: 1fr;
  }

  .ip-hire-card {
    min-height: 0;
  }

  .ip-offer-card {
    min-height: 0;
  }

  .ip-proof-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 24px;
  }

  .ip-proof-heading .ip-eyebrow {
    grid-column: 1 / -1;
  }

  .ip-proof-heading h2 {
    margin-top: 0;
  }

  .ip-proof-grid {
    grid-template-columns: none;
    grid-auto-columns: min(76vw, 410px);
  }

  .ip-proof-card {
    min-height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.17);
  }

  .ip-page-content > .ip-card-grid.is-industry-grid,
  .ip-page-content > .ip-card-grid.is-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ip-three-grid article:nth-child(2),
  .ip-engagement-modes article:nth-child(2) {
    border-right: 0;
  }

  .ip-three-grid article:last-child,
  .ip-engagement-modes article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--ip-line);
  }

  .ip-profile {
    grid-template-columns: 1fr;
  }

  .ip-case-sections {
    grid-template-columns: 1fr;
  }

  .ip-case-story-grid {
    grid-template-columns: 1fr;
  }

  .ip-case-story-panel {
    border-right: 0;
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-case-story-panel:last-child {
    border-bottom: 0;
  }

  .ip-why-intro,
  .ip-process-intro,
  .ip-process-rhythm,
  .ip-presence {
    grid-template-columns: 1fr;
  }

  .ip-decision-flow {
    grid-template-columns: 1fr;
  }

  .ip-decision-flow article {
    min-height: 0;
  }

  .ip-decision-flow article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -24px;
    transform: translateX(50%) rotate(90deg);
  }

  .ip-principle-grid,
  .ip-output-grid,
  .ip-process-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ip-principle-grid article:nth-child(2),
  .ip-process-journey article:nth-child(2) {
    border-right: 0;
  }

  .ip-principle-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-process-journey article {
    min-height: 430px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ip-process-journey article:first-child {
    padding-left: 30px;
  }

  .ip-model-compare {
    grid-template-columns: 1fr;
  }

  .ip-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ip-process-signal {
    align-items: flex-start;
    flex-direction: column;
  }

  .ip-process-signal i {
    transform: rotate(90deg);
  }

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

  .ip-location-grid span:nth-child(3) {
    border-right: 0;
  }

  .ip-location-grid span:nth-child(-n + 3) {
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-profile figure {
    position: static;
    max-width: 430px;
  }

  .ip-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .ip-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .ip-shell,
  .wp-site-blocks > :where(.alignwide),
  .ip-page-content,
  .ip-entry-content > :where(.alignwide),
  .ip-entry-content > *:not(.alignwide):not(.alignfull),
  .ip-page-content > *:not(.alignwide):not(.alignfull) {
    width: min(calc(100% - 32px), var(--ip-shell));
  }

  .ip-case-sections {
    width: min(calc(100% - 32px), var(--ip-shell));
  }

  .ip-case-story-grid {
    width: min(calc(100vw - 32px), var(--ip-shell));
  }

  .ip-case-source,
  .ip-case-article-body {
    width: min(calc(100% - 32px), 760px);
  }

  .ip-brand-words small {
    display: none;
  }

  .ip-brand img {
    width: 37px;
    height: 37px;
  }

  .ip-home h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .ip-home h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .ip-market-card {
    min-height: 410px;
  }

  .ip-market-card-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .ip-case-article-header h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .ip-case-featured-image {
    aspect-ratio: 4 / 3;
  }

  .ip-hero {
    min-height: clamp(600px, calc(100svh - 76px), 660px);
    background-position: 68% center;
  }

  .ip-hero .ip-shell {
    padding-block: 48px;
  }

  .ip-hero-copy .ip-definition-term {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 0.92;
  }

  .ip-hero-copy .ip-definition-meaning {
    font-size: 17px;
    line-height: 1.42;
  }

  .ip-definition-type {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .ip-definition-pronunciation {
    margin-top: 12px;
    font-size: 14px;
  }

  .ip-definition-list {
    margin-top: 18px;
    padding: 0;
  }

  .ip-definition-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 0;
  }

  .ip-definition-list li::before {
    font-size: 11px;
  }

  .ip-definition-work {
    font-size: 17px;
    line-height: 1.42;
  }

  .ip-hero-copy > p:not(.ip-eyebrow) {
    margin-top: 22px;
    font-size: 17px;
  }

  .ip-hero .ip-actions {
    margin-top: 22px;
  }

  .ip-hero-visual::before {
    top: -10px;
    right: -8px;
  }

  .ip-hero-visual-caption {
    font-size: 9px;
  }

  .ip-whole-model-grid {
    padding-block: 46px 52px;
  }

  .ip-whole-model h2 {
    font-size: clamp(50px, 16vw, 68px);
    line-height: 0.86;
  }

  .ip-whole-model-content > p {
    margin-top: 28px;
    font-size: 17px;
  }

  .ip-model-link {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .ip-credibility-heading {
    padding-block: 16px 10px;
  }

  .ip-credibility-heading h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .ip-media-showcase {
    padding-bottom: 0;
  }

  .ip-media-row + .ip-media-row {
    margin-top: 34px;
  }

  .ip-media-logo,
  .ip-media-row.is-clients .ip-media-logo {
    width: 160px;
    min-height: 66px;
    padding: 11px 22px;
  }

  .ip-media-logo img {
    max-width: 118px;
    height: 32px;
  }

  .ip-numbers-grid,
  .ip-three-grid,
  .ip-engagement-modes,
  .ip-process-grid,
  .ip-card-grid {
    grid-template-columns: 1fr;
  }

  .ip-page-content > .ip-card-grid.is-industry-grid,
  .ip-page-content > .ip-card-grid.is-case-grid {
    width: min(calc(100vw - 32px), 1560px);
    grid-template-columns: 1fr;
  }

  .ip-proof-section {
    padding-block: 46px;
  }

  .ip-proof-grid {
    grid-template-columns: none;
    grid-auto-columns: min(86vw, 340px);
  }

  .ip-proof-card,
  .ip-proof-card:first-child,
  .ip-proof-card:nth-child(2),
  .ip-proof-card:nth-child(3) {
    min-height: 340px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.17);
  }

  .ip-proof-card h3,
  .ip-proof-card .ip-kicker {
    min-height: 0;
  }

  .ip-proof-metric {
    margin-top: 24px;
  }

  .ip-page-hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .ip-principle-grid,
  .ip-output-grid,
  .ip-process-journey {
    grid-template-columns: 1fr;
  }

  .ip-principle-grid article,
  .ip-output-grid article,
  .ip-principle-grid article:first-child,
  .ip-output-grid article:first-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-principle-grid article:last-child,
  .ip-output-grid article:last-child {
    border-bottom: 0;
  }

  .ip-process-journey article,
  .ip-process-journey article:first-child {
    min-height: 0;
    padding: 62px 0 34px;
    border-right: 0;
  }

  .ip-model-compare > div {
    min-height: 0;
  }

  .ip-location-grid {
    grid-template-columns: 1fr;
  }

  .ip-location-grid span,
  .ip-location-grid span:nth-child(3) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-location-grid span:last-child {
    border-bottom: 0;
  }

  .ip-number {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--ip-line-light);
  }

  .ip-number:last-child {
    border-bottom: 0;
  }

  .ip-three-grid article,
  .ip-engagement-modes article,
  .ip-three-grid article:first-child,
  .ip-engagement-modes article:first-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ip-line);
  }

  .ip-three-grid article:last-child,
  .ip-engagement-modes article:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .ip-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  .ip-team-section {
    padding-block: 42px 48px;
  }

  .ip-team-section .ip-section-heading h2,
  .ip-home-process > .ip-shell > h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .ip-two-column > :last-child {
    padding-left: 20px;
  }

  .ip-process-card {
    min-height: 0;
  }

  .ip-market-card {
    min-height: 280px;
  }

  .ip-hire-section,
  .ip-offer-section {
    padding-block: 50px;
  }

  .ip-hire-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 24px;
  }

  .ip-hire-card .ip-card-action {
    margin-top: 18px;
  }

  .ip-offer-card {
    padding: 30px 24px;
  }

  .ip-offer-proof a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ip-offer-proof a span:last-child {
    white-space: normal;
  }

  .ip-home-process .ip-process-card {
    min-height: 0;
  }

  .ip-footer-top {
    grid-template-columns: 1fr;
  }

  .ip-final-cta .ip-shell {
    gap: 30px;
  }

  .ip-final-cta > .ip-shell > .ip-button {
    min-width: 0;
    justify-self: start;
  }

  .ip-footer-brand {
    grid-column: auto;
  }

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

@media (hover: none) {
  .ip-market-card .ip-market-card-copy {
    background: linear-gradient(180deg, rgba(12, 16, 20, 0.12) 20%, rgba(12, 16, 20, 0.94) 100%);
  }

  .ip-market-card p {
    max-height: 110px;
    margin-top: 12px;
    opacity: 1;
    transform: none;
  }

  .ip-market-card .ip-market-card-link {
    max-height: 28px;
    margin-top: 15px;
    opacity: 1;
    transform: none;
  }
}

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

  .ip-media-marquee {
    overflow-x: auto;
  }

  .ip-media-track {
    transform: none !important;
  }

  .ip-media-group[aria-hidden="true"] {
    display: none;
  }
}
