:root {
  /* Original HEAVY CAMPAIGNS logo palette, sampled from the verified lockup. */
  --hc-campaign-blue: #405880;
  --hc-campaign-blue-deep: #183860;
  --hc-campaign-turquoise: #28d0f0;
  --hc-action-amber: #f2be1c;
  --hc-ink: #10212c;
  --hc-ink-soft: #183860;
  --hc-paper: #f7fafc;
  --hc-white: #ffffff;
  --hc-muted: #aebed0;
  --hc-line: rgba(255, 255, 255, 0.14);
  --hc-dark-line: rgba(24, 56, 96, 0.14);
  --hc-cyan: var(--hc-campaign-turquoise);
  --hc-signal: var(--hc-action-amber);
  --hc-violet: var(--hc-campaign-blue);
  --hc-max: 1240px;
  --hc-radius: 24px;
  --hc-radius-card: 24px;
  --hc-radius-panel: 20px;
  --hc-radius-control: 14px;
  --hc-radius-pill: 999px;
  --hc-control-height: 60px;
  --hc-shadow: 0 30px 80px rgba(8, 11, 18, 0.18);
  --hc-display: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
  --hc-body: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--hc-paper);
  color: var(--hc-ink);
  font-family: var(--hc-body);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 3px solid var(--hc-cyan);
  outline-offset: 4px;
}

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

.screen-reader-text:focus {
  position: fixed;
  z-index: 99999;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  overflow: visible;
  clip: auto;
  background: var(--hc-white);
  color: var(--hc-ink);
  font-weight: 700;
}

.hc-shell {
  width: min(calc(100% - 48px), var(--hc-max));
  margin-inline: auto;
}

.hc-topline {
  background: var(--hc-ink);
  color: var(--hc-muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-topline__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.hc-topline a {
  text-decoration: none;
}

.hc-topline a:hover {
  color: var(--hc-cyan);
}

.hc-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(8, 11, 18, 0.08);
  background: rgba(247, 250, 252, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.hc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--hc-ink);
  text-decoration: none;
}

.hc-brand-lockup {
  display: block;
  width: clamp(220px, 23vw, 300px);
}

.hc-brand-lockup img {
  width: 100%;
  height: auto;
}

.hc-brand--footer .hc-brand-lockup {
  width: min(300px, 100%);
}

.hc-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hc-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-menu a {
  position: relative;
  color: #303744;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.hc-menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--hc-campaign-turquoise);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.hc-menu a:hover::after,
.hc-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--hc-action-amber);
  border-radius: var(--hc-radius-pill);
  background: var(--hc-action-amber);
  color: var(--hc-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hc-button:hover {
  border-color: var(--hc-campaign-turquoise);
  background: var(--hc-campaign-turquoise);
  color: var(--hc-ink);
  transform: translateY(-2px);
}

.hc-button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.hc-button--light {
  border-color: var(--hc-campaign-blue);
  background: var(--hc-white);
  color: var(--hc-campaign-blue-deep);
}

.hc-button--outline {
  border-color: var(--hc-campaign-blue);
  background: var(--hc-white);
  color: var(--hc-campaign-blue-deep);
}

.hc-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-weight: 800;
  text-decoration: none;
}

.hc-text-link::after {
  margin-left: 10px;
  content: "↗";
}

.hc-language {
  min-width: 44px;
  font-size: 14px;
  font-weight: 800;
}

.hc-language .wpml-ls,
.hc-language .wpml-ls ul {
  padding: 0;
  border: 0;
  margin: 0;
}

.hc-language .wpml-ls a {
	border: 0;
	background: transparent;
	color: inherit;
}

.hc-language .wpml-ls-display {
	display: none;
}

.hc-progress {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hc-campaign-blue), var(--hc-campaign-turquoise));
}

.hc-mobile-menu {
  display: none;
}

.hc-hero {
  position: relative;
  overflow: hidden;
  min-height: min(800px, calc(100vh - 118px));
  background:
    linear-gradient(100deg, rgba(24, 56, 96, 0.98) 0%, rgba(24, 56, 96, 0.93) 46%, rgba(16, 33, 44, 0.66) 100%),
    url("../images/people/heavy-campaigns-collaboration-hands-wide-01.webp") center 48% / cover;
  color: var(--hc-white);
}

.hc-hero::before,
.hc-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  opacity: 0.72;
  pointer-events: none;
}

.hc-hero::before {
  top: -22vw;
  right: -12vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle at 40% 40%, rgba(40, 208, 240, 0.48), rgba(64, 88, 128, 0.2) 44%, transparent 68%);
}

.hc-hero::after {
  bottom: -38vw;
  left: -18vw;
  width: 68vw;
  height: 68vw;
  background: radial-gradient(circle at 60% 45%, rgba(242, 190, 28, 0.2), transparent 64%);
}

.hc-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
  pointer-events: none;
}

.hc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  align-items: end;
  min-height: min(800px, calc(100vh - 118px));
  padding-block: clamp(90px, 11vw, 150px) 64px;
  gap: 64px;
}

.hc-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hc-kicker::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hc-hero h1,
.hc-page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(54px, 8.4vw, 128px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hc-gradient-text {
  background: linear-gradient(90deg, var(--hc-campaign-turquoise), #ffffff 88%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hc-hero__intro {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c7cfda;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.hc-hero__aside {
  padding: 26px;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.hc-hero__aside strong {
  display: block;
  margin-bottom: 18px;
  color: var(--hc-signal);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hc-hero__aside ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-hero__aside li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 13px;
  border-top: 1px solid var(--hc-line);
  gap: 20px;
}

.hc-hero__aside span {
  color: var(--hc-muted);
  font-size: 15px;
}

.hc-proof-strip {
  background: var(--hc-white);
}

.hc-proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hc-proof {
  padding: 32px 26px;
  border-left: 1px solid var(--hc-dark-line);
}

.hc-proof:last-child {
  border-right: 1px solid var(--hc-dark-line);
}

.hc-proof strong {
  display: block;
  font-family: var(--hc-display);
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hc-proof span {
  display: block;
  margin-top: 8px;
  color: #647080;
  font-size: 15px;
}

.hc-reference-rail-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
  padding-block: clamp(42px, 5vw, 66px) 0;
  border-top: 1px solid var(--hc-dark-line);
  border-bottom: 1px solid var(--hc-dark-line);
  background: var(--hc-white);
}

.hc-reference-rail__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: clamp(30px, 4vw, 46px);
  gap: 32px;
}

.hc-reference-rail__header .hc-kicker {
  margin-bottom: 10px;
  color: var(--hc-campaign-blue);
}

.hc-reference-rail__header h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hc-reference-rail__header .hc-text-link {
  flex: 0 0 auto;
  margin-bottom: 5px;
}

.hc-reference-rail {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
  border-top: 1px solid var(--hc-dark-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.hc-reference-rail__track {
  display: flex;
  width: max-content;
  animation: hc-reference-marquee 52s linear infinite;
  will-change: transform;
}

.hc-reference-rail:hover .hc-reference-rail__track {
  animation-play-state: paused;
}

.hc-reference-rail__group {
  display: flex;
  flex: none;
}

.hc-reference-rail__item {
  display: grid;
  width: 190px;
  height: 100px;
  flex: 0 0 190px;
  padding: 20px 28px;
  place-items: center;
  border-left: 1px solid var(--hc-dark-line);
}

.hc-reference-logo__image {
  width: auto;
  max-width: 136px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.88);
  opacity: 0.64;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.hc-reference-rail__item:hover .hc-reference-logo__image,
.hc-reference-card:hover .hc-reference-logo__image,
.hc-reference-card:focus-within .hc-reference-logo__image {
  filter: none;
  opacity: 1;
  transform: scale(1.035);
}

@keyframes hc-reference-marquee {
  to {
    transform: translateX(-50%);
  }
}

.hc-section {
  padding-block: clamp(84px, 10vw, 150px);
}

.hc-section--dark {
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-section--dark .hc-split p {
  color: #e8eef6;
}

.hc-section--dark .hc-kicker {
  color: #c8d6e6;
}

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

.hc-section--signal {
  background: linear-gradient(135deg, #f2be1c, #f5ca4b);
}

.hc-media-section {
  padding: 0 0 clamp(64px, 8vw, 112px);
  background: var(--hc-white);
}

.hc-editorial-image {
  position: relative;
  overflow: hidden;
  margin: clamp(42px, 6vw, 76px) 0 0;
  border: 1px solid var(--hc-dark-line);
  border-radius: clamp(22px, 3vw, 38px);
  aspect-ratio: 16 / 9;
  background: var(--hc-campaign-blue-deep);
  box-shadow: 0 28px 70px rgba(16, 33, 44, 0.12);
}

.hc-media-section .hc-editorial-image {
  margin-top: 0;
}

.hc-editorial-image--panoramic {
  aspect-ratio: 12 / 5;
}

.hc-editorial-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 56, 96, 0.14), transparent 52%, rgba(40, 208, 240, 0.1));
  content: "";
  pointer-events: none;
}

.hc-editorial-image picture,
.hc-editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.hc-editorial-image img {
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.hc-editorial-image + .hc-price-table {
  margin-top: clamp(42px, 6vw, 76px);
}

.hc-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  margin-bottom: 58px;
  gap: 50px;
}

.hc-section__intro h2,
.hc-editorial h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-section__intro p {
  max-width: 690px;
  margin: 8px 0 0;
  color: #566170;
  font-size: clamp(18px, 1.8vw, 22px);
}

.hc-section--dark .hc-section__intro p {
  color: #aeb7c4;
}

.hc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hc-service-card {
  position: relative;
  display: flex;
  grid-column: auto;
  flex-direction: column;
  min-height: 410px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  box-shadow: 0 0 0 rgba(8, 11, 18, 0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hc-service-card:hover {
  box-shadow: var(--hc-shadow);
  transform: translateY(-7px);
}

.hc-service-card:focus-within {
  box-shadow: var(--hc-shadow);
  transform: translateY(-7px);
}

.hc-service-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.hc-service-card__link:focus-visible,
.hc-price-card__link:focus-visible {
  outline-offset: 8px;
}

.hc-service-card__number {
  color: #7d8795;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hc-service-card h3 {
  max-width: 510px;
  margin: 46px 0 20px;
  font-family: var(--hc-display);
  font-size: clamp(33px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-service-card p {
  max-width: 540px;
  color: #5a6573;
}

.hc-service-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--hc-dark-line);
  gap: 20px;
}

.hc-service-card footer span {
  color: #5b6674;
  font-size: 15px;
}

.hc-service-card footer strong {
  font-size: 16px;
}

.hc-service-card--dark {
  border-color: transparent;
  background: var(--hc-ink-soft);
  color: var(--hc-white);
}

.hc-service-card--dark p,
.hc-service-card--dark footer span {
  color: #aeb7c4;
}

.hc-service-card--dark footer {
  border-color: var(--hc-line);
}

.hc-service-card--accent {
  border-color: transparent;
  background: linear-gradient(140deg, var(--hc-cyan), #c8f3ff 52%, var(--hc-signal));
}

.hc-service-card--accent p,
.hc-service-card--accent footer span {
  color: #25303b;
}

.hc-card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 22px;
  color: var(--hc-campaign-blue-deep);
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
}

.hc-card-cta span {
  display: inline-block;
  transition: transform 180ms ease;
}

.hc-service-card:hover .hc-card-cta span,
.hc-service-card:focus-within .hc-card-cta span,
.hc-price-card:hover .hc-card-cta span,
.hc-price-card:focus-within .hc-card-cta span {
  transform: translate(3px, -3px);
}

.hc-service-card--dark .hc-card-cta,
.hc-price-card--dark .hc-card-cta {
  color: var(--hc-campaign-turquoise);
}

.hc-process {
  counter-reset: process;
  border-top: 1px solid var(--hc-line);
}

.hc-process__step {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  padding-block: 34px;
  border-bottom: 1px solid var(--hc-line);
  gap: 30px;
  counter-increment: process;
}

.hc-process__step::before {
  color: var(--hc-cyan);
  content: "0" counter(process);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hc-process__step h3 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.hc-process__step p {
  margin: 0;
  color: #aeb7c4;
}

.hc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 8vw, 110px);
}

.hc-split h2 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(42px, 5.5vw, 80px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-split p {
  margin: 0 0 22px;
}

.hc-routing {
  display: grid;
  gap: 14px;
}

.hc-routing article {
  padding: 26px;
  border: 1px solid rgba(8, 11, 18, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.hc-routing h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hc-routing p {
  margin: 0;
  font-size: 15px;
}

.hc-cta {
  position: relative;
  overflow: hidden;
  background: var(--hc-ink);
  color: var(--hc-white);
}

.hc-cta::after {
  position: absolute;
  top: -70%;
  right: -12%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(77, 215, 255, 0.035), 0 0 0 160px rgba(183, 243, 74, 0.025);
  content: "";
}

.hc-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  padding-block: clamp(90px, 11vw, 160px);
  gap: 60px;
}

.hc-cta h2 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(50px, 7vw, 104px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hc-cta p {
  color: #b7c0cc;
}

.hc-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--hc-ink);
  color: var(--hc-white);
}

.hc-page-hero::after {
  position: absolute;
  top: -100%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 215, 255, 0.24), transparent 62%);
  content: "";
}

.hc-page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 13vw, 180px) clamp(70px, 9vw, 120px);
}

.hc-page-hero__inner > p:last-child {
  max-width: 760px;
  margin: 32px 0 0;
  color: #bbc4d0;
  font-size: clamp(18px, 2vw, 24px);
}

.hc-editorial {
  padding-block: clamp(74px, 9vw, 130px);
}

.hc-editorial > * {
  width: min(calc(100% - 48px), 820px);
  margin-right: auto;
  margin-left: auto;
}

.hc-editorial > .hc-wide,
.hc-editorial > .hc-section,
.hc-editorial > .hc-cta {
  width: 100%;
  max-width: none;
}

.hc-editorial h2 {
  margin-top: 74px;
  margin-bottom: 28px;
  font-size: clamp(38px, 4.7vw, 66px);
}

.hc-legal-page .hc-editorial > h2 {
  max-width: 820px;
  margin: 58px auto 18px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.hc-legal-page .hc-editorial > p,
.hc-legal-page .hc-editorial > ul,
.hc-legal-page .hc-editorial > ol {
  max-width: 820px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.72;
}

.hc-legal-page .hc-editorial > p:first-child {
  padding: 18px 22px;
  border-left: 3px solid var(--hc-cyan);
  background: rgba(77, 215, 255, 0.08);
}

.hc-editorial h3 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-family: var(--hc-display);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.hc-editorial p,
.hc-editorial li {
  color: #3e4957;
}

.hc-editorial .hc-section,
.hc-editorial .hc-cta {
  margin-top: 0;
  margin-bottom: 0;
}

.hc-reference-overview {
  padding-block: clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 85% 10%, rgba(40, 208, 240, 0.12), transparent 30%),
    var(--hc-paper);
}

.hc-reference-overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 76px);
  gap: clamp(30px, 6vw, 88px);
}

.hc-reference-overview__intro .hc-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: var(--hc-campaign-blue);
}

.hc-reference-overview__intro h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
}

.hc-reference-overview__intro > p:last-child {
  margin: 0 0 5px;
  color: #4c5968;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hc-reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hc-reference-card {
  display: flex;
  min-width: 0;
  min-height: 238px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius-panel);
  background: var(--hc-white);
  box-shadow: 0 0 0 rgba(16, 33, 44, 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hc-reference-card:hover {
  border-color: rgba(40, 208, 240, 0.48);
  box-shadow: 0 22px 52px rgba(16, 33, 44, 0.1);
  transform: translateY(-5px);
}

.hc-reference-card__logo {
  display: grid;
  min-height: 112px;
  padding: 18px;
  place-items: center;
  border-radius: var(--hc-radius-control);
  background: #fff;
}

.hc-reference-card__logo .hc-reference-logo__image {
  max-width: 176px;
  max-height: 66px;
}

.hc-reference-card__copy {
  padding-top: 18px;
  border-top: 1px solid var(--hc-dark-line);
}

.hc-reference-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.hc-reference-card p {
  margin: 8px 0 0;
  color: #677282;
  font-size: 13px;
  line-height: 1.45;
}

.hc-reference-note {
  max-width: 980px;
  padding-top: 24px;
  margin: 26px 0 0;
  border-top: 1px solid var(--hc-dark-line);
  color: #687382;
  font-size: 13px;
  line-height: 1.55;
}

.hc-about-lead {
  color: var(--hc-ink);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 650;
  line-height: 1.42;
}

.hc-about-accountability {
  padding-block: clamp(86px, 10vw, 150px);
  background:
    radial-gradient(circle at 10% 15%, rgba(40, 208, 240, 0.13), transparent 30%),
    var(--hc-paper);
}

.hc-about-accountability__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.hc-about-accountability__grid > div > h2,
.hc-about-standards__intro h2,
.hc-case-system__intro h2,
.hc-featured-case h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5.4vw, 76px);
}

.hc-about-accountability__grid > div > p:not(.hc-kicker) {
  max-width: 690px;
  color: #485565;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.hc-leadership-card {
  display: grid;
  min-height: 390px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--hc-radius-panel);
  background:
    linear-gradient(145deg, rgba(40, 208, 240, 0.13), transparent 46%),
    var(--hc-campaign-blue-deep);
  box-shadow: 0 32px 72px rgba(16, 33, 44, 0.2);
  color: var(--hc-white);
  gap: 36px;
}

.hc-leadership-card__monogram {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-cyan), var(--hc-signal));
  color: var(--hc-campaign-blue-deep);
  font-family: var(--hc-display);
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hc-leadership-card .hc-meta {
  margin: 0 0 8px;
  color: #b9cadc;
}

.hc-leadership-card h3 {
  margin: 0 0 14px;
  color: var(--hc-white);
  font-size: clamp(32px, 3.6vw, 50px);
}

.hc-leadership-card p:not(.hc-meta) {
  margin-bottom: 22px;
  color: #d9e3ee;
  font-size: 17px;
  line-height: 1.58;
}

.hc-leadership-card .hc-text-link {
  color: var(--hc-white);
}

.hc-about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(50px, 7vw, 92px);
  border-top: 1px solid var(--hc-line);
  border-left: 1px solid var(--hc-line);
}

.hc-about-principles article {
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

.hc-about-principles span,
.hc-case-challenge-grid span,
.hc-case-system__grid span,
.hc-evidence-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--hc-cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hc-about-principles h3 {
  margin: 0 0 14px;
  color: var(--hc-white);
  font-size: clamp(25px, 2.4vw, 34px);
}

.hc-about-principles p {
  margin: 0;
  color: #ccd8e5;
  line-height: 1.62;
}

.hc-about-standards {
  padding-block: clamp(84px, 10vw, 144px);
  background: var(--hc-white);
}

.hc-about-standards__intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
  gap: 42px;
}

.hc-about-standards__intro h2 {
  margin-bottom: 0;
}

.hc-about-standards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hc-dark-line);
  border-left: 1px solid var(--hc-dark-line);
}

.hc-about-standards__grid article {
  min-height: 210px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--hc-dark-line);
  border-bottom: 1px solid var(--hc-dark-line);
}

.hc-about-standards__grid strong {
  display: block;
  margin-bottom: 15px;
  font-family: var(--hc-display);
  font-size: clamp(25px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hc-about-standards__grid p {
  max-width: 560px;
  margin: 0;
  color: #526071;
  line-height: 1.6;
}

.hc-featured-case {
  padding-block: clamp(82px, 10vw, 144px);
  background:
    linear-gradient(135deg, rgba(40, 208, 240, 0.11), transparent 45%),
    var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-featured-case__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.hc-featured-case h2 {
  max-width: 820px;
  color: var(--hc-white);
}

.hc-featured-case p {
  max-width: 760px;
  color: #d8e3ee;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}

.hc-featured-case__note {
  padding-left: 18px;
  border-left: 2px solid var(--hc-cyan);
  font-size: 14px !important;
}

.hc-featured-case dl,
.hc-case-scorecard {
  padding: clamp(12px, 2vw, 20px) clamp(28px, 3vw, 42px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hc-radius-panel);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hc-featured-case dl > div,
.hc-case-scorecard > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  gap: 18px;
}

.hc-featured-case dl > div:last-child,
.hc-case-scorecard > div:last-child {
  border-bottom: 0;
}

.hc-featured-case dt,
.hc-case-scorecard span {
  color: #afc1d3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hc-featured-case dd,
.hc-case-scorecard strong {
  margin: 0;
  color: var(--hc-white);
  font-size: 15px;
  line-height: 1.4;
}

.hc-case-intro {
  padding-block: clamp(84px, 10vw, 150px);
  background:
    radial-gradient(circle at 82% 20%, rgba(40, 208, 240, 0.13), transparent 34%),
    var(--hc-white);
}

.hc-case-intro__grid,
.hc-case-verification__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.hc-case-intro h2 {
  max-width: 850px;
  margin: 0 0 26px;
  font-size: clamp(46px, 6vw, 84px);
}

.hc-case-intro p:not(.hc-kicker) {
  max-width: 760px;
  color: #465363;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.hc-case-scorecard {
  border-color: var(--hc-dark-line);
  background: var(--hc-campaign-blue-deep);
  box-shadow: var(--hc-shadow);
}

.hc-case-challenge-grid,
.hc-case-system__grid,
.hc-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hc-dark-line);
  border-left: 1px solid var(--hc-dark-line);
}

.hc-case-challenge-grid article,
.hc-evidence-grid article {
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--hc-dark-line);
  border-bottom: 1px solid var(--hc-dark-line);
  background: var(--hc-white);
}

.hc-case-challenge-grid h3,
.hc-evidence-grid h3,
.hc-case-system__grid h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.25vw, 32px);
}

.hc-case-challenge-grid p,
.hc-evidence-grid p,
.hc-case-system__grid p {
  margin: 0;
  color: #526071;
  line-height: 1.62;
}

.hc-case-system {
  padding-block: clamp(88px, 11vw, 158px);
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-case-system__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 84px);
  gap: 48px;
}

.hc-case-system__intro h2 {
  color: var(--hc-white);
}

.hc-case-system__intro p:last-child {
  color: #cad7e4;
  font-size: 18px;
  line-height: 1.6;
}

.hc-case-system__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--hc-line);
}

.hc-case-system__grid article {
  min-height: 320px;
  padding: clamp(28px, 3.4vw, 43px);
  border-right: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

.hc-case-system__grid h3 {
  color: var(--hc-white);
}

.hc-case-system__grid p {
  color: #cbd8e5;
}

.hc-case-verification {
  padding-block: clamp(84px, 10vw, 144px);
  background: #eafaff;
}

.hc-case-verification__grid {
  align-items: start;
}

.hc-case-verification h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
}

.hc-case-verification ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-case-verification li {
  display: grid;
  grid-template-columns: 28px 1fr;
  padding-block: 19px;
  border-bottom: 1px solid rgba(24, 56, 96, 0.18);
  color: #344252;
  font-size: 17px;
  line-height: 1.5;
}

.hc-case-verification li span {
  color: var(--hc-campaign-blue);
  font-weight: 900;
}

.hc-evidence-section {
  padding-block: clamp(82px, 10vw, 146px);
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 208, 240, 0.12), transparent 28%),
    var(--hc-paper);
}

.hc-evidence-section__intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 72px);
  gap: 44px;
}

.hc-evidence-section__intro h2 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 70px);
}

.hc-evidence-section__intro p:last-child {
  max-width: 760px;
  color: #526071;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}

.hc-evidence-grid span,
.hc-case-challenge-grid span {
  color: var(--hc-campaign-blue);
}

.hc-evidence-links {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 30px;
  flex-wrap: wrap;
}

.hc-price-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hc-price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 36px;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  box-shadow: 0 0 0 rgba(8, 11, 18, 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hc-price-card:hover,
.hc-price-card:focus-within {
  border-color: rgba(40, 208, 240, 0.65);
  box-shadow: var(--hc-shadow);
  transform: translateY(-7px);
}

.hc-price-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.hc-price-card h3 {
  margin: 18px 0;
  font-size: clamp(31px, 4vw, 50px);
}

.hc-price-card .hc-price {
  margin: 0;
  color: var(--hc-ink);
  font-family: var(--hc-display);
  font-size: 31px;
  font-weight: 800;
  line-height: 1.08;
}

.hc-price-card ul {
  padding-left: 20px;
}

.hc-price-card__promise {
  margin-top: 0;
  color: #3e4957;
  font-size: 18px;
}

.hc-price-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--hc-dark-line);
  gap: 24px;
}

.hc-price-card__footer .hc-card-cta {
  flex: 0 0 auto;
  margin-top: 0;
}

.hc-price-card--accent {
  border-color: transparent;
  background: linear-gradient(140deg, var(--hc-campaign-turquoise), #c8f3ff 52%, var(--hc-action-amber));
}

.hc-price-card--accent-soft {
  border-color: rgba(40, 208, 240, 0.52);
  background: linear-gradient(145deg, rgba(40, 208, 240, 0.16), rgba(255, 255, 255, 0.96) 55%, rgba(242, 190, 28, 0.14));
}

.hc-price-card--dark {
  border-color: transparent;
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-price-card--dark .hc-meta,
.hc-price-card--dark .hc-price-card__promise,
.hc-price-card--dark li {
  color: #d4dde9;
}

.hc-price-card--dark .hc-price {
  color: var(--hc-white);
}

.hc-price-card--dark .hc-price-card__footer {
  border-color: var(--hc-line);
}

.hc-product-overview {
  padding-top: clamp(78px, 10vw, 132px);
}

.hc-product-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.hc-product-overview h2,
.hc-product-delivery h2 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(46px, 6.5vw, 94px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hc-product-lead {
  max-width: 800px;
  margin: 30px 0 0;
  color: #3e4957;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.52;
}

.hc-product-facts {
  overflow: hidden;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-paper);
}

.hc-product-facts div {
  padding: 24px 26px;
  border-bottom: 1px solid var(--hc-dark-line);
}

.hc-product-facts div:last-child {
  border-bottom: 0;
}

.hc-product-facts span,
.hc-product-facts strong {
  display: block;
}

.hc-product-facts span {
  margin-bottom: 4px;
  color: #687586;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-product-facts strong {
  font-family: var(--hc-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hc-benefit-grid article {
  min-height: 320px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
}

.hc-benefit-grid article:nth-child(2) {
  background: linear-gradient(150deg, rgba(40, 208, 240, 0.16), var(--hc-white));
}

.hc-benefit-grid article > span {
  color: var(--hc-campaign-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hc-benefit-grid h3 {
  margin: 62px 0 18px;
  font-family: var(--hc-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.hc-benefit-grid p {
  margin: 0;
  color: #4d5968;
}

.hc-product-delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 112px);
}

.hc-product-delivery > div > p:last-child {
  color: #c3ccd8;
  font-size: 18px;
}

.hc-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  padding: 0;
  margin: 0;
  gap: 14px;
  list-style: none;
}

.hc-deliverable-grid li {
  display: grid;
  grid-template-columns: 28px 1fr;
  padding: 20px;
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  color: #e3e8ef;
  gap: 10px;
}

.hc-deliverable-grid li span {
  color: var(--hc-campaign-turquoise);
  font-weight: 800;
}

.hc-section--commercial {
  background:
    radial-gradient(circle at 86% 8%, rgba(40, 208, 240, 0.18), transparent 28%),
    #eaf3f7;
}

.hc-commercial-header {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
  gap: clamp(28px, 5vw, 72px);
}

.hc-commercial-header h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-commercial-header p:not(.hc-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #405064;
  font-size: clamp(17px, 1.6vw, 21px);
}

.hc-commercial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  gap: 18px;
}

.hc-commercial-grid article,
.hc-module-grid article,
.hc-ladder-grid article {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius-card);
  background: rgba(255, 255, 255, 0.96);
}

.hc-commercial-grid article:first-child {
  border-color: rgba(40, 208, 240, 0.5);
  background: linear-gradient(145deg, rgba(40, 208, 240, 0.18), #fff 58%, rgba(242, 190, 28, 0.12));
}

.hc-commercial-grid h3,
.hc-module-grid h3,
.hc-ladder-grid h3 {
  margin: 0 0 18px;
  font-family: var(--hc-display);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hc-commercial-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-commercial-grid li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid rgba(24, 56, 96, 0.11);
  color: #3f4d5e;
  line-height: 1.48;
}

.hc-commercial-grid li::before {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--hc-campaign-turquoise);
  content: "•";
  font-weight: 900;
}

.hc-commercial-note {
  max-width: 1080px;
  padding-top: 24px;
  margin: 28px 0 0;
  border-top: 1px solid var(--hc-dark-line);
  color: #5b6878;
  font-size: 13px;
  line-height: 1.58;
}

.hc-ladder-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hc-ladder-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 25px;
}

.hc-ladder-grid article:nth-child(3) {
  border-color: transparent;
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-ladder-grid article > span,
.hc-module-grid article > span {
  display: block;
  margin-bottom: 46px;
  color: var(--hc-campaign-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hc-ladder-grid article:nth-child(3) > span,
.hc-ladder-grid article:nth-child(3) p {
  color: #c9d7e5;
}

.hc-ladder-grid p,
.hc-module-grid p {
  margin: 0;
  color: #536173;
  line-height: 1.5;
}

.hc-ladder-grid strong {
  margin-top: auto;
  padding-top: 24px;
  color: inherit;
  font-family: var(--hc-display);
  font-size: 18px;
}

.hc-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hc-module-grid article {
  min-height: 280px;
}

.hc-module-grid article > span {
  margin-bottom: 58px;
}

.hc-faq-grid {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  gap: 12px;
}

.hc-faq-grid details {
  border: 1px solid var(--hc-dark-line);
  border-radius: 16px;
  background: var(--hc-paper);
}

.hc-faq-grid summary {
  padding: 22px 56px 22px 24px;
  cursor: pointer;
  font-family: var(--hc-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
}

.hc-faq-grid details p {
  max-width: 790px;
  padding: 0 24px 24px;
  margin: 0;
  color: #455261;
}

.hc-form-section {
  padding-block: clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 12% 12%, rgba(40, 208, 240, 0.12), transparent 26%),
    linear-gradient(180deg, #eef4f8 0%, var(--hc-paper) 46%, #edf3f7 100%);
}

.hc-form-section__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  max-width: 1040px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  gap: clamp(24px, 4vw, 52px);
}

.hc-form-section__header h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-form-section__header p:not(.hc-kicker) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #526171;
  font-size: clamp(17px, 1.6vw, 21px);
}

.hc-form-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3.2vw, 42px);
}

.hc-form-guide {
  position: sticky;
  top: 146px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hc-radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(40, 208, 240, 0.24), transparent 36%),
    var(--hc-campaign-blue-deep);
  color: var(--hc-white);
  box-shadow: 0 24px 64px rgba(16, 33, 44, 0.18);
}

.hc-form-guide .hc-form-guide__eyebrow {
  margin: 0 0 24px;
  color: #d2dfec;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hc-form-guide ol {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.hc-form-guide li {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--hc-white);
  gap: 13px;
}

.hc-form-guide li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(40, 208, 240, 0.52);
  border-radius: 50%;
  background: rgba(40, 208, 240, 0.12);
  color: var(--hc-campaign-turquoise);
  font-size: 12px;
  font-weight: 800;
}

.hc-form-guide li strong,
.hc-form-guide__trust strong {
  display: block;
  color: var(--hc-white);
  font-size: 15px;
  line-height: 1.35;
}

.hc-form-guide li p,
.hc-form-guide__trust p {
  margin: 5px 0 0;
  color: #c7d4e1;
  font-size: 13px;
  line-height: 1.5;
}

.hc-form-guide__trust {
  padding: 22px 0 0 59px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 12px;
}

.hc-form-layout .portfolio-form-shell,
.hc-form-shell {
  width: 100%;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(24, 56, 96, 0.16);
  border-radius: var(--hc-radius-card);
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 72px rgba(16, 33, 44, 0.13);
}

.portfolio-form-shell,
.hc-form-shell {
  width: min(calc(100% - 48px), 980px);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius-card);
  margin-inline: auto;
  background: var(--hc-white);
  box-shadow: var(--hc-shadow);
}

.portfolio-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.portfolio-form__field {
  position: relative;
  margin: 0 0 24px;
}

.portfolio-form__field--wide {
  grid-column: 1 / -1;
}

.portfolio-form__field--help .portfolio-form__label {
  padding-right: 38px;
}

.hc-field-help__trigger {
  position: absolute;
  z-index: 12;
  top: -4px;
  right: 0;
  display: inline-grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1.5px solid rgba(24, 56, 96, 0.48);
  border-radius: 50%;
  place-items: center;
  appearance: none;
  background: #f4f8fb;
  color: var(--hc-campaign-blue-deep);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hc-field-help__trigger:hover,
.hc-field-help__trigger[aria-expanded="true"] {
  border-color: var(--hc-campaign-turquoise);
  background: rgba(40, 208, 240, 0.16);
}

.hc-field-help__trigger:focus-visible {
  outline: 4px solid rgba(40, 208, 240, 0.28);
  outline-offset: 2px;
}

.hc-field-help__panel {
  position: absolute;
  z-index: 60;
  top: 36px;
  right: 0;
  width: min(370px, 100%);
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hc-radius-control);
  background: var(--hc-campaign-blue-deep);
  box-shadow: 0 18px 42px rgba(16, 33, 44, 0.24);
  color: var(--hc-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.hc-field-help__panel::before {
  position: absolute;
  top: -7px;
  right: 9px;
  width: 14px;
  height: 14px;
  background: var(--hc-campaign-blue-deep);
  content: "";
  transform: rotate(45deg);
}

.hc-field-help__panel[hidden] {
  display: none;
}

.hc-form-context {
  position: relative;
  padding: 24px 26px 24px 32px;
  border: 1px solid rgba(40, 208, 240, 0.48);
  border-radius: var(--hc-radius-panel);
  margin-bottom: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(40, 208, 240, 0.14), rgba(255, 255, 255, 0.98) 58%, rgba(242, 190, 28, 0.12));
}

.hc-form-context::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--hc-campaign-turquoise);
  content: "";
}

.hc-form-context[hidden] {
  display: none;
}

.hc-form-context span,
.hc-form-context strong {
  display: block;
}

.hc-form-context span {
  color: var(--hc-campaign-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-form-context strong {
  margin-top: 5px;
  font-family: var(--hc-display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hc-form-context p {
  margin: 9px 0 0;
  color: #465362;
  font-size: 16px;
}

.portfolio-form__required-note {
  margin: 0 0 28px;
  color: #5c6875;
  font-size: 14px;
}

.portfolio-form__required-note span,
.portfolio-form__field:has(.wpcf7-validates-as-required) .portfolio-form__label::after {
  color: #9a5a00;
  font-weight: 800;
}

.portfolio-form__field:has(.wpcf7-validates-as-required) .portfolio-form__label::after {
  margin-left: 4px;
  content: "*";
}

.portfolio-form__label {
  display: block;
  margin-bottom: 10px;
  color: var(--hc-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.portfolio-form input:not([type="checkbox"]):not([type="submit"]),
.portfolio-form select,
.portfolio-form textarea {
  width: 100%;
  min-height: var(--hc-control-height);
  padding: 15px 18px;
  border: 1.5px solid #8798aa;
  border-radius: var(--hc-radius-control);
  background: var(--hc-white);
  color: var(--hc-ink);
  font-size: 17px;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hc-multiselect.is-open {
  z-index: 50;
}

.hc-multiselect.is-enhanced .hc-multiselect__source {
  display: none;
}

.hc-multiselect__interface {
  position: relative;
}

.hc-multiselect__trigger {
  display: flex;
  width: 100%;
  min-height: var(--hc-control-height);
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 1.5px solid #8798aa;
  border-radius: var(--hc-radius-control);
  appearance: none;
  background: var(--hc-white);
  color: #526170;
  font: inherit;
  font-size: 17px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hc-multiselect__trigger.has-selection {
  color: var(--hc-ink);
  font-weight: 700;
}

.hc-multiselect__trigger:hover,
.hc-multiselect.is-open .hc-multiselect__trigger {
  border-color: var(--hc-campaign-blue);
}

.hc-multiselect__trigger:focus-visible {
  border-color: var(--hc-campaign-blue-deep);
  outline: 4px solid rgba(40, 208, 240, 0.28);
  outline-offset: 1px;
}

.hc-multiselect__chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid var(--hc-campaign-blue-deep);
  border-bottom: 2px solid var(--hc-campaign-blue-deep);
  margin: -5px 4px 0 18px;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.hc-multiselect.is-open .hc-multiselect__chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.hc-multiselect__panel {
  position: absolute;
  z-index: 55;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  padding: 15px;
  border: 1px solid rgba(24, 56, 96, 0.24);
  border-radius: var(--hc-radius-control);
  background: var(--hc-white);
  box-shadow: 0 22px 52px rgba(16, 33, 44, 0.2);
}

.hc-multiselect__panel[hidden] {
  display: none;
}

.hc-multiselect__search-label {
  display: block;
  color: var(--hc-ink);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-form .hc-multiselect__search {
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  margin-top: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' fill='none' stroke='%23183860' stroke-width='2'/%3E%3Cpath d='m16.3 16.3 4.2 4.2' fill='none' stroke='%23183860' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  background-position: 14px 50%;
  background-repeat: no-repeat;
  background-size: 21px 21px;
  font-size: 15px;
}

.hc-multiselect__options {
  display: grid;
  max-height: 292px;
  padding: 6px 3px 4px 0;
  margin-top: 8px;
  gap: 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hc-multiselect__option {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding: 7px 9px;
  border-radius: 10px;
  grid-template-columns: 22px 42px minmax(0, 1fr);
  gap: 10px;
  color: var(--hc-ink);
  cursor: pointer;
}

.hc-multiselect__option:hover,
.hc-multiselect__option:has(input:focus-visible) {
  background: #eef7fa;
}

.hc-multiselect__option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--hc-campaign-blue);
}

.hc-multiselect__option input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(40, 208, 240, 0.3);
  outline-offset: 2px;
}

.hc-multiselect__code {
  display: inline-flex;
  min-width: 38px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border: 1px solid rgba(24, 56, 96, 0.16);
  border-radius: 7px;
  background: #f4f8fb;
  color: var(--hc-campaign-blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hc-multiselect__name {
  min-width: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.32;
}

.hc-multiselect__empty {
  padding: 18px 10px;
  margin: 0;
  color: #5c6875;
  font-size: 14px;
  text-align: center;
}

.hc-multiselect__clear {
  padding: 8px 4px 2px;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--hc-campaign-blue);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.hc-multiselect__clear:disabled {
  color: #7c8792;
  cursor: default;
  opacity: 0.6;
}

.hc-multiselect__chips {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 7px;
}

.hc-multiselect__chips:empty {
  display: none;
}

.hc-multiselect__chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px 6px 12px;
  border: 1px solid rgba(24, 56, 96, 0.2);
  border-radius: 999px;
  gap: 8px;
  appearance: none;
  background: rgba(40, 208, 240, 0.14);
  color: var(--hc-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
}

.hc-multiselect__chip span:last-child {
  color: var(--hc-campaign-blue-deep);
  font-size: 19px;
  line-height: 0.8;
}

.hc-multiselect__chip:hover {
  border-color: var(--hc-campaign-turquoise);
  background: rgba(40, 208, 240, 0.25);
}

.hc-multiselect__chip:focus-visible {
  outline: 3px solid rgba(40, 208, 240, 0.32);
  outline-offset: 2px;
}

.hc-multiselect:has(.hc-multiselect__source.wpcf7-not-valid) .hc-multiselect__trigger {
  border-color: #b4233c;
  background: #fff8f8;
}

.portfolio-form select {
  padding-right: 52px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--hc-campaign-blue-deep) 50%),
    linear-gradient(135deg, var(--hc-campaign-blue-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) calc(50% - 3px),
    calc(100% - 17px) calc(50% - 3px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.portfolio-form textarea {
  min-height: 190px;
  height: 190px;
  resize: vertical;
}

.portfolio-form input:not([type="checkbox"]):not([type="submit"]):hover,
.portfolio-form select:hover,
.portfolio-form textarea:hover {
  border-color: var(--hc-campaign-blue);
}

.portfolio-form input:focus-visible,
.portfolio-form select:focus-visible,
.portfolio-form textarea:focus-visible {
  border-color: var(--hc-campaign-blue-deep);
  outline: 4px solid rgba(40, 208, 240, 0.28);
  outline-offset: 1px;
}

.portfolio-form .wpcf7-not-valid {
  border-color: #b4233c !important;
  background: #fff8f8 !important;
}

.portfolio-form__consent {
  padding: 19px 20px;
  border: 1px solid rgba(24, 56, 96, 0.2);
  border-radius: var(--hc-radius-control);
  margin-block: 26px 22px;
  background: #f4f8fb;
  color: #3f4c5b;
  font-size: 16px;
}

.portfolio-form__consent .wpcf7-list-item {
  margin: 0;
}

.portfolio-form__consent label {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.portfolio-form__consent input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 2px 0 0;
  border: 2px solid var(--hc-campaign-blue);
  border-radius: 7px;
  appearance: none;
  background: var(--hc-white);
  cursor: pointer;
}

.portfolio-form__consent input[type="checkbox"]:checked {
  border-color: var(--hc-action-amber);
  background-color: var(--hc-action-amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2310212c' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m5 12 4 4L19 7'/%3E%3C/svg%3E");
}

.portfolio-form__consent input[type="checkbox"]:focus-visible {
  outline: 4px solid rgba(40, 208, 240, 0.32);
  outline-offset: 3px;
}

.portfolio-form__actions {
  position: relative;
  margin: 0;
}

.portfolio-form .portfolio-form__actions input[type="submit"] {
  width: 100%;
  min-height: 64px;
  padding: 16px 30px;
  border: 1px solid var(--hc-action-amber);
  border-radius: var(--hc-radius-pill);
  appearance: none;
  background: var(--hc-action-amber);
  box-shadow: 0 12px 30px rgba(242, 190, 28, 0.24);
  color: var(--hc-ink);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.portfolio-form .portfolio-form__actions input[type="submit"]:hover:not(:disabled) {
  border-color: var(--hc-campaign-turquoise);
  background: var(--hc-campaign-turquoise);
  color: var(--hc-ink);
  box-shadow: 0 14px 34px rgba(40, 208, 240, 0.24);
  transform: translateY(-2px);
}

.portfolio-form .portfolio-form__actions input[type="submit"]:disabled {
  border-color: #dfc46c;
  background: #f6db83;
  box-shadow: none;
  color: rgba(16, 33, 44, 0.72);
  cursor: not-allowed;
  opacity: 0.78;
}

.portfolio-form__actions .wpcf7-spinner {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

.hc-fieldset {
  min-width: 0;
  padding: 8px 28px 8px;
  border: 1px solid rgba(24, 56, 96, 0.15);
  border-radius: var(--hc-radius-panel);
  margin: 0 0 24px;
  background: #fbfcfd;
  scroll-margin-top: 150px;
}

.hc-fieldset legend {
  width: auto;
  max-width: calc(100% - 20px);
  padding: 0 10px;
  border: 0;
  margin: 0 0 24px -10px;
  color: var(--hc-ink);
  font-family: var(--hc-display);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 9px;
  color: #a0182b;
  font-size: 14px;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  padding: 17px 20px;
  border-width: 1px;
  border-radius: var(--hc-radius-control);
  margin: 24px 0 0;
  font-size: 15px;
}

.hc-index,
.hc-error {
  min-height: 62vh;
  padding-block: clamp(90px, 12vw, 160px);
}

.hc-index > header h1,
.hc-error h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(54px, 8vw, 110px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hc-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  gap: 20px;
}

.hc-post-grid article {
  padding: 32px;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
}

.hc-post-grid h2 {
  margin: 10px 0;
  font-family: var(--hc-display);
  font-size: 33px;
  line-height: 1.05;
}

.hc-post-grid h2 a {
  text-decoration: none;
}

.hc-meta {
  color: #6b7684;
  font-size: 13px;
}

.hc-footer {
  padding-top: 78px;
  background: #05070b;
  color: var(--hc-white);
}

.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  padding-bottom: 64px;
  gap: clamp(34px, 4vw, 70px);
}

.hc-brand--footer {
  color: var(--hc-white);
}

.hc-footer p,
.hc-footer address {
  max-width: 420px;
  color: #9da7b5;
  font-size: 14px;
  font-style: normal;
}

.hc-footer h2 {
  margin: 0 0 18px;
  color: #717c8c;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hc-footer__grid > div > a:not(.hc-brand),
.hc-footer__legal > a {
  display: block;
  margin-bottom: 9px;
  color: #dce1e8;
  font-size: 14px;
  text-decoration: none;
}

.hc-footer__grid > div > a:hover,
.hc-footer__legal > a:hover {
  color: var(--hc-signal);
}

.hc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-top: 1px solid var(--hc-line);
  color: #737e8d;
  font-size: 12px;
}

.hc-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hc-footer__bottom a {
  text-decoration: none;
}

.hc-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1200;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.hc-consent[hidden] {
  display: none !important;
}

.hc-consent__dialog {
  width: min(720px, calc(100vw - 48px));
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(40, 208, 240, 0.26);
  border-radius: var(--hc-radius-panel);
  background: rgba(247, 250, 252, 0.98);
  box-shadow: 0 30px 80px rgba(8, 11, 18, 0.28);
  color: var(--hc-ink);
  pointer-events: auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hc-consent__copy {
  display: grid;
  gap: 10px;
}

.hc-consent__copy .hc-meta {
  margin: 0;
  color: var(--hc-campaign-blue);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-consent__copy h2 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hc-consent__copy > p:last-child {
  max-width: 62ch;
  margin: 0;
  color: #465365;
  font-size: 16px;
}

.hc-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  gap: 10px;
}

.hc-consent__actions .hc-button,
.hc-consent-trigger {
  cursor: pointer;
}

.hc-consent__actions .hc-button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 13px;
}

.hc-consent-trigger {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1190;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(24, 56, 96, 0.24);
  border-radius: var(--hc-radius-pill);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(8, 11, 18, 0.16);
  color: var(--hc-campaign-blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.hc-consent-trigger:hover,
.hc-consent-trigger:focus-visible {
  border-color: var(--hc-campaign-turquoise);
  background: var(--hc-white);
}

.hc-decision-paths {
  padding-block: clamp(82px, 9vw, 132px);
  border-bottom: 1px solid var(--hc-dark-line);
  background: #edf4f8;
}

.hc-decision-paths__intro,
.hc-insights-preview__header,
.hc-insights-hub__intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
  gap: clamp(28px, 7vw, 100px);
}

.hc-insights-hub__intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.hc-insights-hub__intro h2 {
  font-size: clamp(42px, 5.2vw, 70px);
}

.hc-decision-paths__intro h2,
.hc-insights-preview__header h2,
.hc-insights-hub__intro h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-decision-paths__intro p,
.hc-insights-preview__header > p,
.hc-insights-hub__intro > p {
  max-width: 680px;
  margin: 0;
  color: #4e5c6b;
  font-size: clamp(17px, 1.7vw, 20px);
}

.hc-decision-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hc-decision-paths__grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hc-decision-paths__grid article:hover,
.hc-decision-paths__grid article:focus-within {
  border-color: rgba(40, 208, 240, 0.8);
  box-shadow: 0 24px 60px rgba(24, 56, 96, 0.12);
  transform: translateY(-5px);
}

.hc-decision-paths__grid article > span {
  color: var(--hc-campaign-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hc-decision-paths__grid h3 {
  margin: 52px 0 20px;
  font-family: var(--hc-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hc-decision-paths__grid p {
  margin: 0;
  color: #526071;
}

.hc-decision-paths__grid article > div {
  display: grid;
  padding-top: 28px;
  border-top: 1px solid var(--hc-dark-line);
  margin-top: auto;
  gap: 12px;
}

.hc-decision-paths__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  font-weight: 800;
  text-decoration: none;
}

.hc-decision-paths__grid a::after {
  content: "↗";
}

.hc-home-evidence {
  padding-block: clamp(76px, 9vw, 132px);
  background: var(--hc-ink);
  color: var(--hc-white);
}

.hc-home-evidence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 18px;
}

.hc-home-evidence__case,
.hc-home-evidence__person {
  border-radius: var(--hc-radius);
}

.hc-home-evidence__case {
  min-height: 500px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid var(--hc-line);
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 208, 240, 0.18), transparent 30%),
    var(--hc-campaign-blue-deep);
}

.hc-home-evidence__case h2 {
  max-width: 850px;
  margin: 0 0 26px;
  font-family: var(--hc-display);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hc-home-evidence__case > p:not(.hc-kicker) {
  max-width: 720px;
  color: #dbe5ef;
}

.hc-home-evidence__case .hc-home-evidence__note {
  color: #b7c6d6;
  font-size: 15px;
}

.hc-home-evidence__case .hc-button {
  margin-top: 24px;
}

.hc-home-evidence__person {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 50px);
  background: linear-gradient(150deg, #d6f7fb, var(--hc-campaign-turquoise));
  color: var(--hc-ink);
}

.hc-home-evidence__monogram {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(16, 33, 44, 0.24);
  border-radius: 50%;
  font-family: var(--hc-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hc-home-evidence__person h3 {
  margin: 12px 0 18px;
  font-family: var(--hc-display);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hc-insights-preview,
.hc-insights-hub {
  padding-block: clamp(84px, 10vw, 148px);
  background: var(--hc-white);
}

.hc-insights-hub {
  border-bottom: 1px solid var(--hc-dark-line);
}

.hc-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hc-insight-grid article {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius);
  background: #f7fafc;
}

.hc-insight-grid article:nth-child(2) {
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-insight-grid article:nth-child(2) .hc-meta,
.hc-insight-grid article:nth-child(2) > p:not(.hc-meta) {
  color: #c9d8e6;
}

.hc-insight-grid h3 {
  margin: 54px 0 22px;
  font-family: var(--hc-display);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-insight-grid h3 a {
  text-decoration: none;
}

.hc-insight-grid article > p:not(.hc-meta) {
  max-width: 620px;
  margin: 0;
  color: #526071;
}

.hc-insight-grid .hc-text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 26px;
}

.hc-insights-preview__all {
  margin-top: 32px;
}

.hc-editorial-standard {
  padding-block: clamp(72px, 8vw, 112px);
  background: #edf4f8;
}

.hc-editorial-standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: clamp(36px, 8vw, 120px);
}

.hc-editorial-standard h2 {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hc-editorial-standard ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-editorial-standard li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hc-dark-line);
  font-weight: 700;
}

.hc-insight-article {
  padding-block: clamp(72px, 9vw, 132px);
  background: var(--hc-white);
}

.hc-insight-article__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 140px);
}

.hc-insight-article__meta {
  position: sticky;
  top: 140px;
}

.hc-insight-article__meta dl {
  margin: 36px 0;
}

.hc-insight-article__meta dl > div {
  padding-block: 14px;
  border-bottom: 1px solid var(--hc-dark-line);
}

.hc-insight-article__meta dt {
  color: #667384;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hc-insight-article__meta dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.hc-insight-article__body {
  max-width: 830px;
}

.hc-insight-article__lead {
  margin: 0 0 46px;
  font-family: var(--hc-display);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hc-insight-article__body > h2,
.hc-insight-next h2 {
  margin: clamp(58px, 8vw, 88px) 0 20px;
  font-family: var(--hc-display);
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hc-insight-article__body > p,
.hc-insight-steps {
  color: #364554;
  font-size: 18px;
  line-height: 1.72;
}

.hc-insight-callout {
  padding: clamp(26px, 4vw, 42px);
  border-left: 5px solid var(--hc-campaign-turquoise);
  margin: 44px 0 70px;
  background: #edf7fa;
}

.hc-insight-callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hc-insight-callout p {
  margin: 0;
}

.hc-insight-steps {
  padding-left: 1.35em;
}

.hc-insight-steps li {
  padding: 10px 0 10px 10px;
}

.hc-insight-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 42px 68px;
  gap: 14px;
}

.hc-insight-model article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--hc-dark-line);
  border-radius: var(--hc-radius-panel);
  background: #f7fafc;
}

.hc-insight-model span {
  color: var(--hc-campaign-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hc-insight-model h3 {
  margin: 32px 0 12px;
  font-family: var(--hc-display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hc-insight-model p {
  margin: 0;
  color: #526071;
  font-size: 16px;
}

.hc-insight-next {
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--hc-radius);
  margin-top: 78px;
  background: var(--hc-campaign-blue-deep);
  color: var(--hc-white);
}

.hc-insight-next h2 {
  margin-top: 0;
}

.hc-insight-next > p:not(.hc-kicker) {
  color: #d8e3ed;
}

[data-reveal] {
	opacity: 1;
	transform: none;
	transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-reveal-ready {
	opacity: 0;
	transform: translateY(22px);
}

[data-reveal].is-reveal-ready.is-visible,
[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1080px) {
  .hc-nav .hc-menu {
    display: none;
  }

  .hc-hero__inner,
  .hc-cta__inner {
    grid-template-columns: 1fr;
  }

  .hc-decision-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-decision-paths__grid article:last-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .hc-home-evidence__grid,
  .hc-editorial-standard__grid {
    grid-template-columns: 1fr;
  }

  .hc-home-evidence__person {
    min-height: 360px;
  }

  .hc-insight-article__layout {
    grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
    gap: 54px;
  }

  .hc-hero__aside {
    max-width: 640px;
  }

  .hc-section__intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .hc-about-accountability__grid,
  .hc-featured-case__grid,
  .hc-case-intro__grid,
  .hc-case-verification__grid {
    grid-template-columns: 1fr;
  }

  .hc-about-principles,
  .hc-case-challenge-grid,
  .hc-case-system__grid,
  .hc-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-case-system__intro,
  .hc-evidence-section__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hc-product-overview__grid,
  .hc-product-delivery {
    grid-template-columns: minmax(0, 1fr);
  }

  .hc-commercial-header,
  .hc-commercial-grid {
    grid-template-columns: 1fr;
  }

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

  .hc-ladder-grid article {
    min-height: 250px;
  }

  .hc-product-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hc-product-facts div {
    border-right: 1px solid var(--hc-dark-line);
    border-bottom: 0;
  }

  .hc-product-facts div:last-child {
    border-right: 0;
  }

  .hc-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 40px;
  }

  .hc-form-layout {
    grid-template-columns: 1fr;
  }

  .hc-form-guide {
    position: static;
  }

  .hc-form-guide ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hc-form-guide li {
    grid-template-columns: 42px 1fr;
  }

  .hc-form-guide__trust {
    padding-left: 0;
  }
}

@media (max-width: 780px) {
  body.admin-bar .hc-header {
    top: 46px;
  }

  .hc-shell,
  .hc-editorial > *,
  .portfolio-form-shell,
  .hc-form-shell {
    width: min(calc(100% - 32px), var(--hc-max));
  }

  .hc-decision-paths__intro,
  .hc-insights-preview__header,
  .hc-insights-hub__intro,
  .hc-insight-article__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hc-decision-paths__grid,
  .hc-insight-grid,
  .hc-insight-model {
    grid-template-columns: 1fr;
  }

  .hc-decision-paths__grid article,
  .hc-decision-paths__grid article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .hc-decision-paths__grid article > div {
    margin-top: 38px;
  }

  .hc-home-evidence__case,
  .hc-home-evidence__person,
  .hc-insight-grid article {
    min-height: 0;
  }

  .hc-home-evidence__person {
    gap: 62px;
  }

  .hc-insight-article__meta {
    position: static;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hc-dark-line);
  }

  .hc-insight-model article {
    min-height: 0;
  }

  .hc-topline__inner {
    justify-content: center;
  }

  .hc-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-items: stretch;
  }

  .hc-consent__dialog {
    width: auto;
    padding: 22px;
  }

  .hc-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hc-consent__actions .hc-button {
    width: 100%;
  }

  .hc-consent-trigger {
    left: 12px;
    bottom: 12px;
  }

  .hc-page-hero::after,
  .hc-cta::after {
    right: 0;
  }

  .hc-product-overview h2,
  .hc-product-delivery h2 {
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .hc-topline a {
    display: none;
  }

  .hc-header__inner {
    min-height: 72px;
  }

  .hc-brand-copy small,
  .hc-nav {
    display: none;
  }

  .hc-mobile-menu {
    display: block;
  }

  .hc-mobile-menu:not([open]) > nav {
    display: none;
  }

  .hc-hero {
    background:
      linear-gradient(160deg, rgba(24, 56, 96, 0.99) 0%, rgba(24, 56, 96, 0.92) 58%, rgba(16, 33, 44, 0.74) 100%),
      url("../images/people/heavy-campaigns-collaboration-hands-portrait-01.webp") center / cover;
  }

  .hc-editorial-image,
  .hc-editorial-image--panoramic {
    border-radius: 22px;
    aspect-ratio: 4 / 5;
  }

  .hc-editorial-image--panoramic {
    aspect-ratio: 4 / 3;
  }

  .hc-mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 1px solid var(--hc-dark-line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .hc-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .hc-mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px;
    background: var(--hc-ink);
    transition: transform 160ms ease;
  }

  .hc-mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hc-mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hc-mobile-menu > nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 24px 16px 30px;
    border-top: 1px solid var(--hc-dark-line);
    background: var(--hc-paper);
    box-shadow: 0 22px 50px rgba(8, 11, 18, 0.16);
  }

  .hc-mobile-menu .hc-menu {
    display: grid;
    gap: 0;
  }

  .hc-mobile-menu .hc-menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--hc-dark-line);
    font-size: 18px;
  }

  .hc-mobile-menu .hc-button {
    width: 100%;
    margin-top: 22px;
  }

  .hc-mobile-menu .hc-language {
    margin-top: 18px;
  }

  .hc-hero,
  .hc-hero__inner {
    min-height: auto;
  }

  .hc-hero__inner {
    padding-block: 90px 54px;
    gap: 48px;
  }

  .hc-proof-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-reference-rail__header,
  .hc-reference-overview__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hc-reference-rail__header {
    display: grid;
    gap: 18px;
  }

  .hc-reference-rail__header .hc-text-link {
    justify-self: start;
  }

  .hc-reference-rail__item {
    width: 164px;
    height: 88px;
    flex-basis: 164px;
    padding: 18px 24px;
  }

  .hc-reference-logo__image {
    max-width: 120px;
    max-height: 42px;
  }

  .hc-reference-overview__intro {
    gap: 22px;
  }

  .hc-reference-overview__intro .hc-kicker {
    margin-bottom: 0;
  }

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

  .hc-about-accountability__grid,
  .hc-about-standards__intro,
  .hc-case-system__intro,
  .hc-evidence-section__intro {
    gap: 24px;
  }

  .hc-about-accountability__grid {
    grid-template-columns: 1fr;
  }

  .hc-about-principles,
  .hc-about-standards__grid,
  .hc-case-challenge-grid,
  .hc-case-system__grid,
  .hc-evidence-grid {
    grid-template-columns: 1fr;
  }

  .hc-about-principles article,
  .hc-case-challenge-grid article,
  .hc-case-system__grid article,
  .hc-evidence-grid article {
    min-height: 0;
  }

  .hc-about-principles span,
  .hc-case-challenge-grid span,
  .hc-case-system__grid span,
  .hc-evidence-grid span {
    margin-bottom: 30px;
  }

  .hc-about-standards__intro,
  .hc-case-system__intro,
  .hc-evidence-section__intro {
    grid-template-columns: 1fr;
  }

  .hc-leadership-card {
    min-height: 0;
  }

  .hc-reference-card {
    min-height: 218px;
    padding: 20px;
  }

  .hc-proof:nth-child(2) {
    border-right: 1px solid var(--hc-dark-line);
  }

  .hc-proof:nth-child(n + 3) {
    border-top: 1px solid var(--hc-dark-line);
  }

  .hc-service-card {
    grid-column: 1 / -1;
  }

  .hc-process__step {
    grid-template-columns: 46px 1fr;
  }

  .hc-process__step p {
    grid-column: 2;
  }

  .hc-split,
  .hc-price-table,
  .hc-ladder-grid,
  .hc-module-grid,
  .portfolio-form__grid,
  .hc-post-grid {
    grid-template-columns: 1fr;
  }

  .hc-ladder-grid article,
  .hc-module-grid article {
    min-height: 0;
  }

  .hc-ladder-grid article > span,
  .hc-module-grid article > span {
    margin-bottom: 30px;
  }

  .hc-form-section__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hc-form-guide {
    padding: 24px;
  }

  .hc-form-guide ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hc-form-guide li {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 14px 0 8px;
    gap: 10px;
  }

  .hc-form-guide li p {
    display: none;
  }

  .hc-form-guide li strong {
    font-size: 13px;
  }

  .hc-form-guide__trust {
    padding-top: 18px;
    margin-top: 16px;
  }

  .hc-form-layout .portfolio-form-shell,
  .hc-form-shell {
    padding: 24px;
    border-radius: var(--hc-radius-panel);
  }

  .hc-fieldset {
    padding: 8px 20px 4px;
    border-radius: var(--hc-radius-control);
  }

  .portfolio-form input:not([type="checkbox"]):not([type="submit"]),
  .portfolio-form select,
  .portfolio-form textarea {
    min-height: 58px;
    font-size: 16px;
  }

  .portfolio-form textarea {
    min-height: 170px;
    height: 170px;
  }

  .hc-multiselect__trigger {
    min-height: 58px;
    font-size: 16px;
  }

  .hc-field-help__panel {
    width: 100%;
    font-size: 14px;
  }

  .hc-multiselect__panel {
    padding: 13px;
  }

  .hc-multiselect__options {
    max-height: min(280px, 42vh);
  }

  .hc-multiselect__option {
    min-height: 48px;
    padding-inline: 6px;
  }

  .hc-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hc-benefit-grid article {
    min-height: 250px;
  }

  .hc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hc-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .hc-brand-mark {
    width: 36px;
    flex-basis: 36px;
  }

  .hc-brand-copy strong {
    font-size: 16px;
  }

  .hc-hero h1,
  .hc-page-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hc-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hc-actions .hc-button,
  .hc-actions .hc-text-link {
    width: 100%;
  }

  .hc-decision-paths__intro h2,
  .hc-insights-preview__header h2,
  .hc-insights-hub__intro h2,
  .hc-home-evidence__case h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hc-home-evidence__monogram {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }

  .hc-insight-article__body > p,
  .hc-insight-steps {
    font-size: 17px;
  }

  .hc-product-facts,
  .hc-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .hc-product-facts div,
  .hc-product-facts div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--hc-dark-line);
  }

  .hc-product-facts div:last-child {
    border-bottom: 0;
  }

  .hc-price-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hc-proof-strip__inner,
  .hc-footer__grid {
    grid-template-columns: 1fr;
  }

  .hc-reference-card {
    min-height: 205px;
    padding: 16px;
  }

  .hc-reference-card__logo {
    min-height: 98px;
    padding: 14px;
  }

  .hc-reference-card__logo .hc-reference-logo__image {
    max-width: 135px;
    max-height: 54px;
  }

  .hc-reference-card h3 {
    font-size: 17px;
  }

  .hc-featured-case dl > div,
  .hc-case-scorecard > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hc-about-standards__grid article {
    min-height: 0;
  }

  .hc-evidence-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hc-proof,
  .hc-proof:last-child,
  .hc-proof:nth-child(2) {
    border-right: 1px solid var(--hc-dark-line);
  }

  .hc-footer__grid > div:first-child {
    grid-column: auto;
  }

  .hc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hc-reference-rail {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hc-reference-rail__track {
    animation: none;
  }

  .hc-reference-rail__group[aria-hidden="true"] {
    display: none;
  }
}

@media (hover: none) {
  .hc-reference-logo__image {
    filter: none;
    opacity: 0.94;
  }
}

@media print {
  .hc-topline,
  .hc-header,
  .hc-footer,
  .hc-cta {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
