@charset "UTF-8";
.hw-animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.hw-animate.is-animated {
  opacity: 1;
  transform: none;
}

.hw-animate[data-animate=fade-in] {
  transform: none;
}

.hw-animate[data-animate=fade-in].is-animated {
  opacity: 1;
}

.hw-animate[data-animate=fade-up] {
  transform: translateY(16px);
}

.hw-animate[data-animate=slide-up] {
  transform: translateY(24px);
}

.hw-hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--wp--preset--spacing--lg, 2rem);
  align-items: center;
  padding-top: var(--wp--preset--spacing--xl, 3rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-hero-split__left {
  display: grid;
  gap: var(--wp--preset--spacing--md, 1.5rem);
}

.hw-hero-split__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--sm, 1rem);
}

.hw-gradient-text {
  background-image: linear-gradient(90deg, var(--wp--preset--color--primary), var(--wp--preset--color--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hw-hero-split__right {
  position: relative;
  min-height: 360px;
}

.hw-hero-split__visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hw-hero-split__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.hw-hero-split__decor--tl {
  top: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
}

.hw-hero-split__decor--br {
  bottom: -16px;
  right: -12px;
  width: 160px;
  height: 160px;
}

@media (max-width: 960px) {
  .hw-hero-split {
    grid-template-columns: 1fr;
  }
  .hw-hero-split__right {
    min-height: 300px;
  }
}
/* ============================= */
/* Homepage Intro (Figma)        */
/* ============================= */
.hw-home-intro {
  color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-home-intro__inner {
  padding-inline: clamp(16px, 5vw, 72px);
  padding-top: var(--wp--preset--spacing--2-xl, 4rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--wp--preset--spacing--lg, 2rem);
  align-items: start;
}

.hw-home-intro__title {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hw-home-intro__earth {
  color: #4651b7; /* periwinkle-dark in Figma */
  display: inline-block;
  padding-left: 0.25ch;
}

.hw-home-intro {
  padding-inline: clamp(16px, 5vw, 72px);
  padding-top: 128px;
  padding-bottom: 40px;
  position: relative;
}

.hw-home-intro__main {
  display: grid;
  gap: var(--wp--preset--spacing--md, 1.5rem);
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  width: auto;
}

.hw-home-intro__pills {
  --hw-pill-progress: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}

.hw-home-intro .wp-block-columns {
  border: 1px solid #ffffff;
  padding: 2rem;
  width: var(--global-calc-content-width);
  position: relative;
  flex-direction: row-reverse;
  margin: auto;
  padding-bottom: 50px;
}

.hw-home-intro .wp-block-column {
  position: relative;
}

.hw-home-intro .hw-home-intro__side {
  position: absolute;
  width: 75%;
  z-index: 1;
  top: -180px;
  right: -10px;
  background-color: #000000;
}

.hw-home-intro__pill {
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
}

/* Left pill: starts at fixed 202px, grows modestly as user scrolls */
.hw-home-intro__pill:first-child {
  flex: calc(var(--hw-pill-progress) * 0.32) 0 202px;
}

/* Right pill: starts filling remaining space, shrinks as user scrolls */
.hw-home-intro__pill:last-child {
  flex: calc(1 - var(--hw-pill-progress) * 0.2) 0 56px;
}

/* Hide any legacy button-link text/styling inside the pill lozenges */
.hw-home-intro__pill .wp-block-button__link {
  background: transparent !important;
  border: 0 !important;
  color: transparent;
  font-size: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.hw-home-intro__pill-mid {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--wp--preset--color--primary, #ff56ee);
  color: var(--wp--preset--color--neutral-100, #fff);
  border: 1px solid rgba(0, 0, 0, 0.65);
  overflow: hidden;
  /* Rotate arrow from ↓ (0deg) to → (-90deg) as scroll progresses */
  transform: rotate(calc(var(--hw-pill-progress) * -90deg));
  will-change: transform;
}

/* Override theme button styling inside the arrow circle */
.hw-home-intro__pill-mid .wp-block-button__link {
  background: transparent !important;
  border: 0 !important;
  color: inherit;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.hw-home-intro__support {
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: clamp(18px, 2vw, 56px);
}

.hw-home-intro__support-text {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1.125rem, 1.5vw, 1.75rem);
  line-height: 1.35;
}

.hw-home-intro__side-frame {
  border: 1px dashed rgba(255, 255, 255, 0.7);
  padding: 18px;
}

.hw-home-intro__side-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hw-home-intro__side-body {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.hw-home-intro__side-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.8rem);
  line-height: 1.1;
}

.hw-home-intro__side-copy {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.45;
  opacity: 0.95;
}

.hw-home-intro__side-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  padding: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hw-home-intro__btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid #000000;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--radio-grotesk, inherit);
  border-radius: 0;
}

.hw-home-intro__btn--primary .wp-block-button__link {
  background: #4651b7;
  color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hw-home-intro__btn--secondary .wp-block-button__link {
  background: #ffffff;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.85);
}

.hw-home-intro__btn--secondary .wp-block-button__link:hover,
.hw-home-intro__btn--secondary .wp-block-button__link:focus {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hw-home-intro {
    padding-top: 48px;
  }
  .hw-home-intro__inner {
    grid-template-columns: 1fr;
  }
  .hw-home-intro__pills {
    gap: 12px;
  }
  .hw-home-intro__pill {
    height: 48px;
  }
  .hw-home-intro__pill-mid {
    width: 48px;
    height: 48px;
  }
  .hw-home-intro .hw-home-intro__side {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    background-color: transparent;
  }
}
.gs_logo_area {
  background-color: #ffffff;
  padding: 0.5rem 0;
  border-top: 1px solid #000000;
}

.gs_logo_title {
  display: none;
}

.hw-centered-intro--what-we-do h2 {
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-centered-intro--what-we-do {
  background-color: #ffffff;
  color: var(--wp--preset--color--neutral-900, #000);
  padding: 2rem;
  position: relative;
}

/* ============================= */
/* Homepage Statement (Periwinkle) */
/* ============================= */
.hw-home-statement {
  background: var(--wp--preset--color--secondary, #828df3);
  color: var(--wp--preset--color--neutral-900, #000);
  padding: var(--wp--preset--spacing--2-xl, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Floating illustration pseudo-elements — parallax-driven via --hw-parallax */
/* 1 · Fuchsia wavy ellipse — top-left */
.hw-home-statement::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -120px;
  background: url("../../assets/illustrations/ellipse.png") center/contain no-repeat;
  transform: translate(calc(var(--hw-parallax, 0) * -50px), calc(var(--hw-parallax, 0) * -30px)) rotate(calc(-12deg + var(--hw-parallax, 0) * 10deg));
  pointer-events: none;
  z-index: 0;
}

/* 2 · Yellow rectangle — bottom-right */
.hw-home-statement::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 150px;
  right: 40px;
  bottom: -20px;
  background: url("../../assets/illustrations/yellow_rectangle.png") center/contain no-repeat;
  transform: translate(calc(var(--hw-parallax, 0) * -80px), calc(var(--hw-parallax, 0) * 65px)) rotate(calc(8deg + var(--hw-parallax, 0) * -14deg));
  pointer-events: none;
  z-index: 0;
}

.hw-home-statement__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* 3 · Pink rectangle — top-right */
.hw-home-statement__inner::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 115px;
  right: -30px;
  top: -25px;
  background: url("../../assets/illustrations/pink_rectangle.png") center/contain no-repeat;
  transform: translate(calc(var(--hw-parallax, 0) * -65px), calc(var(--hw-parallax, 0) * -90px)) rotate(calc(15deg + var(--hw-parallax, 0) * 12deg));
  pointer-events: none;
  z-index: -1;
}

/* 4 · Small purple diamond — bottom-left */
.hw-home-statement__inner::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  left: 20px;
  bottom: -30px;
  background: url("../../assets/illustrations/purple_rectangle_small.png") center/contain no-repeat;
  transform: translate(calc(var(--hw-parallax, 0) * 90px), calc(var(--hw-parallax, 0) * 50px)) rotate(calc(-20deg + var(--hw-parallax, 0) * -16deg));
  pointer-events: none;
  z-index: 0;
}

.hw-home-statement__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4.25rem);
  line-height: 1.5;
}

.hw-home-statement__title .h-header-pixel {
  color: var(--wp--preset--color--neutral-900, #000);
  border: 2px solid #000000;
  padding: 12px 24px;
  border-radius: 48px;
  white-space: nowrap;
}

.hw-home-statement__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.hw-home-statement__sub {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  line-height: 1.15;
}

.hw-home-statement__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #000000;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.35);
}

/* Services Grid Cards */
.hw-services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
  align-items: center;
}

.hw-services-grid::before {
  content: " ";
  position: absolute;
  top: 80px;
  left: -15px;
  width: calc(100% + 20px);
  height: 36px;
  border: 1px solid #000000;
  border-radius: 18px;
}

.hw-services-grid::after {
  content: " ";
  position: absolute;
  bottom: 60px;
  left: 0px;
  width: 100%;
  height: 36px;
  border: 1px solid #000000;
}

.hw-services-grid .hw-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-services-grid .hw-card:hover, .hw-services-grid .hw-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.hw-services-grid .hw-card {
  border: 1px solid #000000;
  z-index: 1;
}
.hw-services-grid .hw-card:hover, .hw-services-grid .hw-card:focus-within {
  border-color: var(--hw-card-border-hover, currentColor);
}

.hw-card__icon {
  width: 40px;
  height: 40px;
  color: var(--hw-card-icon, currentColor);
  margin-bottom: var(--wp--preset--spacing--sm, 1rem);
  margin-top: var(--wp--preset--spacing--md, 1.5rem);
  margin-left: var(--wp--preset--spacing--md, 1.5rem);
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.hw-card__icon.is-icon-dev {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Brackets.svg");
}

.hw-card__icon.is-icon-team {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-TalkBubble.svg");
}

.hw-card__icon.is-icon-design {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Webpage.svg");
}

.hw-card__icon.is-icon-strategy {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Check.svg");
}

.hw-card__title {
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
  color: var(--wp--preset--color--neutral-500, #000);
  padding: 0 var(--wp--preset--spacing--md, 1.5rem);
}

.hw-card__link,
.hw-card__link:visited {
  text-decoration: none;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-card__link:hover,
.hw-card__link:focus {
  text-decoration: underline;
}

.hw-card__desc {
  margin: 0 0 var(--wp--preset--spacing--sm, 1rem) 0;
  padding: 0 var(--wp--preset--spacing--md, 1.5rem);
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.hw-card .wp-block-button {
  width: 100%;
}

.hw-card .wp-block-button.is-style-outline .wp-block-button__link,
.hw-card .wp-block-button .wp-block-button__link,
.hw-card .wp-block-button .wp-block-button__link:visited {
  color: #000000;
  border-top: 1px solid transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  text-align: left;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hw-card .wp-block-button.is-style-outline .wp-block-button__link:hover,
.hw-card .wp-block-button.is-style-outline .wp-block-button__link:focus,
.hw-card .wp-block-button .wp-block-button__link:hover,
.hw-card .wp-block-button .wp-block-button__link:focus {
  color: #000000;
  border-top-color: var(--wp--preset--color--neutral-900, #000);
}

.wp-block-button .wp-block-button__link span {
  float: right;
}

.section-services {
  background: #f5f5f5;
}

.hw-card {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hw-card.is-variant-1 {
  --hw-card-border: v.$color-fuchsia;
  box-shadow: 8px 8px 0 #ff56ee;
}

.hw-card.is-variant-1 .wp-block-button .wp-block-button__link {
  background-color: rgba(255, 86, 238, 0.1);
}

.hw-card.is-variant-1 .wp-block-button .wp-block-button__link:hover,
.hw-card.is-variant-1 .wp-block-button .wp-block-button__link:focus {
  background-color: #ff56ee;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-card.is-variant-2 {
  --hw-card-border: v.$color-peach;
  box-shadow: 8px 8px 0 #ffa765;
}

.hw-card.is-variant-2 .wp-block-button .wp-block-button__link {
  background-color: rgba(255, 167, 101, 0.1);
}

.hw-card.is-variant-2 .wp-block-button .wp-block-button__link:hover,
.hw-card.is-variant-2 .wp-block-button .wp-block-button__link:focus {
  background-color: #ffa765;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-card.is-variant-3 {
  --hw-card-border: v.$color-pear;
  box-shadow: 8px 8px 0 #d7db4f;
}

.hw-card.is-variant-3 .wp-block-button .wp-block-button__link {
  background-color: rgba(215, 219, 79, 0.1);
}

.hw-card.is-variant-3 .wp-block-button .wp-block-button__link:hover,
.hw-card.is-variant-3 .wp-block-button .wp-block-button__link:focus {
  background-color: #d7db4f;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-card.is-variant-4 {
  --hw-card-border: v.$color-periwinkle;
  box-shadow: 8px 8px 0 #828df3;
}

.hw-card.is-variant-4 .wp-block-button .wp-block-button__link {
  background-color: rgba(130, 141, 243, 0.1);
}

.hw-card.is-variant-4 .wp-block-button .wp-block-button__link:hover,
.hw-card.is-variant-4 .wp-block-button .wp-block-button__link:focus {
  background-color: #828df3;
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (max-width: 1200px) {
  .hw-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .hw-services-grid {
    grid-template-columns: 1fr;
  }
  .hw-services-grid::before,
  .hw-services-grid::after {
    display: none;
  }
}
/* Value Props Orange Section */
.hw-vp-section {
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-vp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin: 0;
  padding-inline: clamp(16px, 5vw, 72px);
}

.hw-vp-card {
  background: var(--wp--preset--color--neutral-100, #fff);
  border-radius: var(--wp--custom--radius--md, 8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--wp--preset--spacing--md, 1.5rem);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-vp-card:hover, .hw-vp-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hw-vp-card.is-wiggling {
  animation: hw-wiggle 0.6s ease-in-out;
}

.hw-vp-card h3 {
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-vp-card p {
  margin: 0;
}

/* Value Props - Long-term (Homepage) */
.hw-vp-longterm.wp-block-group.has-background {
  position: relative;
  overflow: hidden;
  color: var(--wp--preset--color--neutral-900, #000);
  padding-top: 64px;
  padding-bottom: 120px;
  background-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-vp-longterm.wp-block-group.has-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../../assets/images/waves.svg);
  transform: rotate(-30deg);
  height: 200%;
  top: -1000px;
  width: 200%;
  background-size: 90%;
  left: -1000px;
}
.hw-vp-longterm.wp-block-group.has-background > * {
  position: relative;
  z-index: 1;
}

.hw-vp-longterm .hw-vp-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: nowrap;
  border: 1px solid #000000;
  border-radius: 0;
  padding: 64px 40px;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
}

.hw-vp-longterm .hw-vp-longterm__head {
  background: #000000;
  color: #ffffff;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  padding: clamp(18px, 4vw, 70px);
  margin-bottom: var(--wp--preset--spacing--2-xl, 4rem);
  /* Full-bleed left, text aligned with page content grid.
     At narrow viewports the grid fills the section so the centering offset is 0.
     At wide viewports the grid (max-width 1520px) centers inside the section
     (which has 30px padding each side), so the centering offset grows. */
  --_section-pad: 30px;
  --_grid-max: 1520px;
  --_grid-pad: clamp(16px, 5vw, 72px);
  --_center-offset: max(0px, (100vw - 2 * var(--_section-pad) - var(--_grid-max)) / 2);
  width: fit-content !important;
  max-width: none !important;
  margin-left: calc(-1 * var(--_section-pad)) !important;
  margin-right: auto !important;
  padding-left: calc(var(--_section-pad) + var(--_center-offset) + var(--_grid-pad)) !important;
}

.hw-vp-longterm__head .hw-vp-longterm__accent {
  font-size: clamp(52px, 9.2vw, 136px);
}

.hw-vp-longterm__title {
  margin: 0 0 12px 0;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.05;
  color: inherit;
}

.hw-vp-longterm__accent {
  color: var(--wp--preset--color--primary, #ff56ee);
  display: inline-block;
  padding-left: 0.25ch;
}

.hw-vp-longterm__sub {
  margin: 0;
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  line-height: 1.3;
  max-width: 62ch;
}

.hw-vp-icon {
  place-items: center;
  width: 176px;
  height: 176px;
  flex-shrink: 0;
  border-radius: 999px;
  margin-bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hw-vp-icon.is-periwinkle {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-PersonPlus.svg");
}

.hw-vp-icon.is-fuchsia {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Framework2.svg");
}

.hw-vp-icon.is-fuchsia.is-rotate {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Arrow.svg");
}

.hw-vp-icon.is-lime {
  background-image: url("../../assets/images/icons/HLO-042623-Icon-Webpage.svg");
}

.hw-vp-longterm .hw-vp-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hw-vp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hw-vp-longterm .hw-vp-longterm__head {
    --_center-offset: 0px;
    --_grid-pad: 1rem;
    width: fit-content !important;
    max-width: none !important;
    margin-left: calc(-1 * var(--_section-pad)) !important;
    margin-right: auto !important;
    padding-left: calc(var(--_section-pad) + var(--_grid-pad)) !important;
  }
  .hw-vp-longterm .hw-vp-card {
    padding: 32px 24px;
  }
  .hw-vp-icon {
    width: 72px;
    height: 72px;
  }
}
/* Featured Case Studies */
.hw-cs-featured .hw-cs-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--wp--preset--spacing--md, 1.5rem);
  margin-bottom: var(--wp--preset--spacing--md, 1.5rem);
}

.hw-cs-featured .hw-cs-viewall {
  text-decoration: none;
}

.hw-cs-featured .hw-cs-viewall:hover,
.hw-cs-featured .hw-cs-viewall:focus {
  text-decoration: underline;
}

.hw-cs-card {
  display: block;
  border-radius: var(--wp--custom--radius--md, 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-cs-card:hover, .hw-cs-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.hw-cs-card:hover, .hw-cs-card:focus-within {
  border-color: rgba(255, 255, 255, 0.32);
}

.hw-cs-card .entry-title {
  margin: var(--wp--preset--spacing--sm, 1rem) var(--wp--preset--spacing--sm, 1rem) 0 var(--wp--preset--spacing--sm, 1rem);
}

.hw-cs-card .wp-block-post-excerpt {
  margin: 0 var(--wp--preset--spacing--sm, 1rem) var(--wp--preset--spacing--sm, 1rem) var(--wp--preset--spacing--sm, 1rem);
}

/* Homepage Case Studies (Figma) */
.hw-home-cs {
  position: relative;
  padding: var(--wp--preset--spacing--2-xl, 6rem) 0 var(--wp--preset--spacing--xl, 3rem);
  background-image: url("../../assets/illustrations/star.svg");
  background-size: auto 80%;
  background-position: top left;
  background-repeat: no-repeat;
  background-color: #ffffff;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-home-cs__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
}

.hw-home-cs__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--wp--preset--spacing--md, 1.5rem);
  align-items: end;
  padding-bottom: var(--wp--preset--spacing--lg, 2rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.hw-home-cs__title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.05;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-home-cs__pixel {
  padding-left: 0.15ch;
}

.hw-home-cs__sub {
  margin: 8px 0 0 0;
  color: var(--wp--preset--color--gray, #444444);
  font-size: clamp(1.125rem, 1.8vw, 2.25rem);
  line-height: 1.25;
  max-width: 54ch;
}

.hw-home-cs__cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid #000000;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

.hw-home-cs__cta .wp-block-button__link:hover,
.hw-home-cs__cta .wp-block-button__link:focus {
  text-decoration: underline;
}

.hw-home-cs__grid {
  padding-top: var(--wp--preset--spacing--xl, 5rem);
  padding-bottom: var(--wp--preset--spacing--xl, 5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--xl, 3rem);
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.hw-home-cs__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d8d8;
}

.hw-home-cs__media figure {
  margin: 0;
}

.hw-home-cs__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hw-home-cs__accent {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid #000000;
}

.hw-home-cs__grid > li:nth-child(1) .hw-home-cs__accent {
  background: var(--wp--preset--color--primary, #ff56ee);
}

.hw-home-cs__grid > li:nth-child(2) .hw-home-cs__accent {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-home-cs__grid > li:nth-child(3) .hw-home-cs__accent {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-home-cs__accent.is-fuchsia {
  background: var(--wp--preset--color--primary, #ff56ee);
}

.hw-home-cs__accent.is-lime {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-home-cs__accent.is-peach {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-home-cs__h {
  color: #000000;
  margin: 16px 0 0 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.hw-home-cs__h a {
  color: inherit;
  text-decoration: none;
}

.hw-home-cs__h a:hover,
.hw-home-cs__h a:focus {
  text-decoration: underline;
}

.hw-home-cs__client {
  margin: 6px 0 0 0;
  color: var(--wp--preset--color--gray, #444444);
  font-size: 1.25rem;
  line-height: 1.3;
}

.hw-home-cs__empty {
  margin-top: var(--wp--preset--spacing--lg, 2rem);
}

@media (max-width: 960px) {
  .hw-home-cs__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hw-home-cs__grid {
    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--lg, 2rem);
  }
}
@media (max-width: 782px) {
  .hw-home-cs {
    background-size: auto 25%;
    padding-top: 48px;
    padding-bottom: 24px;
  }
  .hw-home-cs__head {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .hw-home-cs__grid {
    padding-top: 32px;
    padding-bottom: 0;
  }
}
/* Decorative backgrounds */
.hw-bg-periwinkle-stripes {
  position: relative;
  background-color: var(--wp--preset--color--secondary);
  /* diagonal stripes using transparency so underlying color shows */
  background-image: repeating-linear-gradient(-20deg, rgba(255, 255, 255, 0.18) 0 8px, rgba(255, 255, 255, 0) 8px 28px);
}

.hw-bg-grid-dark {
  background-color: #000000;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 40px);
}

.hw-panel-gradient {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 100%);
  border-radius: var(--wp--custom--radius--md, 8px);
  min-height: 240px;
}

/* ========================================== */
/* From vision to impact - split w/ mesh       */
/* ========================================== */
.hw-vti {
  color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-vti__title {
  margin: 0;
  color: inherit;
  line-height: 1.05;
}

.hw-vti__lead {
  margin: 12px 0 0 0;
  max-width: 54ch;
  opacity: 0.92;
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  line-height: 1.35;
}

.hw-vti__visual {
  position: relative;
  border-radius: var(--wp--custom--radius--md, 8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  min-height: 320px;
}

@media (max-width: 782px) {
  .hw-vti__visual {
    min-height: 260px;
  }
}
.hw-vti__mesh {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0 1px, rgba(0, 0, 0, 0) 1px 18px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0 1px, rgba(0, 0, 0, 0) 1px 18px), radial-gradient(900px 520px at 18% 30%, rgba(255, 86, 238, 0.85) 0%, rgba(255, 86, 238, 0) 55%), radial-gradient(760px 520px at 72% 28%, rgba(255, 241, 119, 0.85) 0%, rgba(255, 241, 119, 0) 58%), radial-gradient(820px 560px at 76% 78%, rgba(130, 141, 243, 0.85) 0%, rgba(130, 141, 243, 0) 58%), radial-gradient(760px 520px at 22% 80%, rgba(215, 219, 79, 0.72) 0%, rgba(215, 219, 79, 0) 58%), linear-gradient(135deg, rgba(255, 167, 101, 0.55) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  filter: saturate(1.1) contrast(1.05);
}

.hw-vti__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.hw-vti__badges {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hw-vti__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: var(--wp--preset--font-size--sm, 1rem);
  line-height: 1.2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hw-vti__badge:nth-child(1) {
  left: 18px;
  top: 18px;
}

.hw-vti__badge:nth-child(2) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hw-vti__badge:nth-child(3) {
  right: 18px;
  bottom: 18px;
}

/* ===================================================== */
/* Homepage - Work hero ("From vision to impact")         */
/* ===================================================== */
.hw-home-work {
  position: relative;
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  /* Full-width — Figma shows no horizontal margin */
}

/* Header area (columns: title/lead 70% + button 30%) */
.hw-home-work > .wp-block-columns {
  padding: 120px 72px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hw-home-work__title {
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 4.8vw, 4.1875rem);
  line-height: 1.07;
}

.hw-home-work__title .hw-gradient-text {
  color: inherit;
}

.hw-home-work__lead {
  margin: 8px 0 0 0;
  max-width: 54ch;
  opacity: 0.92;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.22;
}

.hw-home-work__buttons {
  justify-content: flex-end;
}

.hw-home-work .wp-block-button.is-style-outline .wp-block-button__link {
  border-radius: 0;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 6px 12px;
  font-size: var(--wp--preset--font-size--sm, 0.875rem);
  line-height: 1.4;
}

.hw-home-work .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hw-home-work .wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

/* Work content (image + list) */
.hw-home-work__grid {
  display: grid;
  grid-template-columns: 653px 1fr;
  gap: 72px 56px;
  padding: 72px 72px 120px;
  align-items: start;
}

@media (max-width: 1200px) {
  .hw-home-work__grid {
    grid-template-columns: 1fr;
  }
}
.hw-home-work__feature-media {
  height: 468px;
  overflow: hidden;
  background: url("../../assets/images/vision-impact.png") no-repeat center center;
  background-size: contain;
}
.hw-home-work__feature-media a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.hw-home-work__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hw-home-work__feature-text {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 24px;
  align-items: center;
}

.hw-home-work__feature-logo {
  margin: 0;
  grid-row: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 75px;
}
.hw-home-work__feature-logo img {
  max-width: 150px;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hw-home-work__feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hw-home-work__feature-client {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.35;
  color: inherit;
}

.hw-home-work__feature-title {
  margin: 0;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1.375rem;
  line-height: 1.25;
  letter-spacing: 0.5px;
  opacity: 0.92;
}

.hw-home-work__list {
  display: grid;
  gap: 32px;
}

.hw-home-work__item {
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
  border: 1px solid rgb(68, 68, 68);
  text-decoration: none;
  color: inherit;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.hw-home-work__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.hw-home-work__item:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.hw-home-work__item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.hw-home-work__item-logo {
  margin: 0;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 75px;
}

.hw-home-work__item-logo img {
  display: block;
  max-width: 150px;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.hw-home-work__item.is-fuchsia:hover .hw-home-work__item-logo img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(93%) saturate(3000%) hue-rotate(285deg) brightness(101%) contrast(101%);
}

.hw-home-work__item.is-periwinkle:hover .hw-home-work__item-logo img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(46%) saturate(1200%) hue-rotate(203deg) brightness(100%) contrast(92%);
}

.hw-home-work__item.is-peach:hover .hw-home-work__item-logo img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(53%) saturate(700%) hue-rotate(334deg) brightness(103%) contrast(101%);
}

.hw-home-work__item.is-lime:hover .hw-home-work__item-logo img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(30%) saturate(700%) hue-rotate(16deg) brightness(97%) contrast(90%);
}

.hw-home-work__item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.5px;
}

.hw-home-work__item-name {
  font-size: 1.375rem;
  line-height: 1.25;
}

.hw-home-work__item-tech {
  font-size: 1rem;
  line-height: 1.35;
  opacity: 0.85;
}

.hw-home-work__item-arrow {
  flex: none;
  margin: 0;
}

.hw-home-work__item-link .wp-block-button__link {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: 2.25rem;
  line-height: 1;
  opacity: 0.95;
  text-decoration: none;
}

.hw-home-work__item-link .wp-block-button__link:hover,
.hw-home-work__item-link .wp-block-button__link:focus {
  text-decoration: underline;
}

.hw-home-work__deco {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  filter: blur(0.2px);
  pointer-events: none;
}

.hw-home-work__deco--lg {
  width: 320px;
  height: 320px;
  top: -84px;
  right: -84px;
  opacity: 0.22;
  background: radial-gradient(closest-side at 30% 35%, rgba(255, 64, 147, 0.65), rgba(255, 64, 147, 0) 70%), radial-gradient(closest-side at 72% 48%, rgba(120, 106, 255, 0.55), rgba(120, 106, 255, 0) 72%), radial-gradient(closest-side at 56% 78%, rgba(92, 224, 255, 0.45), rgba(92, 224, 255, 0) 70%);
}

.hw-home-work__deco--sm {
  width: 180px;
  height: 180px;
  bottom: -52px;
  left: -52px;
  opacity: 0.18;
  background: radial-gradient(closest-side at 40% 45%, rgba(255, 64, 147, 0.6), rgba(255, 64, 147, 0) 70%), radial-gradient(closest-side at 72% 62%, rgba(120, 106, 255, 0.5), rgba(120, 106, 255, 0) 72%);
}

@media (max-width: 1200px) {
  .hw-home-work > .wp-block-columns {
    padding: 72px 40px 48px;
  }
  .hw-home-work__grid {
    padding: 48px 40px 72px;
  }
}
@media (max-width: 782px) {
  .hw-home-work {
    border-bottom: 0;
  }
  .hw-home-work > .wp-block-columns {
    padding: 32px 24px 24px;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .hw-home-work__buttons {
    justify-content: flex-start;
  }
  .hw-home-work__buttons .wp-block-button,
  .hw-home-work__buttons .wp-block-button__link {
    width: 100%;
  }
  .hw-home-work__grid {
    padding: 24px 24px 48px;
  }
  .hw-home-work__feature-media {
    height: 240px;
  }
  .hw-home-work__feature-text {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hw-home-work__feature-logo {
    grid-row: auto;
    justify-content: flex-start;
  }
  .hw-home-work__feature-logo img {
    max-width: 100px;
    max-height: 60px;
  }
  .hw-home-work__item {
    padding: 18px;
    flex-wrap: wrap !important;
    gap: 12px;
  }
  .hw-home-work__item-left {
    flex-wrap: wrap !important;
    gap: 12px;
    min-width: 0;
    width: 100%;
  }
  .hw-home-work__item-arrow {
    width: 100%;
    justify-content: flex-end !important;
  }
  .hw-home-work__item-logo {
    width: 100px;
    height: 50px;
  }
  .hw-home-work__item-logo img {
    max-width: 100px;
    max-height: 50px;
  }
  .hw-home-work__item-text {
    min-width: 0;
  }
  .hw-home-work__item-name {
    font-size: 1.125rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hw-home-work__item-tech {
    font-size: 0.875rem;
  }
  .hw-home-work__deco {
    display: none;
  }
}
/* ========================================== */
/* Our approach - circular process infographic */
/* ========================================== */
.hw-approach {
  color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-approach__wrap {
  padding: 0 0 60px;
}

.hw-approach__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  position: relative;
}

.hw-approach__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgb(255, 255, 255);
  transform: translateX(-50%);
}

.hw-approach__head > .hw-approach__head-title {
  flex: 0 0 auto;
}

.hw-approach__head > .hw-approach__head-copy {
  flex: 1 1 0%;
  padding-left: 40px;
}

.our-approach-cols {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}

.our-approach-cols .wp-block-image img {
  width: 100%;
  height: auto;
}

.hw-approach__head-title {
  padding-right: clamp(24px, 4vw, 72px);
  padding-top: clamp(24px, 4vw, 72px);
  padding-bottom: clamp(24px, 4vw, 72px);
  border-right: 1px solid rgb(255, 255, 255);
}

.hw-approach__head-copy {
  padding: 2rem 3rem 2rem 0;
}

.hw-approach__title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.1875rem);
  line-height: 1.05;
}

.hw-approach__kicker {
  margin: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  opacity: 0.92;
  max-width: 56ch;
}

.hw-approach__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 72px);
  padding-top: 80px;
  align-items: start;
}

.hw-approach__text {
  display: grid;
  gap: 32px;
  max-width: 56ch;
}

.hw-approach__text p {
  margin: 0;
  font-size: clamp(1.125rem, 2.1vw, 1.75rem);
  line-height: 1.45;
  opacity: 0.92;
}

.hw-approach__diagram {
  display: grid;
  justify-items: center;
}

.hw-approach-diagram {
  --hw-step-size: 188px;
  --hw-center-size: 188px;
  --hw-stroke: 4px;
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1/1;
}

@media (max-width: 1024px) {
  .hw-approach-diagram {
    --hw-step-size: 160px;
    --hw-center-size: 168px;
  }
}
@media (max-width: 640px) {
  .hw-approach__wrap {
    padding: 1rem;
  }
  .hw-approach__head {
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 40px;
  }
  .hw-approach__head-title {
    border-right: 0;
    padding-right: 0;
  }
  .hw-approach__head-copy {
    padding: 1rem;
  }
  .hw-approach__body {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }
  .hw-approach-diagram {
    width: min(520px, 100%);
  }
}
@media (max-width: 782px) {
  .hw-approach__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hw-approach__head-title {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .hw-approach__head-copy {
    padding: 0;
  }
  .hw-approach__head > .hw-approach__head-copy {
    padding-left: 0;
  }
  .our-approach-cols {
    padding: 0 1rem;
  }
  .our-approach-cols.wp-block-columns {
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 0;
    gap: 8px;
  }
  .our-approach-cols .wp-block-column {
    flex-basis: 100%;
  }
  .our-approach-cols .wp-block-column:first-child p {
    margin-top: 0;
  }
  .our-approach-cols .wp-block-column:last-child {
    order: -1;
  }
}
.hw-approach-diagram__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--hw-center-size);
  height: var(--hw-center-size);
  border-radius: 999px;
  background: var(--wp--preset--color--secondary, #828df3);
  display: grid;
  place-items: center;
}

.hw-approach-diagram__center img {
  display: block;
  width: 54%;
  height: auto;
}

.hw-approach-diagram__step {
  position: absolute;
  width: var(--hw-step-size);
  height: var(--hw-step-size);
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: var(--hw-stroke) solid currentColor;
  color: #ffffff;
  background: transparent;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}

.hw-approach-diagram__step.is-fuchsia {
  color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-approach-diagram__step.is-accent {
  color: var(--wp--preset--color--accent, #fff177);
}

.hw-approach-diagram__step.is-orange {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-approach-diagram__step.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-approach-diagram__step.is-top {
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
}

.hw-approach-diagram__step.is-right {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.hw-approach-diagram__step.is-bottom {
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
}

.hw-approach-diagram__step.is-left {
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.hw-approach-diagram__arrow {
  position: absolute;
  width: 92px;
  height: 92px;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'><path d='M24 92 C 24 52, 52 24, 92 24' fill='none' stroke='%23ffffff' stroke-width='8' stroke-linecap='round'/><path d='M92 24 L82 16 M92 24 L84 36' fill='none' stroke='%23ffffff' stroke-width='8' stroke-linecap='round'/></svg>");
}

.hw-approach-diagram__arrow.is-tr {
  right: 20%;
  top: 18%;
  transform: rotate(0deg);
}

.hw-approach-diagram__arrow.is-br {
  right: 18%;
  bottom: 20%;
  transform: rotate(90deg);
}

.hw-approach-diagram__arrow.is-bl {
  left: 20%;
  bottom: 18%;
  transform: rotate(180deg);
}

.hw-approach-diagram__arrow.is-tl {
  left: 18%;
  top: 20%;
  transform: rotate(270deg);
}

.hw-logos-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
  align-items: center;
  justify-items: center;
}

@media (max-width: 1024px) {
  .hw-logos-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .hw-logos-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ============================ */
/* Trust Bar / Horizontal Ticker */
/* ============================ */
.hw-trustbar {
  border-top: 1px solid var(--wp--preset--color--black, #000);
  padding-top: var(--wp--preset--spacing--lg, 2rem);
  padding-bottom: var(--wp--preset--spacing--md, 1.5rem);
}

.hw-logo-ticker {
  --hw-logo-ticker-gap: 88px;
  --hw-logo-ticker-logo-h: 78px;
  --hw-logo-ticker-fade: 40px;
  --hw-logo-ticker-duration: 34s;
}

@media (max-width: 782px) {
  .hw-logo-ticker {
    --hw-logo-ticker-gap: 56px;
    --hw-logo-ticker-logo-h: 64px;
    --hw-logo-ticker-fade: 24px;
  }
}
@media (max-width: 480px) {
  .hw-logo-ticker {
    --hw-logo-ticker-logo-h: 56px;
  }
}
.hw-logo-ticker__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hw-logo-ticker__viewport::-webkit-scrollbar {
  display: none;
}

.hw-logo-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
}

.hw-logo-ticker__group {
  display: flex;
  align-items: center;
  gap: var(--hw-logo-ticker-gap);
  padding-right: var(--hw-logo-ticker-gap); /* ensures seamless spacing between the duplicated groups */
}

.hw-logo-ticker__logo {
  margin: 0;
  flex: 0 0 auto;
}

.hw-logo-ticker__logo img {
  height: auto;
  width: auto;
  max-height: var(--hw-logo-ticker-logo-h);
  opacity: 0.5;
  filter: grayscale(1);
  display: block;
  object-fit: contain;
}

.hw-logo-ticker:not(.is-animated) .hw-logo-ticker__group[aria-hidden=true] {
  display: none;
}

.hw-logo-ticker.is-animated .hw-logo-ticker__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000000 var(--hw-logo-ticker-fade), #000000 calc(100% - var(--hw-logo-ticker-fade)), transparent);
  mask-image: linear-gradient(to right, transparent, #000000 var(--hw-logo-ticker-fade), #000000 calc(100% - var(--hw-logo-ticker-fade)), transparent);
}

.hw-logo-ticker.is-animated .hw-logo-ticker__track {
  animation: hw-logo-ticker-marquee var(--hw-logo-ticker-duration) linear infinite;
  will-change: transform;
}

@keyframes hw-logo-ticker-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-logo-ticker.is-animated .hw-logo-ticker__track {
    animation: none;
  }
  .hw-logo-ticker.is-animated .hw-logo-ticker__viewport {
    overflow-x: auto;
  }
}
.our-approach-cols .wp-block-image img.mobile {
  display: none;
}

.our-approach-cols .wp-block-image img.desktop {
  display: block;
}

@media (max-width: 782px) {
  .hw-home-intro .wp-block-columns {
    border: none;
    padding: 0;
    gap: 0;
  }
  .hw-home-intro__side-frame {
    padding: 0px;
  }
  .hw-home-intro__side-card {
    border: none;
  }
  .hw-home-intro__side-actions {
    border-top: 1px dotted rgba(255, 255, 255, 0.85);
  }
  .hw-home-intro__support-text {
    padding: 3rem 2rem;
    border: 1px solid #ffffff;
  }
  .hw-home-intro__side-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .hw-vp-grid, .hw-home-work {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
  }
  .hw-home-work__buttons, .wp-block-buttons.is-content-justification-right {
    justify-content: flex-start;
  }
  .hw-home-work__buttons .wp-block-button__link.wp-element-button {
    width: auto;
  }
  /* Scale down floating illustrations on mobile */
  .hw-home-statement::before {
    width: 180px;
    height: 180px;
  }
  .hw-home-statement::after {
    width: 110px;
    height: 100px;
  }
  .hw-home-statement__inner::before {
    width: 80px;
    height: 77px;
  }
  .hw-home-statement__inner::after {
    width: 50px;
    height: 50px;
  }
  .hw-home-statement__title .h-header-pixel {
    margin-top: 1rem;
    clear: both;
    display: inline-block;
  }
  .our-approach-cols .wp-block-image img.mobile {
    display: block;
  }
  .our-approach-cols .wp-block-image img.desktop {
    display: none;
  }
  .hw-t-blurb {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hw-testimonials {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hw-testimonials::after {
    display: none;
  }
  .hw-start-cta__actions .wp-block-button:first-child {
    margin-bottom: 1rem;
  }
  /* Tighten vertical spacing between sections on mobile */
  .hw-home-statement {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hw-vp-longterm.wp-block-group.has-background {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hw-vp-longterm.wp-block-group.has-background::before {
    height: 200%;
    top: -300px;
    width: 300%;
    background-size: 90%;
    left: -50px;
  }
  .hw-vp-longterm .hw-vp-longterm__head {
    margin-bottom: 32px;
  }
}
.gs_logo_single img {
  filter: grayscale(1);
  opacity: 0.5;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 420ms ease, filter 420ms ease, opacity 420ms ease;
  object-fit: contain;
  max-height: 60px;
}

.gs_logo_single img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-6px) scale(1.12);
}

/* ================== */
/* About - Page Styles */
/* ================== */
/* Hero dots */
.hw-ab-dots {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-bottom: var(--wp--preset--spacing--sm, 1rem);
}

.hw-ab-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
}

.hw-ab-dot.is-fuchsia {
  background-color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-ab-dot.is-periwinkle {
  background-color: var(--wp--preset--color--secondary, #828df3);
}

.hw-ab-dot.is-lime {
  background-color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-ab-dot.is-peach {
  background-color: var(--wp--preset--color--orange, #ffa765);
}

/* Hero visual */
.hw-ab-hero-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hw-ab-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 86, 238, 0.28), rgba(255, 86, 238, 0) 60%), radial-gradient(ellipse at 70% 60%, rgba(130, 141, 243, 0.26), rgba(130, 141, 243, 0) 55%), radial-gradient(circle at 60% 30%, rgba(215, 219, 79, 0.22), rgba(215, 219, 79, 0) 45%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hw-ab-hero-visual::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.25;
}

/* Intro band image rounding utility */
.is-style-rounded img {
  border-radius: 999px;
}

/* ======================= */
/* Centered Intro (shared) */
/* ======================= */
.hw-centered-intro {
  /* 88px = 4rem + 1rem + 0.5rem (token-only) */
  padding-top: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--sm, 1rem) + var(--wp--preset--spacing--xs, 0.5rem));
  padding-bottom: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--sm, 1rem) + var(--wp--preset--spacing--xs, 0.5rem));
}

@media (max-width: 782px) {
  .hw-centered-intro {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.hw-centered-intro__stack {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xl, 3rem);
  align-items: center;
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-centered-intro__stack > * {
  margin: 0;
}

.hw-centered-intro__copy {
  max-width: 44.5rem; /* ~712px */
}

.hw-ab-intro {
  background-color: #ff56ee;
}

/* ===================== */
/* About - Intro band    */
/* ===================== */
.hw-ab-intro-band {
  /* Desktop: 88px/72px. Mobile: 72px/24px (token-only). */
  padding-top: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--sm, 1rem) + var(--wp--preset--spacing--xs, 0.5rem));
  padding-bottom: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--sm, 1rem) + var(--wp--preset--spacing--xs, 0.5rem));
  padding-left: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--xs, 0.5rem));
  padding-right: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--xs, 0.5rem));
}

.hw-ab-intro-band .wp-block-columns {
  align-items: center;
  /* 72px = 4rem + 0.5rem (token-only) */
  gap: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--xs, 0.5rem));
  margin: 0;
}

.hw-ab-intro-band .wp-block-columns .wp-block-column {
  min-width: 0;
}

.hw-ab-intro-band h3 {
  margin: 0 0 calc(var(--wp--preset--spacing--xl, 3rem) + var(--wp--preset--spacing--xs, 0.5rem)) 0; /* 56px */
}

.hw-ab-intro-band p {
  margin: 0;
  max-width: 43.25rem; /* ~692px */
}

.hw-ab-intro-band__logo {
  display: flex;
  justify-content: center;
  margin: 0;
}

.hw-ab-intro-band__logo img {
  width: min(270px, 100%);
  height: auto;
  display: block;
}

@media (max-width: 782px) {
  .hw-ab-intro-band {
    /* 72px = 4rem + 0.5rem (token-only) */
    padding-top: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--xs, 0.5rem));
    padding-bottom: calc(var(--wp--preset--spacing--2-xl, 4rem) + var(--wp--preset--spacing--xs, 0.5rem));
    padding-left: var(--wp--preset--spacing--md, 1.5rem); /* 24px */
    padding-right: var(--wp--preset--spacing--md, 1.5rem); /* 24px */
  }
  .hw-ab-intro-band__logo img {
    width: min(432px, 100%);
  }
}
/* Values grid */
.hw-ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
}

@media (max-width: 900px) {
  .hw-ab-values-grid {
    grid-template-columns: 1fr;
  }
}
.hw-ab-card {
  background: var(--wp--preset--color--neutral-100, #fff);
  border-radius: var(--wp--custom--radius--md, 8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--wp--preset--spacing--md, 1.5rem);
  position: relative;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-ab-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-top-left-radius: var(--wp--custom--radius--md, 8px);
  border-bottom-left-radius: var(--wp--custom--radius--md, 8px);
  background-color: currentColor;
  opacity: 0.9;
}

.hw-ab-card.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-ab-card.is-accent {
  color: var(--wp--preset--color--accent, #ff56ee);
}

.hw-ab-card.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

/* Pill label */
.hw-pill .wp-block-button__link {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  text-decoration: none;
}

.hw-pill .wp-block-button__link:hover,
.hw-pill .wp-block-button__link:focus {
  transform: translate(-1px, -1px);
  box-shadow: 9px 9px 0 0 var(--wp--preset--color--secondary, #828df3);
}

/* Conversion CTA (keeps existing pattern look; adds guaranteed mobile stacking) */
.hw-conversion-cta .wp-block-buttons {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hw-conversion-cta .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hw-conversion-cta .wp-block-button,
  .hw-conversion-cta .wp-block-button__link {
    width: 100%;
  }
  .hw-conversion-cta .wp-block-button__link {
    text-align: center;
  }
}
/* Conversion CTA - Start section (Figma) */
.hw-start-cta {
  position: relative;
  padding: 120px 72px;
  overflow: hidden;
  background-image: radial-gradient(ellipse at 35% 30%, #db9b65 0%, transparent 50%);
  /* Break out of WP constrained layout so lime bg is edge-to-edge */
  max-width: none !important;
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.hw-start-cta__frame {
  position: relative;
  z-index: 1;
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
}

/* Floating decorative rectangles (Figma) — parallax-driven via --hw-parallax */
.hw-start-cta__frame::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 125px;
  right: 80px;
  bottom: -80px;
  background: var(--wp--preset--color--primary, #ff56ee);
  border: 8px solid #000000;
  border-radius: 10px;
  transform: translate(calc(var(--hw-parallax, 0) * 60px), calc(var(--hw-parallax, 0) * -90px)) rotate(calc(11deg + var(--hw-parallax, 0) * 8deg));
  pointer-events: none;
  z-index: 2;
}

.hw-start-cta__frame::after {
  content: "</>";
  position: absolute;
  width: 208px;
  height: 198px;
  right: -60px;
  bottom: -80px;
  background: var(--wp--preset--color--secondary, #828df3);
  border: 6px solid #000000;
  border-radius: 15px;
  transform: translate(calc(var(--hw-parallax, 0) * -45px), calc(var(--hw-parallax, 0) * -70px)) rotate(calc(3.3deg + var(--hw-parallax, 0) * -6deg));
  pointer-events: none;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--wp--preset--font-family--pixel, monospace);
  font-size: 48px;
  color: #ffffff;
  line-height: 1;
}

.hw-start-cta__card {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid #000000;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  position: relative;
}

.hw-start-cta__content {
  padding: 96px 32px;
  display: grid;
  gap: 8px;
}

.hw-start-cta__title {
  margin: 0;
  font-size: clamp(2rem, 4.65vw, 67px);
  line-height: 72px;
  letter-spacing: -0.25px;
  color: #000000;
}

.hw-start-cta__copy {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  max-width: 66ch;
}

.hw-start-cta__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.hw-start-cta__actions {
  padding: 32px;
}

.hw-start-cta .wp-block-buttons {
  justify-content: flex-start;
  gap: 8px;
}

.hw-start-cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  border: none;
  box-sizing: border-box;
}

.hw-start-cta .wp-block-button__link.has-primary-background-color {
  background: var(--wp--preset--color--primary, #ff56ee);
  color: #000000;
  box-shadow: none;
}

.hw-start-cta .wp-block-button.is-style-outline .wp-block-button__link,
.hw-start-cta .wp-block-button__link.hw-start-cta__secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 21px 35px;
  box-shadow: none;
}

.hw-start-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hw-start-cta__arrow {
  display: inline-block;
  width: auto;
  height: auto;
  padding-left: 6px;
  border: none;
}

/* Deco boxes — stretch to viewport edges, no border on outer/section edges */
.hw-start-cta__deco {
  position: absolute;
  height: 50%;
  pointer-events: none;
  z-index: 0;
}

.hw-start-cta__deco--left {
  left: calc(-50vw + 50%);
  bottom: 0;
  width: 20%;
  background: rgba(255, 167, 101, 0.2);
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
}

.hw-start-cta__deco--right {
  right: 0;
  top: 0;
  width: 15%;
  background: rgba(255, 255, 255, 0.4);
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

/* Yellow rectangle – top-right area */
.hw-start-cta__deco--right::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 112px;
  left: 20px;
  bottom: 30px;
  background: #fff177;
  border: 8px solid #000000;
  border-radius: 7px;
  transform: translate(calc(var(--hw-parallax, 0) * 80px), calc(var(--hw-parallax, 0) * 110px)) rotate(calc(-26deg + var(--hw-parallax, 0) * 12deg));
  pointer-events: none;
}

/* Small purple rectangle */
.hw-start-cta__deco--right::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 46px;
  left: -30px;
  top: 40%;
  background: var(--wp--preset--color--secondary, #828df3);
  border: 5px solid #000000;
  border-radius: 5px;
  transform: translate(calc(var(--hw-parallax, 0) * -100px), calc(var(--hw-parallax, 0) * 60px)) rotate(calc(47deg + var(--hw-parallax, 0) * -10deg));
  pointer-events: none;
}

/* Large yellow/pink-border rectangle – bottom-left */
.hw-start-cta__deco--left::before {
  content: "";
  position: absolute;
  width: 406px;
  height: 396px;
  right: -250px;
  top: -320px;
  background: #fff177;
  border: 10px solid var(--wp--preset--color--primary, #ff56ee);
  border-radius: 16px;
  transform: translate(calc(var(--hw-parallax, 0) * 35px), calc(var(--hw-parallax, 0) * -50px)) rotate(calc(-70deg + var(--hw-parallax, 0) * 4deg));
  pointer-events: none;
}

/* Green rectangle */
.hw-start-cta__deco--left::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 66px;
  right: -180px;
  top: -80px;
  background: var(--wp--preset--color--lime, #d7db4f);
  border: 6px solid #000000;
  border-radius: 6px;
  transform: translate(calc(var(--hw-parallax, 0) * -70px), calc(var(--hw-parallax, 0) * -80px)) rotate(calc(10deg + var(--hw-parallax, 0) * 14deg));
  pointer-events: none;
}

@media (max-width: 782px) {
  .hw-start-cta {
    padding: 48px 16px;
  }
  .hw-start-cta__content {
    padding: 40px 24px;
  }
  .hw-start-cta__title {
    line-height: 1.1;
  }
  .hw-start-cta__copy {
    font-size: 20px;
    line-height: 28px;
  }
  .hw-start-cta__actions {
    padding: 24px;
  }
  .hw-start-cta .wp-block-button__link {
    padding: 16px 24px;
  }
  .hw-start-cta__frame::before,
  .hw-start-cta__frame::after {
    display: none;
  }
  .hw-start-cta__deco--right::before,
  .hw-start-cta__deco--right::after {
    display: none;
  }
  .hw-start-cta__deco--left::before,
  .hw-start-cta__deco--left::after {
    display: none;
  }
}
/* CTA */
.hw-ab-cta {
  position: relative;
  border-radius: var(--wp--custom--radius--md, 8px);
  overflow: hidden;
}

.hw-ab-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 100%);
  opacity: 0.18;
  pointer-events: none;
}

.hw-ab-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(133deg, rgba(255, 255, 255, 0.15) 0 8px, rgba(255, 255, 255, 0) 8px 36px);
  opacity: 0.25;
  pointer-events: none;
}

/* What We Do - Hero */
.hw-wd-hero {
  position: relative;
  padding-top: var(--wp--preset--spacing--2-xl, 4rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-wd-hero__title {
  text-align: center;
}

.hw-wd-hero__do {
  display: inline-block;
}

.hw-wd-hero__lead {
  text-align: center;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

/* Value props: 3 columns desktop, stacked on mobile */
.hw-wd-hero-props {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
  margin-top: var(--wp--preset--spacing--lg, 2rem);
}

.hw-wd-prop {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--wp--custom--radius--md, 8px);
  padding: var(--wp--preset--spacing--md, 1.5rem);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
}

.hw-wd-prop__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto var(--wp--preset--spacing--sm, 1rem);
  color: var(--wp--preset--color--neutral-900, #000);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.hw-wd-prop__icon svg {
  width: 28px;
  height: 28px;
}

.hw-wd-prop__icon.is-people {
  background: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-prop__icon.is-innovation {
  background: var(--wp--preset--color--accent, #fff177);
}

.hw-wd-prop__icon.is-partnership {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-prop__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--lg, 1.5rem);
  line-height: 1.2;
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
}

.hw-wd-prop__copy {
  font-size: var(--wp--preset--font-size--sm, 1rem);
  line-height: 1.45;
  opacity: 0.92;
  margin: 0;
}

@media (max-width: 960px) {
  .hw-wd-hero-props {
    grid-template-columns: 1fr;
  }
  .hw-wd-prop {
    text-align: left;
  }
  .hw-wd-prop__icon {
    margin-left: 0;
    margin-right: 0;
  }
}
/* Sparkle decorations */
.hw-wd-spark {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23ffffff' stroke-width='3' opacity='0.55'><path d='M60 6l6 30 30 6-30 6-6 30-6-30-30-6 30-6 6-30Z'/></g><g fill='none' stroke='%23ffffff' stroke-width='2' opacity='0.35'><path d='M94 78l3 14 14 3-14 3-3 14-3-14-14-3 14-3 3-14Z'/></g></svg>");
}

.hw-wd-spark--tl {
  left: -18px;
  top: -22px;
  transform: rotate(-10deg);
}

.hw-wd-spark--tr {
  right: -28px;
  top: 10px;
  transform: rotate(18deg);
  width: 160px;
  height: 160px;
  opacity: 0.75;
}

.hw-wd-spark--br {
  right: -18px;
  bottom: -24px;
  transform: rotate(-22deg);
  width: 140px;
  height: 140px;
  opacity: 0.65;
}

@media (max-width: 960px) {
  .hw-wd-spark {
    display: none;
  }
}
.hw-wd-dots {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.hw-wd-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-block;
}

.hw-wd-dot--fuchsia {
  background-color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-wd-dot--periwinkle {
  background-color: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-dot--lime {
  background-color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-dot--peach {
  background-color: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--md, 1.5rem);
  margin-top: var(--wp--preset--spacing--lg, 2rem);
}

.hw-wd-metric__value {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl);
  line-height: 1.1;
}

.hw-wd-metric__label {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.3;
}

@media (max-width: 960px) {
  .hw-wd-metrics {
    grid-template-columns: 1fr;
  }
}
/* What We Do - Services */
.hw-wd-services-intro {
  text-align: center;
  position: relative;
  background-color: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  /* Match theme section gutters */
  padding-inline: clamp(24px, 5vw, 72px);
  /* Keep constrained layout but ensure consistent max width */
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.hw-wd-services-intro > * {
  margin-left: auto;
  margin-right: auto;
}

.hw-wd-services-intro h2 {
  margin-top: 0;
  /* Display-style header consistent with other pages */
  font-size: clamp(2.25rem, 5vw, var(--wp--preset--font-size--display-lg, 4.1875rem));
  line-height: 1.05;
}

.hw-wd-services-intro .has-lg-font-size {
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  opacity: 0.92;
}

.hw-wd-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--wp--preset--spacing--xl, 3rem);
  align-items: center;
  padding-top: var(--wp--preset--spacing--xl, 3rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-wd-section.is-service-dev {
  --hw-service-accent: var(--wp--custom--services--dev, #F472B6);
}

.hw-wd-section.is-service-data {
  --hw-service-accent: var(--wp--custom--services--data, #FCD34D);
}

.hw-wd-section.is-service-ux {
  --hw-service-accent: var(--wp--custom--services--ux, #FB923C);
}

.hw-wd-section.is-service-strategy {
  --hw-service-accent: var(--wp--custom--services--strategy, #818CF8);
}

/* Service header (icon + title + tagline) */
.hw-wd-service-head {
  align-items: center;
}

.hw-wd-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--wp--preset--color--neutral-900, #000);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18) inset;
}

.hw-wd-service-icon svg {
  width: 24px;
  height: 24px;
}

.hw-wd-service-icon.is-service-dev {
  background: var(--wp--custom--services--dev, #F472B6);
}

.hw-wd-service-icon.is-service-data {
  background: var(--wp--custom--services--data, #FCD34D);
}

.hw-wd-service-icon.is-service-ux {
  background: var(--wp--custom--services--ux, #FB923C);
}

.hw-wd-service-icon.is-service-strategy {
  background: var(--wp--custom--services--strategy, #818CF8);
}

.hw-wd-tagline {
  margin: 0;
  color: var(--hw-service-accent, currentColor);
  font-size: var(--wp--preset--font-size--lg, 1.5rem);
  line-height: 1.2;
}

/* Focus areas rendered as editable list, styled like chips */
.hw-wd-focus {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hw-wd-focus li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  border: 1px solid currentColor;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.25;
}

.hw-wd-focus.is-service-dev {
  color: var(--wp--custom--services--dev, #F472B6);
}

.hw-wd-focus.is-service-data {
  color: var(--wp--custom--services--data, #FCD34D);
}

.hw-wd-focus.is-service-ux {
  color: var(--wp--custom--services--ux, #FB923C);
}

.hw-wd-focus.is-service-strategy {
  color: var(--wp--custom--services--strategy, #818CF8);
}

.hw-wd-section.is-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 1024px) {
  .hw-wd-section,
  .hw-wd-section.is-reverse {
    grid-template-columns: 1fr;
  }
}
.hw-wd-illus {
  position: relative;
  min-height: 360px;
}

.hw-wd-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* Decorative grid made with gradients; color customized per section */
.hw-wd-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 112px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 112px);
  border: 1px solid currentColor;
  opacity: 0.6;
}

.hw-wd-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle at center, currentColor 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.2;
}

.hw-wd-visual.is-fuchsia {
  color: var(--wp--preset--color--primary);
}

.hw-wd-visual.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-visual.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-visual.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

/* What We Do - Service tokens (scoped via classes; non-breaking) */
.hw-wd-dot--service-dev {
  background-color: var(--wp--custom--services--dev, #F472B6);
}

.hw-wd-dot--service-data {
  background-color: var(--wp--custom--services--data, #FCD34D);
}

.hw-wd-dot--service-ux {
  background-color: var(--wp--custom--services--ux, #FB923C);
}

.hw-wd-dot--service-strategy {
  background-color: var(--wp--custom--services--strategy, #818CF8);
}

.hw-chip.is-service-dev {
  color: var(--wp--custom--services--dev, #F472B6);
}

.hw-chip.is-service-data {
  color: var(--wp--custom--services--data, #FCD34D);
}

.hw-chip.is-service-ux {
  color: var(--wp--custom--services--ux, #FB923C);
}

.hw-chip.is-service-strategy {
  color: var(--wp--custom--services--strategy, #818CF8);
}

.hw-wd-visual.is-service-dev {
  color: var(--wp--custom--services--dev, #F472B6);
}

.hw-wd-visual.is-service-data {
  color: var(--wp--custom--services--data, #FCD34D);
}

.hw-wd-visual.is-service-ux {
  color: var(--wp--custom--services--ux, #FB923C);
}

.hw-wd-visual.is-service-strategy {
  color: var(--wp--custom--services--strategy, #818CF8);
}

/* Swap placeholder grid/glow for inline planet SVGs */
.hw-wd-visual.has-planet::before,
.hw-wd-visual.has-planet::after {
  content: none;
  display: none;
}

.hw-wd-planet,
.hw-wd-planet svg {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

/* Planetary motion (subtle, performance-friendly) */
.hw-wd-visual.has-planet {
  contain: paint;
}

.hw-wd-visual.has-planet .hw-wd-planet svg {
  /* gentle overall float to create subtle parallax feel */
  animation: hw-planet-float 10s ease-in-out infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hw-wd-visual.has-planet svg .hw-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-ring-spin var(--hw-ring-speed, 54s) linear infinite;
  will-change: transform;
}

.hw-wd-visual.has-planet svg .hw-satellite,
.hw-wd-visual.has-planet svg .hw-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-float var(--hw-float-duration, 9s) ease-in-out infinite;
  animation-delay: var(--hw-float-delay, 0s);
  will-change: transform;
}

@keyframes hw-ring-spin {
  from {
    transform: rotate(var(--hw-ring-start, 0deg));
  }
  to {
    transform: rotate(calc(var(--hw-ring-start, 0deg) + 360deg));
  }
}
@keyframes hw-planet-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}
@keyframes hw-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(var(--hw-float-x, 0px), var(--hw-float-y, -8px), 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-wd-visual.has-planet .hw-wd-planet svg,
  .hw-wd-visual.has-planet svg .hw-ring,
  .hw-wd-visual.has-planet svg .hw-satellite,
  .hw-wd-visual.has-planet svg .hw-spark {
    animation: none;
  }
}
.hw-wd-planet svg {
  filter: drop-shadow(0 18px 46px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
  .hw-wd-illus {
    min-height: 320px;
  }
  .hw-wd-planet,
  .hw-wd-planet svg {
    width: min(320px, 100%);
  }
}
@media (max-width: 640px) {
  .hw-wd-illus {
    min-height: 260px;
  }
  .hw-wd-planet,
  .hw-wd-planet svg {
    width: min(280px, 100%);
  }
}
/* Mobile performance & layout guards for Services visuals */
@media (max-width: 480px) {
  /* Disable planet animations to improve battery and paint cost */
  .hw-wd-visual.has-planet .hw-wd-planet svg,
  .hw-wd-visual.has-planet svg .hw-ring,
  .hw-wd-visual.has-planet svg .hw-satellite,
  .hw-wd-visual.has-planet svg .hw-spark {
    animation: none;
  }
}
@media (max-width: 360px) {
  /* On ultra-small screens, hide decorative planet to avoid crowding */
  .hw-wd-illus {
    min-height: 0;
  }
  .hw-wd-visual.has-planet {
    display: none;
  }
}
/* Prevent accidental horizontal scroll due to decorative layers */
.hw-wd-section,
.hw-wd-services-intro {
  overflow-x: clip;
}

/* Touch targets: ensure CTA buttons are at least 44x44 on mobile */
@media (max-width: 640px) {
  .hw-wd-cta .wp-block-button__link,
  .hw-wd-section .wp-block-button__link {
    min-height: 44px;
    padding-block: 12px;
  }
}
/* ========================= */
/* Services - Micro-interactions */
/* ========================= */
/* Fade-in on scroll (opt-in) */
.hw-animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
  will-change: opacity, transform;
  background-color: #d7db4f;
}

.hw-animate.is-animated {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hw-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Cards hover states (hero props) */
.hw-wd-prop {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-wd-prop:hover, .hw-wd-prop:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.hw-wd-prop:hover, .hw-wd-prop:focus-within {
  border-color: rgba(255, 255, 255, 0.42);
}

/* Icon micro-animations inside cards */
.hw-wd-prop__icon {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hw-wd-prop:hover .hw-wd-prop__icon,
.hw-wd-prop:focus-within .hw-wd-prop__icon {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28) inset, 0 8px 18px rgba(0, 0, 0, 0.22);
}

/* Service header icon micro-animations */
.hw-wd-service-icon {
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform, box-shadow;
}

.hw-wd-service-head:hover .hw-wd-service-icon,
.hw-wd-service-head:focus-within .hw-wd-service-icon {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.24) inset, 0 8px 18px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .hw-wd-prop__icon,
  .hw-wd-service-icon {
    transition: none;
    transform: none;
  }
  /* Ensure hover/focus transforms never apply when reduced motion is requested */
  .hw-wd-prop:hover .hw-wd-prop__icon,
  .hw-wd-prop:focus-within .hw-wd-prop__icon,
  .hw-wd-service-head:hover .hw-wd-service-icon,
  .hw-wd-service-head:focus-within .hw-wd-service-icon {
    transform: none;
  }
}
/* Buttons and links hover transitions (scoped) */
.hw-wd-cta .wp-block-button__link,
.hw-wd-section .wp-block-button__link {
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
  will-change: transform, box-shadow;
}

.hw-wd-cta .wp-block-button__link:hover,
.hw-wd-cta .wp-block-button__link:focus,
.hw-wd-section .wp-block-button__link:hover,
.hw-wd-section .wp-block-button__link:focus {
  transform: translate(-1px, -1px);
  box-shadow: 9px 9px 0 0 rgba(0, 0, 0, 0.12);
}

.hw-wd-section a,
.hw-wd-services-intro a {
  transition: color 200ms ease, text-decoration-color 200ms ease;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.hw-wd-section a:hover,
.hw-wd-section a:focus,
.hw-wd-services-intro a:hover,
.hw-wd-services-intro a:focus {
  text-decoration: underline;
}

/* Jump links / breadcrumbs / back-to-top */
.hw-breadcrumbs {
  margin-bottom: var(--wp--preset--spacing--sm, 1rem);
}

.hw-service-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
}

.hw-service-jumps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.hw-service-jumps a:hover,
.hw-service-jumps a:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.hw-service-jumps a:focus-visible,
.hw-breadcrumbs a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.hw-backtotop {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 60;
  display: none;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  padding: 10px 14px;
  text-decoration: none;
}

.hw-backtotop.is-visible {
  display: inline-block;
}

.hw-backtotop:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Anchor offset for sticky headers */
.hw-wd-section h3 {
  scroll-margin-top: 96px;
}

.hw-wd-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--md, 1.5rem);
}

@media (max-width: 900px) {
  .hw-wd-capabilities {
    grid-template-columns: 1fr;
  }
}
.hw-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  border: 1px solid currentColor;
  --hw-chip-color: currentColor;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.25;
}

.h-header-pixel {
  font-family: var(--wp--preset--font-family--pixel, monospace);
}

.hw-chip.is-fuchsia {
  color: var(--wp--preset--color--primary, #ff56ee);
  --hw-chip-color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-chip.is-lemon {
  color: var(--wp--preset--color--accent, #fff177);
  --hw-chip-color: var(--wp--preset--color--accent, #fff177);
}

.hw-chip.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
  --hw-chip-color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-chip.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
  --hw-chip-color: var(--wp--preset--color--orange, #ffa765);
}

.hw-chip.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
  --hw-chip-color: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-cta {
  position: relative;
  padding: var(--wp--preset--spacing--xl, 3rem);
  border-radius: var(--wp--custom--radius--md, 8px);
  overflow: hidden;
  color: var(--wp--preset--color--neutral-100, #fff);
  text-align: center;
}

.hw-wd-cta > * {
  position: relative;
  z-index: 1;
}

.hw-wd-cta .has-lg-font-size {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hw-wd-cta .wp-block-buttons {
  justify-content: center;
  gap: 14px;
}

.hw-wd-cta .wp-block-button__link {
  white-space: nowrap;
}

.hw-wd-cta .wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--wp--preset--color--neutral-100, #fff);
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: transparent;
}

.hw-wd-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hw-wd-cta .wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .hw-wd-cta .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hw-wd-cta .wp-block-button,
  .hw-wd-cta .wp-block-button__link {
    width: 100%;
  }
  .hw-wd-cta .wp-block-button__link {
    white-space: normal;
    text-align: center;
  }
}
.hw-wd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 100%);
  opacity: 0.18;
  pointer-events: none;
}

.hw-wd-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(133deg, rgba(255, 255, 255, 0.15) 0 8px, rgba(255, 255, 255, 0) 8px 36px);
  opacity: 0.25;
  pointer-events: none;
}

/* ====================== */
/* Our Approach – General */
/* ====================== */
.hw-oa-hero {
  padding-top: var(--wp--preset--spacing--2-xl, 4rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-oa-dots {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.hw-oa-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
}

.hw-oa-dot--fuchsia {
  background-color: var(--wp--preset--color--accent, #fff177);
}

.hw-oa-dot--periwinkle {
  background-color: var(--wp--preset--color--secondary, #828df3);
}

.hw-oa-dot--lime {
  background-color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-oa-dot--peach {
  background-color: var(--wp--preset--color--orange, #ffa765);
}

.hw-oa-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--md, 1.5rem);
  margin-top: var(--wp--preset--spacing--lg, 2rem);
}

.hw-oa-metric__value {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl);
  line-height: 1.1;
  will-change: transform, opacity;
  display: inline-block;
}

.hw-oa-metric__label {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .hw-oa-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .hw-oa-metrics {
    grid-template-columns: 1fr;
  }
}
.hw-oa-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--wp--preset--spacing--xl, 3rem);
  align-items: center;
  padding-top: var(--wp--preset--spacing--xl, 3rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-oa-section.is-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 1024px) {
  .hw-oa-section,
  .hw-oa-section.is-reverse {
    grid-template-columns: 1fr;
  }
}
.hw-oa-illus {
  position: relative;
  min-height: 360px;
}

.hw-oa-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* Decorative grid made with gradients; color customized per section */
.hw-oa-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 112px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 112px);
  border: 1px solid currentColor;
  opacity: 0.6;
}

.hw-oa-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle at center, currentColor 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.2;
}

.hw-oa-visual.is-fuchsia {
  color: var(--wp--preset--color--primary);
}

.hw-oa-visual.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-oa-visual.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-oa-visual.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-oa-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--md, 1.5rem);
}

@media (max-width: 900px) {
  .hw-oa-capabilities {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 782px) {
  .hw-oa-illus {
    min-height: 180px;
  }
  .hw-oa-visual::after {
    width: 150px;
    height: 150px;
  }
  .hw-oa-visual::before {
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 56px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 56px);
  }
}
/* ===================== */
/* Plans & Pricing – Page Styles (Figma 62155) */
/* ===================== */
/* Base wrapper to ensure the page renders on white even when global body is dark */
.hw-pr-page {
  background: #ffffff;
  color: #000000;
}
.hw-pr-page a {
  color: inherit;
}

.hw-pr-accent-peach {
  color: var(--hw-peach-dark, #c25400);
}

/* Hero */
.hw-pr-hero {
  padding: 128px 72px 40px;
}
.hw-pr-hero__inner {
  max-width: 1248px;
  margin: 0 auto;
}
.hw-pr-hero__lead {
  margin: 72px 0 0 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 28px;
  line-height: 36px;
  max-width: 1248px;
}

.hw-pr-dotrow {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hw-pr-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-block;
}
.hw-pr-dot.is-lime {
  background: var(--wp--preset--color--lime, #d7db4f);
}
.hw-pr-dot.is-periwinkle {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-dot.is-fuchsia {
  background: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-dot.is-peach {
  background: var(--wp--preset--color--orange, #ffa765);
}

h1.hw-pr-hero__title {
  margin-top: 1.5rem;
  font-family: var(--wp--preset--font-family--heading);
  letter-spacing: -0.25px;
  font-size: 112px;
  line-height: 112px;
  max-width: 1063px;
  color: var(--wp--preset--color--neutral-900, #000);
}
h1.hw-pr-hero__title .h-header-pixel {
  font-size: inherit;
  line-height: inherit;
  color: var(--wp--preset--color--secondary, #828df3);
}

/* Our philosophy (black band) */
.hw-pr-philosophy {
  background: #000000;
  color: #ffffff;
  padding: 80px 72px 96px;
}
.hw-pr-philosophy__inner {
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}
.hw-pr-philosophy__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  letter-spacing: -0.25px;
  font-size: 67px;
  line-height: 72px;
}
.hw-pr-philosophy__accent {
  color: var(--wp--preset--color--lime, #d7db4f);
}
.hw-pr-philosophy__sub {
  margin: 24px auto 0 auto;
  max-width: 1021px;
  font-size: 22px;
  line-height: 28px;
}
.hw-pr-philosophy__grid {
  margin-top: 32px;
  padding: 0 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  text-align: left;
}

.hw-pr-philo {
  --accent: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-philo.is-fuchsia {
  --accent: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-philo.is-peach {
  --accent: var(--wp--preset--color--orange, #ffa765);
}
.hw-pr-philo.is-lime {
  --accent: var(--wp--preset--color--lime, #d7db4f);
}
.hw-pr-philo.is-periwinkle {
  --accent: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-philo__head {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.hw-pr-philo__dot {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}
.hw-pr-philo__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
}
.hw-pr-philo__copy {
  margin: 8px 0 0 0;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/* Sample pricing */
.hw-pr-sample {
  padding: 120px 72px 168px;
}
.hw-pr-sample__inner {
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}

.hw-pr-section-title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  letter-spacing: -0.25px;
  font-size: 67px;
  line-height: 72px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-pr-section-title .h-header-pixel {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-pr-plan-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  text-align: left;
  align-items: stretch;
}

.hw-pr-plan {
  --accent: var(--wp--preset--color--secondary, #828df3);
  --border-accent: var(--accent);
  border: 1px solid var(--border-accent);
  background: #ffffff;
  position: relative;
  padding: 16px 16px 32px;
}
.hw-pr-plan.is-fuchsia {
  --accent: var(--wp--preset--color--primary, #ff56ee);
  --border-accent: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-plan.is-peach {
  --border-accent: var(--wp--preset--color--orange, #ffa765);
  --accent: var(--hw-peach-dark, #c25400);
}
.hw-pr-plan.is-periwinkle {
  --accent: var(--wp--preset--color--secondary, #828df3);
  --border-accent: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-plan.is-lime {
  --accent: var(--wp--preset--color--lime, #d7db4f);
  --border-accent: var(--wp--preset--color--lime, #d7db4f);
}
.hw-pr-plan__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--orange, #ffa765);
  color: #000000;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.hw-pr-plan__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin: 16px auto 32px auto;
  background: var(--border-accent);
  border: 3px solid var(--border-accent);
  box-sizing: border-box;
}
.hw-pr-plan__title {
  margin: 0;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  color: var(--wp--preset--color--neutral-700, #000);
}
.hw-pr-plan__note {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.hw-pr-plan__price {
  margin: 24px 0 0 0;
  text-align: center;
  color: var(--accent);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hw-pr-plan__amount {
  font-size: 45px;
  line-height: 52px;
  letter-spacing: 0;
}
.hw-pr-plan__per, .hw-pr-plan__prefix {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--accent);
}
.hw-pr-plan__term {
  margin: 0;
  text-align: center;
  font-size: 22px;
  line-height: 28px;
}
.hw-pr-plan__included {
  margin-top: 24px;
  min-height: 380px;
}
.hw-pr-plan__included-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  line-height: 32px;
  color: var(--accent);
}
.hw-pr-plan__ideal {
  margin-top: 1.5rem;
}
.hw-pr-plan__ideal-title {
  margin: 0 0 8px 0;
  font-size: 22px;
  line-height: 28px;
}

p.hw-pr-plan__desc {
  margin-top: 2rem;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.hw-pr-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hw-pr-checklist li {
  position: relative;
  padding-left: 48px;
  font-size: 22px;
  line-height: 28px;
}
.hw-pr-checklist li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--border-accent);
  border-bottom: 3px solid var(--border-accent);
  transform: rotate(40deg);
}

.hw-pr-btn:hover, .hw-pr-btn:focus {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 0 #000000;
}
.hw-pr-btn.is-fuchsia {
  background: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-btn.is-peach {
  background: var(--wp--preset--color--orange, #ffa765);
}
.hw-pr-btn.is-periwinkle {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-btn.is-lime {
  background: var(--wp--preset--color--lime, #d7db4f);
}

/* Gutenberg Button block variant */
.wp-block-button.hw-pr-btn {
  margin-top: 24px;
  width: 100%;
}
.wp-block-button.hw-pr-btn .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  color: #000000;
  border: 1px solid #000000;
  padding: 14px 16px;
  box-shadow: 4px 4px 0 0 #000000;
  background: var(--accent);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  border-radius: 0;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.wp-block-button.hw-pr-btn .wp-block-button__link:hover, .wp-block-button.hw-pr-btn .wp-block-button__link:focus {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 0 #000000;
}
.wp-block-button.hw-pr-btn.is-fuchsia .wp-block-button__link {
  background: var(--wp--preset--color--primary, #ff56ee);
}
.wp-block-button.hw-pr-btn.is-peach .wp-block-button__link {
  background: var(--wp--preset--color--orange, #ffa765);
}
.wp-block-button.hw-pr-btn.is-periwinkle .wp-block-button__link {
  background: var(--wp--preset--color--secondary, #828df3);
}
.wp-block-button.hw-pr-btn.is-lime .wp-block-button__link {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-pr-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.hw-pr-chiprow:not(.is-fill) .hw-pr-chip.is-outline {
  border: 1px solid var(--border-accent);
  background: transparent;
}
.hw-pr-chiprow.is-fill .hw-pr-chip {
  border: 0;
  color: #000000;
  background: rgba(0, 0, 0, 0.08);
}

.hw-pr-chip {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

/* Who we work with */
.hw-pr-who {
  background: #f3f3f3;
  border-top: 1px solid #000000;
  padding: 80px 72px 96px;
}
.hw-pr-who__inner {
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}
.hw-pr-who__title {
  margin: 0;
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
  color: var(--wp--preset--color--neutral-700, #000);
}
.hw-pr-who__title .h-header-pixel {
  color: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-who__copy {
  margin: 24px auto 0 auto;
  max-width: 1021px;
  font-size: 22px;
  line-height: 28px;
}
.hw-pr-who__grid {
  margin-top: 32px;
  padding: 32px 112px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
  text-align: left;
}

.hw-pr-bcorp {
  margin: 64px auto 0 auto;
  max-width: 762px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  padding: 48px 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  text-align: left;
}
.hw-pr-bcorp__badge {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--wp--preset--color--secondary, #828df3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 40px;
  flex: none;
}
.hw-pr-bcorp__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: var(--wp--preset--color--neutral-700, #000);
}
.hw-pr-bcorp__copy {
  margin: 8px 0 0 0;
  font-size: 24px;
  line-height: 32px;
  color: #444444;
}

.hw-pr-who-card {
  --accent: var(--wp--preset--color--primary, #ff56ee);
  background: #ffffff;
  border: 1px solid var(--accent);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.hw-pr-who-card.is-fuchsia {
  --accent: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-who-card.is-peach {
  --accent: var(--wp--preset--color--orange, #ffa765);
}
.hw-pr-who-card.is-lime {
  --accent: var(--wp--preset--color--lime, #d7db4f);
}
.hw-pr-who-card.is-periwinkle {
  --accent: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-who-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: var(--wp--preset--color--neutral-700, #000);
}
.hw-pr-who-card__copy {
  margin: 0;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.5px;
}
.hw-pr-who-card.is-fuchsia .hw-pr-chiprow.is-fill .hw-pr-chip {
  background: rgba(255, 86, 238, 0.2);
}
.hw-pr-who-card.is-peach .hw-pr-chiprow.is-fill .hw-pr-chip {
  background: rgba(255, 167, 101, 0.2);
}
.hw-pr-who-card.is-lime .hw-pr-chiprow.is-fill .hw-pr-chip {
  background: rgba(215, 219, 79, 0.2);
}
.hw-pr-who-card.is-periwinkle .hw-pr-chiprow.is-fill .hw-pr-chip {
  background: rgba(130, 141, 243, 0.2);
}

/* Partners (logo ticker) */
.hw-pr-partners {
  border-top: 1px solid #000000;
  padding: 56px 72px 40px;
  background: transparent;
}
.hw-pr-partners .hw-logo-ticker {
  margin: 0;
}

/* Testimonials band */
.hw-pr-testimonials {
  background: #ffffff;
}
.hw-pr-testimonials__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 96px 72px;
  position: relative;
}
.hw-pr-testimonials__title {
  margin: 0 0 48px 0;
  text-align: center;
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
  color: var(--wp--preset--color--neutral-700, #000);
}
.hw-pr-testimonials__title .h-header-pixel {
  color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-pr-logos-stack {
  position: absolute;
  top: -30px;
  right: 72px;
  width: 253px;
  height: 253px;
  pointer-events: none;
}
.hw-pr-logos-stack__logo {
  position: absolute;
  width: 194px;
  height: 194px;
  border: 1px solid #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 62%;
  background-image: url("../../assets/images/logo-secondary/HLO-050523-HelloWorldLogo-SmileOnly-Black-kmw.svg");
}
.hw-pr-logos-stack__logo.is-periwinkle {
  left: 0;
  top: 0;
  background-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-pr-logos-stack__logo.is-fuchsia {
  left: 29px;
  top: 29px;
  background-color: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-logos-stack__logo.is-white {
  left: 58px;
  top: 58px;
  background-color: #ffffff;
}

/* Discovery */
.hw-pr-discovery {
  background: #ffffff;
  border-top: 1px solid #000000;
  padding: 168px 72px 184px;
}
.hw-pr-discovery__inner {
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}
.hw-pr-discovery__stats {
  margin-top: 32px;
  padding: 32px 112px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.hw-pr-stat {
  background: #ffffff;
  border: 1px dashed #000000;
  padding: 24px;
  display: grid;
  gap: 16px;
  text-align: center;
}
.hw-pr-stat__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
}
.hw-pr-stat__value {
  margin: 0;
  font-size: 45px;
  line-height: 52px;
  color: var(--wp--preset--color--primary, #ff56ee);
}
.hw-pr-stat__desc {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
}

.hw-pr-qa {
  margin: 48px auto 0 auto;
  max-width: 1092px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  padding: 56px 32px 32px;
  display: grid;
  gap: 8px;
  text-align: center;
}
.hw-pr-qa__q {
  margin: 0;
  font-size: 45px;
  line-height: 52px;
  color: #000000;
}
.hw-pr-qa__a {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
}
.hw-pr-qa .hw-pr-btn {
  width: auto;
  margin: 24px auto 0 auto;
}
.hw-pr-qa .wp-block-button.hw-pr-btn .wp-block-button__link {
  width: auto;
}

/* FAQ */
.hw-pr-faq {
  border-top: 1px solid #000000;
  background: #f3f3f3;
  position: relative;
  padding: 80px 72px 96px;
  background-image: url("../../assets/images/s-bg-light.png");
}
.hw-pr-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 112px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 112px);
  opacity: 0.25;
  pointer-events: none;
}
.hw-pr-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}
.hw-pr-faq__list {
  margin-top: 32px;
  padding: 0 112px;
  display: grid;
  gap: 48px;
  text-align: left;
}

.hw-pr-faq-card {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 24px;
  display: grid;
  gap: 16px;
}
.hw-pr-faq-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
}
.hw-pr-faq-card p {
  margin: 0;
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/* Text-roll hover for lime CTA buttons inside FAQ / pricing */
.hw-pr-faq .wp-block-button__link.has-lime-background-color,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color {
  position: relative;
  overflow: hidden;
  color: #000000 !important;
  cursor: pointer;
  transition: background-color 180ms ease;
}
.hw-pr-faq .wp-block-button__link.has-lime-background-color .hw-btn-text,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color .hw-btn-text {
  display: block;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.hw-pr-faq .wp-block-button__link.has-lime-background-color .hw-btn-text--roll,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color .hw-btn-text--roll {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.hw-pr-faq .wp-block-button__link.has-lime-background-color:hover .hw-btn-text, .hw-pr-faq .wp-block-button__link.has-lime-background-color:focus-visible .hw-btn-text,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color:hover .hw-btn-text,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color:focus-visible .hw-btn-text {
  transform: translateY(calc(-100% - 1rem));
}
.hw-pr-faq .wp-block-button__link.has-lime-background-color:hover .hw-btn-text--roll, .hw-pr-faq .wp-block-button__link.has-lime-background-color:focus-visible .hw-btn-text--roll,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color:hover .hw-btn-text--roll,
.hw-pr-discovery .wp-block-button__link.has-lime-background-color:focus-visible .hw-btn-text--roll {
  transform: translateY(0);
}

p.hw-pr-faq__note {
  margin: 48px 0 24px;
  font-size: 24px;
  line-height: 32px;
}

/* Join */
.hw-pr-join {
  border-top: 1px solid #000000;
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 86, 238, 0.09), transparent 55%), radial-gradient(140% 140% at 80% 30%, rgba(130, 141, 243, 0.09), transparent 60%), radial-gradient(120% 120% at 50% 80%, rgba(255, 241, 119, 0.03), transparent 55%), #ffffff;
  padding: 96px 72px;
  position: relative;
  overflow: hidden;
}
.hw-pr-join__inner {
  max-width: 1092px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hw-pr-join__title {
  margin: 0;
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
  color: #000000;
}
.hw-pr-join__btn {
  margin: 32px auto 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000000;
}
.hw-pr-join__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #000000;
  position: relative;
  flex: none;
}
.hw-pr-join__icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

p.hw-pr-join__copy {
  margin: 32px auto 0 auto;
  max-width: 865px;
  font-size: 28px;
  line-height: 36px;
}

/* Gutenberg Button block variant for Join CTA */
.wp-block-button.hw-pr-join__btn {
  margin: 32px auto 0 auto;
}
.wp-block-button.hw-pr-join__btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid #000000;
  padding: 8px 56px 8px 16px;
  color: #000000;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.wp-block-button.hw-pr-join__btn .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 8px;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/images/icons/Icon-Arrow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}

/* Responsive */
@media (max-width: 1024px) {
  h1.hw-pr-hero__title {
    font-size: 72px;
    line-height: 72px;
  }
  .hw-pr-philosophy__grid,
  .hw-pr-who__grid,
  .hw-pr-discovery__stats,
  .hw-pr-faq__list {
    padding-left: 0;
    padding-right: 0;
  }
  .hw-pr-plan__included {
    min-height: auto;
  }
}
@media (max-width: 782px) {
  .hw-pr-hero {
    padding: 48px 24px 64px;
  }
  h1.hw-pr-hero__title {
    font-size: 45px;
    line-height: 52px;
    max-width: 100%;
  }
  .hw-pr-hero__lead {
    margin-top: 20px;
    font-size: 24px;
    line-height: 32px;
  }
  .hw-pr-philosophy {
    padding: 80px 16px 96px;
  }
  .hw-pr-philosophy__title,
  .hw-pr-section-title,
  .hw-pr-testimonials__title,
  .hw-pr-who__title,
  .hw-pr-join__title {
    font-size: 45px;
    line-height: 52px;
  }
  .hw-pr-philosophy__grid {
    grid-template-columns: 1fr;
  }
  .hw-pr-sample {
    padding: 56px 16px;
  }
  .hw-pr-plan-grid {
    grid-template-columns: 1fr;
  }
  .hw-pr-who {
    padding: 56px 16px;
  }
  .hw-pr-bcorp {
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 24px;
  }
  .hw-pr-who__grid {
    grid-template-columns: 1fr;
  }
  .hw-pr-partners {
    padding: 32px 16px 0;
  }
  .hw-pr-testimonials__inner {
    padding: 96px 16px;
  }
  .hw-pr-logos-stack {
    top: -9px;
    right: 16px;
    width: 104px;
    height: 104px;
  }
  .hw-pr-logos-stack__logo {
    width: 80px;
    height: 80px;
    background-size: 68%;
  }
  .hw-pr-logos-stack__logo.is-fuchsia {
    left: 12px;
    top: 12px;
  }
  .hw-pr-logos-stack__logo.is-white {
    left: 24px;
    top: 24px;
  }
  .hw-pr-discovery {
    padding: 56px 16px;
  }
  .hw-pr-discovery__stats {
    grid-template-columns: 1fr;
  }
  .hw-pr-qa {
    padding: 40px 16px 32px;
  }
  .hw-pr-qa__q {
    font-size: 36px;
    line-height: 44px;
  }
  .hw-pr-qa__a {
    font-size: 24px;
    line-height: 32px;
  }
  .hw-pr-faq {
    padding: 56px 16px;
  }
  .hw-pr-faq__list {
    gap: 24px;
  }
  .hw-pr-join {
    padding: 48px 16px 72px;
  }
}
/* Philosophy cards (light) */
.hw-oa-card {
  background: var(--wp--preset--color--neutral-100, #fff);
  border-radius: var(--wp--custom--radius--md, 8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--wp--preset--spacing--md, 1.5rem);
  position: relative;
}
.hw-oa-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-top-left-radius: var(--wp--custom--radius--md, 8px);
  border-bottom-left-radius: var(--wp--custom--radius--md, 8px);
  background-color: currentColor;
  opacity: 0.9;
}
.hw-oa-card.is-fuchsia {
  color: var(--wp--preset--color--primary);
}
.hw-oa-card.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-card.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

/* Light grid background for white sections */
.hw-bg-grid-light {
  background-color: var(--wp--preset--color--neutral-100, #fff);
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px);
}

/* ============================= */
/* Work (Case Studies) – Archive */
/* ============================= */
.hw-work-hero {
  padding-top: var(--wp--preset--spacing--2-xl, 4rem);
  padding-bottom: var(--wp--preset--spacing--lg, 2rem);
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-work-hero__inner {
  display: grid;
  gap: var(--wp--preset--spacing--sm, 1rem);
}
.hw-work-hero__title {
  font-size: clamp(3rem, 6vw, 7rem);
}
.hw-work-hero__impact {
  color: var(--wp--preset--color--orange, #ffa765);
}
.hw-work-hero__desc {
  max-width: 68ch;
  margin: 0;
  opacity: 0.9;
}

.hw-work-ct {
  background-color: #ffffff;
  padding: 4rem 0 3rem;
}
.hw-work-ct .wp-block-heading {
  font-size: var(--wp--preset--font-size--display-lg, 4.1875rem);
  line-height: 1.08;
  color: var(--wp--preset--color--neutral-900, #000);
  margin-bottom: 1rem;
}
.hw-work-ct .h-header-pixel {
  color: var(--wp--preset--color--fuchsia, #ff56ee);
}

/* Featured Case Studies (hero-style cards above grid) */
.hw-work-featured {
  padding: var(--wp--preset--spacing--lg, 2rem) 0 var(--wp--preset--spacing--sm, 1rem);
}
.hw-work-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--sm, 1rem);
}
.hw-work-featured__title {
  margin: 0;
}
.hw-work-featured__list {
  display: grid;
  gap: var(--wp--preset--spacing--lg, 2rem);
  padding-top: var(--wp--preset--spacing--sm, 1rem);
}

.hw-work-featured-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-areas: "media body";
  border-radius: var(--wp--custom--radius--md, 8px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--wp--preset--color--neutral-100, #fff);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-work-featured-card:hover, .hw-work-featured-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.hw-work-featured-card.is-reversed {
  grid-template-columns: 1fr 1.35fr;
  grid-template-areas: "body media";
}
.hw-work-featured-card__media {
  grid-area: media;
  display: block;
  position: relative;
}
.hw-work-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.hw-work-featured-card__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  padding: var(--wp--preset--spacing--lg, 2rem);
}
.hw-work-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
}
.hw-work-featured-card__client {
  margin: 0;
  opacity: 0.8;
}
.hw-work-featured-card__title {
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
}
.hw-work-featured-card__excerpt p {
  margin: 0 0 var(--wp--preset--spacing--sm, 1rem) 0;
}
.hw-work-featured-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.hw-work-featured-card__cta {
  margin: var(--wp--preset--spacing--lg, 2rem) 0 0 0;
}
.hw-work-featured-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid #d7db4f;
  padding: 12px 20px;
  color: var(--wp--preset--color--neutral-900, #000);
  background: #d7db4f;
  border-radius: 0;
  font-weight: 400;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
.hw-work-featured-card__button:hover, .hw-work-featured-card__button:focus {
  background: #ffa765;
  border-color: #ffa765;
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}
.hw-work-featured-card__arrow {
  font-size: 1.1em;
  line-height: 1;
}
@media (max-width: 900px) {
  .hw-work-featured-card, .hw-work-featured-card.is-reversed {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "body";
  }
  .hw-work-featured-card__media img {
    min-height: 220px;
  }
  .hw-work-featured-card__body {
    padding: var(--wp--preset--spacing--sm, 1rem);
  }
}

.hw-work-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: var(--wp--preset--spacing--sm, 1rem) 3rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}
.hw-work-filters .hw-chip {
  white-space: nowrap;
  scroll-snap-align: start;
  background-color: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid #696969;
}
.hw-work-filters .hw-chip.is-active {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  border-color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--lg, 2rem);
  padding-top: var(--wp--preset--spacing--sm, 1rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
  margin: 0 auto;
}

.hw-work-pagination,
.hw-work-pagination--top {
  display: flex;
  justify-content: center;
  padding: 12px 0 16px;
}
.hw-work-pagination .nav-links,
.hw-work-pagination--top .nav-links {
  display: flex;
  gap: 6px;
}
.hw-work-pagination .page-numbers,
.hw-work-pagination--top .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #f5f5f5;
  color: #000000;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}
.hw-work-pagination .page-numbers.current,
.hw-work-pagination--top .page-numbers.current {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.hw-work-pagination .page-numbers:hover,
.hw-work-pagination--top .page-numbers:hover {
  background: #e7e7e7;
}

.hw-study-page {
  padding: clamp(16px, 4vw, 48px) clamp(16px, 5vw, 64px);
}

.hw-work {
  border-bottom: 1px solid #000000;
  background-color: #ffffff;
  padding: 2rem 0;
}

.hw-work-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-work-card:hover, .hw-work-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.hw-work-card__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.hw-work-card__body {
  padding: 1.75rem 2rem;
  display: grid;
  gap: 10px;
}
.hw-work-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.hw-work-card__meta .hw-work-card__client {
  margin: 0;
}
.hw-work-card__logo {
  display: inline-block;
  place-items: center;
  inline-size: auto;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #000000;
  overflow: hidden;
  box-shadow: 5px 5px 0 #828df3;
}
.hw-work-card__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 4px;
}
.hw-work-card__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: #000000;
}
.hw-work-card__title a {
  color: #000000;
}
.hw-work-card__client {
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
  opacity: 0.8;
}
.hw-work-card__excerpt {
  color: #000000;
  padding-bottom: 1rem;
}
.hw-work-card__excerpt p {
  margin: 0 0 6px 0;
  line-height: 1.6;
}
.hw-work-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hw-work-card__chips .hw-chip {
  background: #f3f3f3;
  border: 1px solid #d8d8d8;
  color: #3a3a3a;
  line-height: 1.3;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}
.hw-work-card__cta {
  margin: 8px 0 0 0;
  display: flex;
  justify-content: flex-end;
}
.hw-work-card__readmore:hover, .hw-work-card__readmore:focus {
  text-decoration: none;
  background: #ffa765;
  border-color: #ffa765;
  color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-work-card__arrow {
  font-size: 1.1em;
  line-height: 1;
}
@media (max-width: 900px) {
  .hw-work-card__body {
    padding: 1.25rem 1.5rem;
  }
  .hw-work-card__logo {
    inline-size: 56px;
    block-size: 56px;
  }
  .hw-work-card__title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
}
@media (max-width: 640px) {
  .hw-work-card__cta {
    justify-content: flex-start;
  }
}

a.hw-work-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid #d7db4f;
  padding: 8px 14px;
  color: #000000;
  background: #d7db4f;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
a.hw-work-card__readmore:hover, a.hw-work-card__readmore:focus {
  background: #ffa765;
  border-color: #ffa765;
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}

/* Single case study: breadcrumb + padding */
.single-case_study .hw-breadcrumb {
  border-bottom: 2px solid #000000;
  padding: 10px 0;
}
.single-case_study .hw-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  margin: 0 4rem;
}
.single-case_study .hw-breadcrumb a {
  color: #222;
  text-decoration: none;
}
.single-case_study .hw-breadcrumb a:hover, .single-case_study .hw-breadcrumb a:focus {
  text-decoration: underline;
}
.single-case_study .hw-breadcrumb__sep {
  color: #9a9a9a;
}

.hw-work-pagination {
  display: flex;
  justify-content: center;
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}
.hw-work-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hw-work-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}
.hw-work-pagination .page-numbers.current {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-work-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  padding-left: 6px;
  padding-right: 6px;
}

/* Work (Case Studies) – Mobile Light (Figma node 62082:24818) */
@media (max-width: 640px) {
  /* Figma mobile does not show the featured hero cards section */
  .hw-work-featured {
    display: none;
  }
  .hw-work-filters {
    padding: 32px 24px;
    gap: 4px;
  }
  .hw-work-filters .hw-chip {
    padding: 8px 14px;
  }
  .hw-work-grid {
    gap: 56px;
    padding-top: 0;
    padding-bottom: 48px;
  }
  .hw-work-card {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .hw-work-card:hover, .hw-work-card:focus-within {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }
  .hw-work-card__media {
    display: block;
    border: 1px solid var(--wp--preset--color--neutral-900, #000);
  }
  .hw-work-card__body {
    padding: 16px 16px 24px;
  }
  /* Logo badge (white card w/ hard periwinkle shadow) */
  .hw-work-card__logo {
    inline-size: 92px;
    border-radius: 0;
    border: 1px solid var(--wp--preset--color--neutral-900, #000);
    box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
    background: var(--wp--preset--color--neutral-100, #fff);
  }
  /* Hide client name line on mobile; design only shows logo */
  .hw-work-card__client {
    display: none;
  }
  .hw-work-card__title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 0;
  }
  .hw-work-card__excerpt {
    font-size: 22px;
    line-height: 28px;
  }
  /* Tags (neutral pills) + divider line above */
  .hw-work-card__chips {
    border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
    padding-top: 24px;
    gap: 8px;
  }
  .hw-work-card__chips .hw-chip {
    background: #e7e7e7;
    border: 0;
    color: var(--wp--preset--color--neutral-900, #000);
    padding: 8px 14px;
    border-radius: 48px;
    font-size: 14px;
    line-height: 20px;
  }
  /* CTA button (full-width lime) */
  .hw-work-card__cta {
    margin-top: 16px;
    width: 100%;
  }
  .hw-work-card__readmore {
    display: flex;
    width: 100%;
    justify-content: center;
    background: var(--wp--preset--color--lime, #d7db4f);
    border: 0;
    border-radius: 0;
    padding: 14px 12px;
    text-decoration: none;
    color: var(--wp--preset--color--neutral-900, #000);
  }
  .hw-work-card__arrow {
    display: none; /* Figma button is text-only */
  }
}
/* =============================== */
/* Case Study (Single) – Work Study */
/* =============================== */
body.single-case_study, body.single-case_study .site, body.single-case_study #wrapper {
  background-color: var(--wp--preset--color--neutral-100, #ffffff) !important;
  color: var(--wp--preset--color--neutral-900, #000000);
}

.hw-study {
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-work__header-img img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* Contain body / content / metrics to page width; hero stays full-bleed. */
.hw-study-inner {
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 72px);
}

.hw-study__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

.hw-study__title {
  margin: 0;
}

.hw-study__excerpt p {
  margin: 0;
}

.hw-study__divider {
  border: 0;
  border-bottom: 1px solid rgb(0, 0, 0);
  margin: 12px 0 0 0;
  /* Break out of .hw-study-inner to span full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hw-study__columns {
  padding: 30px;
  background-color: var(--wp-preset-color-neutral-100, #ddd);
}

.hw-study__group {
  margin-top: 20px;
}

.hw-study__details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.hw-study__chips {
  flex: 0 0 auto;
}

.hw-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 88px;
  margin-top: 0;
  width: auto;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.hw-study-meta__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 175px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hw-study-meta__label, .hw-study-meta__value {
  margin: 0;
}
.hw-study-content {
  padding-top: 30px;
}
.hw-study-content > *:first-child {
  margin-top: 0;
}
.hw-study-content h2,
.hw-study-content h3 {
  font-size: 36px;
  line-height: 44px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-study-content p {
  font-size: 22px;
  line-height: 28px;
}
.hw-study-content figure.wp-block-image {
  margin: 40px 0;
}
.hw-study-content figure.wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
}
.hw-study-content figure.wp-block-image figcaption {
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px 0;
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (max-width: 640px) {
  .hw-study__body {
    padding-top: 24px;
  }
  .hw-study-content h2,
  .hw-study-content h3 {
    margin-top: 80px;
  }
}
.hw-work-empty {
  opacity: 0.85;
  padding: var(--wp--preset--spacing--lg, 2rem) 0;
}

/* ===================== */
/* Our Approach – Styles */
/* ===================== */
.hw-oa-hero__inner,
.hw-oa-philosophy__inner,
.hw-oa-phases__inner,
.hw-oa-toolkit__inner,
.hw-oa-cta__inner {
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(24px, 5vw, 72px);
}

/* Light grid background */
.hw-bg-grid-light {
  position: relative;
  background-color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-bg-grid-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px);
  opacity: 0.6;
}
.hw-bg-grid-light > * {
  position: relative;
  z-index: 1;
}

/* Hero */
h1.hw-oa-hero__title {
  margin-top: 1.5rem;
  line-height: 1;
  letter-spacing: -0.25px;
}

.hw-oa-hero__our {
  display: inline-block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: 1;
}

.hw-oa-hero__approach {
  display: inline-block;
  color: var(--wp--preset--color--secondary, #828df3);
  font-size: clamp(3.5rem, 7.6vw, 8.5rem);
  line-height: 0.9;
  margin-left: 10px;
}

.hw-oa-hero__lead {
  font-size: 28px;
  line-height: 36px;
  max-width: 60ch;
  margin: 0;
}

/* Metrics */
.hw-oa-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.hw-oa-metric {
  text-align: center;
}

.hw-oa-metric__value {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 45px;
  line-height: 52px;
}
.hw-oa-metric__value.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-metric__value.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-metric__value.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-oa-metric__label {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  color: var(--wp--preset--color--neutral-100, #fff);
}

@media (max-width: 640px) {
  .hw-oa-hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .hw-oa-hero__lead {
    font-size: 24px;
    line-height: 32px;
  }
  .hw-oa-metrics {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
/* Section headers */
.hw-oa-section-head {
  text-align: center;
  color: var(--wp--preset--color--neutral-900, #000);
  display: grid;
  gap: 24px;
  justify-items: center;
}
.hw-oa-section-head.is-invert {
  color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-oa-section-head__title {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.1875rem);
  line-height: 1.08;
  letter-spacing: -0.25px;
  color: #000000;
}
.hw-oa-section-head__title .h-header-pixel {
  font-family: var(--wp--preset--font-family--pixel, monospace);
}
.hw-oa-section-head__lead {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  max-width: 70ch;
}

.hw-oa-oc-services .hw-oa-section-head__title {
  color: #ffffff;
}

/* ================= */
/* Philosophy        */
/* ================= */
.hw-oa-philosophy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Animated philosophy squares — injected by JS, styled here.
     --hw-philo-expand: 0 (stacked upper-left) → 1 (spread along swoop). */
}
.hw-oa-philosophy__squares {
  --hw-philo-expand: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  transform: rotate(-6deg);
  z-index: 0;
}
.hw-oa-philosophy__inner {
  position: relative;
  z-index: 1;
}

.hw-oa-philo-sq {
  position: absolute;
  will-change: left, top;
  transition: left 0.05s linear, top 0.05s linear;
}

/* All squares start right-aligned to the periwinkle's right edge
   (upper-right) and fan out to their own positions on scroll.
   Periwinkle right edge = calc(92% - 59px + 64px) = calc(92% + 5px).
   Stacked left for each = right_edge - own_width. */
/* 1 — Yellow (largest, front of stack) — bg-pos 20% 70% / 420x320 */
.hw-oa-philo-sq--1 {
  width: 420px;
  height: 320px;
  background: rgba(255, 241, 119, 0.2);
  z-index: 4;
  left: calc(92% - 415px - var(--hw-philo-expand) * 72% + var(--hw-philo-expand) * 331px);
  top: calc(16% - 9px + var(--hw-philo-expand) * 54% - var(--hw-philo-expand) * 215px);
}

/* 2 — Fuchsia — bg-pos 70% 55% / 260x220 */
.hw-oa-philo-sq--2 {
  width: 260px;
  height: 220px;
  background: rgba(255, 86, 238, 0.2);
  z-index: 3;
  left: calc(92% - 255px - var(--hw-philo-expand) * 22% + var(--hw-philo-expand) * 73px);
  top: calc(16% - 9px + var(--hw-philo-expand) * 39% - var(--hw-philo-expand) * 112px);
}

/* 3 — Lime — bg-pos 85% 30% / 140x110 */
.hw-oa-philo-sq--3 {
  width: 140px;
  height: 110px;
  background: rgba(215, 219, 79, 0.2);
  z-index: 2;
  left: calc(92% - 135px - var(--hw-philo-expand) * 7% + var(--hw-philo-expand) * 16px);
  top: calc(16% - 9px + var(--hw-philo-expand) * 14% - var(--hw-philo-expand) * 24px);
}

/* 4 — Periwinkle (smallest, stays in place) — bg-pos 92% 16% / 64x56 */
.hw-oa-philo-sq--4 {
  width: 64px;
  height: 56px;
  background: rgba(130, 141, 243, 0.2);
  z-index: 1;
  left: calc(92% - 59px);
  top: calc(16% - 9px);
}

.hw-oa-philo-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.hw-oa-philo-card {
  background: #ffffff;
  border: 1px dashed currentColor;
  border-radius: 0;
  padding: 24px 16px 32px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-philo-card.is-fuchsia {
  border-color: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-philo-card.is-peach {
  border-color: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-philo-card.is-periwinkle {
  border-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-philo-card.is-fuchsia .hw-oa-philo-card__icon {
  background: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-philo-card.is-peach .hw-oa-philo-card__icon {
  background: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-philo-card.is-periwinkle .hw-oa-philo-card__icon {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-philo-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hw-oa-philo-card__icon img {
  display: block;
}
.hw-oa-philo-card__icon .wp-block-image {
  margin: 0;
}
.hw-oa-philo-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
}
.hw-oa-philo-card__subtitle {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
}
.hw-oa-philo-card__body {
  margin: 24px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .hw-oa-philo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hw-oa-philosophy {
    padding-top: 56px;
    padding-bottom: 16px;
  }
}
/* ================= */
/* Phases (black)    */
/* ================= */
.hw-oa-phases {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  padding-top: 80px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hw-oa-phases::before {
  content: "";
  position: absolute;
  inset: -600px -800px;
  background: repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 36px), repeating-radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 44px);
  opacity: 0.12;
  transform: rotate(12deg);
  pointer-events: none;
}

.hw-oa-phase {
  padding-top: 80px;
  padding-bottom: 40px;
}
.hw-oa-phase img {
  width: 100%;
  height: auto;
}
.hw-oa-phase.is-reverse .hw-oa-phase__grid {
  grid-template-columns: 1fr 646px;
}
.hw-oa-phase {
  /* Phase theming */
}
.hw-oa-phase.is-fuchsia {
  --oa-accent: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-phase.is-lime {
  --oa-accent: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-phase.is-peach {
  --oa-accent: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-phase.is-periwinkle {
  --oa-accent: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-phase.is-fuchsia .hw-oa-phase__num, .hw-oa-phase.is-fuchsia .hw-oa-phase__list-title {
  color: var(--oa-accent);
}
.hw-oa-phase.is-lime .hw-oa-phase__num, .hw-oa-phase.is-lime .hw-oa-phase__list-title {
  color: var(--oa-accent);
}
.hw-oa-phase.is-peach .hw-oa-phase__num, .hw-oa-phase.is-peach .hw-oa-phase__list-title {
  color: var(--oa-accent);
}
.hw-oa-phase.is-periwinkle .hw-oa-phase__num, .hw-oa-phase.is-periwinkle .hw-oa-phase__list-title {
  color: var(--oa-accent);
}
.hw-oa-phase__grid {
  display: grid;
  grid-template-columns: 646px 1fr;
  gap: 80px;
  align-items: center;
}
.hw-oa-phase__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hw-oa-phase__head {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}
.hw-oa-phase__num {
  margin: 0;
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
}
.hw-oa-phase__title {
  margin: 0;
  font-size: 45px;
  line-height: 52px;
}
.hw-oa-phase__subtitle {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  opacity: 0.95;
}
.hw-oa-phase__desc {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
.hw-oa-phase__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
}
.hw-oa-phase__list-title {
  margin: 0 0 24px 0;
  font-size: 24px;
  line-height: 32px;
}
.hw-oa-phase__next {
  margin-top: 40px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
  color: inherit;
  text-decoration: none;
  font-size: 22px;
  line-height: 28px;
  color: var(--oa-accent);
}
.hw-oa-phase__next.next-2 {
  color: var(--oa-accent);
  align-self: flex-start;
}
.hw-oa-phase__next.next-3 {
  color: var(--oa-accent);
}
.hw-oa-phase__next:hover, .hw-oa-phase__next:focus-visible {
  text-decoration: underline;
}
.hw-oa-phase__next-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-block;
  background: currentColor;
  position: relative;
  color: var(--oa-accent);
}
.hw-oa-phase__next-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/icons/Icon-Arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hw-oa-phase__visual {
  position: relative;
  height: 547px;
  overflow: visible;
}

ul.hw-oa-phase__bullets,
ul.hw-oa-phase__checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  margin: 0 0 1rem 0.3rem;
}

.hw-oa-phase__bullets li,
.hw-oa-phase__checks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  align-items: center;
  font-size: 22px;
  line-height: 28px;
}

.hw-oa-phase__bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  justify-self: center;
  background: var(--oa-accent);
}

.hw-oa-phase__checks li::before {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--oa-accent);
  border-bottom: 3px solid var(--oa-accent);
  transform: rotate(40deg);
}

/* Decorative visual */
.hw-oa-phase-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hw-oa-phase-visual::before, .hw-oa-phase-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

/* Phase 01 illustration animations */
@keyframes hw-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes hw-slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hw-p01-illus {
  overflow: visible;
}

.hw-p01-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-orbit-spin 30s linear infinite;
  will-change: transform;
}

.hw-p01-orbit__enter {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-visible .hw-p01-orbit__enter {
  opacity: 1;
  transform: scale(1);
}

.hw-p01-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 90s linear infinite;
  will-change: transform;
}

.hw-p01-bounce-sm-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 60s linear infinite reverse;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hw-p01-orbit,
  .hw-p01-spin,
  .hw-p01-bounce-sm-spin {
    animation: none;
  }
  .hw-p01-orbit__enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Phase 02 illustration animations — spin + drift */
@keyframes hw-p02-drift-mid {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -18px);
  }
  50% {
    transform: translate(-5px, 25px);
  }
  75% {
    transform: translate(-28px, -12px);
  }
}
@keyframes hw-p02-drift-sm {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-25px, 22px);
  }
  50% {
    transform: translate(20px, -8px);
  }
  75% {
    transform: translate(10px, 28px);
  }
}
.hw-p02-illus {
  overflow: visible;
}

.hw-p02-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 120s linear infinite;
  will-change: transform;
}

.hw-p02-drift-mid {
  animation: hw-p02-drift-mid 10s ease-in-out infinite;
}

.hw-p02-drift-sm {
  animation: hw-p02-drift-sm 13s ease-in-out infinite;
}

.hw-p02-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-orbit-spin 30s linear infinite;
  will-change: transform;
}

.hw-p02-orbit__enter {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-visible .hw-p02-orbit__enter {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hw-p02-spin,
  .hw-p02-orbit,
  .hw-p02-drift-mid,
  .hw-p02-drift-sm {
    animation: none;
  }
  .hw-p02-orbit__enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Phase 03 illustration animations — independent spins */
.hw-p03-illus {
  overflow: visible;
}

.hw-p03-spin-outer {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 45s linear infinite reverse;
  will-change: transform;
}

.hw-p03-spin-mid {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 30s linear infinite;
  will-change: transform;
}

.hw-p03-spin-sm {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-slow-spin 22s linear infinite reverse;
  will-change: transform;
}

.hw-p03-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-orbit-spin 30s linear infinite;
  will-change: transform;
}

.hw-p03-orbit__enter {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-visible .hw-p03-orbit__enter {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hw-p03-orbit,
  .hw-p03-spin-outer,
  .hw-p03-spin-mid,
  .hw-p03-spin-sm {
    animation: none;
  }
  .hw-p03-orbit__enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Phase 04 illustration animations — corner deform + jiggle */
@keyframes hw-p04-jiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(2.5deg);
  }
}
@keyframes hw-p04-jiggle-alt {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-3.5deg);
  }
  50% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
}
.hw-p04-illus {
  overflow: visible;
}

.hw-p04-jiggle-mid {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-p04-jiggle 6s ease-in-out infinite;
}

.hw-p04-jiggle-sm {
  transform-box: fill-box;
  transform-origin: center;
  animation: hw-p04-jiggle-alt 5s ease-in-out infinite;
}

.hw-p04-sats-enter {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-visible .hw-p04-sats-enter {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hw-p04-jiggle-mid,
  .hw-p04-jiggle-sm {
    animation: none;
  }
  .hw-p04-sats-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1100px) {
  .hw-oa-phase {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .hw-oa-phase__grid,
  .hw-oa-phase.is-reverse .hw-oa-phase__grid {
    display: flex;
    flex-wrap: wrap;
  }
  .hw-oa-phase__visual {
    order: -1;
    width: 100%;
    height: 300px;
    margin-bottom: var(--wp--preset--spacing--sm, 1rem);
  }
  .hw-oa-phase__content {
    width: 100%;
  }
  .hw-oa-phase__next {
    display: flex;
    justify-content: flex-end;
  }
}
/* ================= */
/* Toolkit (light)   */
/* ================= */
.hw-oa-toolkit {
  padding-top: 168px;
  padding-bottom: 128px;
}

.hw-oa-tool-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.hw-oa-tool-card {
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: #ffffff;
  padding: 16px 16px 32px;
  position: relative;
}
.hw-oa-tool-card.is-fuchsia {
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--accent, #ff56ee);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-tool-card.is-fuchsia .hw-oa-chip {
  border-color: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-tool-card.is-fuchsia .hw-oa-tool-card__chips.wp-block-list li {
  border-color: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-tool-card.is-peach {
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--orange, #ffa765);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-tool-card.is-peach .hw-oa-tool-card__icon {
  background: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-tool-card.is-peach .hw-oa-chip {
  border-color: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-tool-card.is-peach .hw-oa-tool-card__chips.wp-block-list li {
  border-color: var(--wp--preset--color--orange, #ffa765);
}
.hw-oa-tool-card.is-lime {
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--lime, #d7db4f);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-tool-card.is-lime .hw-oa-tool-card__icon {
  background: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-tool-card.is-lime .hw-oa-chip {
  border-color: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-tool-card.is-lime .hw-oa-tool-card__chips.wp-block-list li {
  border-color: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-tool-card.is-periwinkle {
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-tool-card.is-periwinkle .hw-oa-tool-card__icon {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-tool-card.is-periwinkle .hw-oa-chip {
  border-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-tool-card.is-periwinkle .hw-oa-tool-card__chips.wp-block-list li {
  border-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-oa-tool-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: var(--wp--preset--color--lime, #d7db4f);
}
.hw-oa-tool-card__icon .wp-block-image {
  margin: 0;
}
.hw-oa-tool-card__icon img {
  display: block;
}
.hw-oa-tool-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: inherit;
}
.hw-oa-tool-card__body {
  margin: 16px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}
.hw-oa-tool-card__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.hw-oa-tool-card__chips.wp-block-list {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
.hw-oa-tool-card__chips.wp-block-list li {
  list-style: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--wp--preset--font-family--heading);
}
@media (prefers-reduced-motion: no-preference) {
  .hw-oa-tool-card.is-wiggling {
    animation: hw-wiggle 0.6s ease-in-out;
  }
}

.hw-oa-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--wp--preset--font-family--heading);
}

@media (max-width: 900px) {
  .hw-oa-tool-grid {
    grid-template-columns: 1fr;
  }
  .hw-oa-phase__head {
    gap: 16px;
    align-items: center;
  }
  .hw-oa-phase__num {
    font-size: 48px;
    line-height: 1.1;
    flex-shrink: 0;
  }
  .hw-oa-phase__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .hw-oa-phase__subtitle {
    font-size: 22px;
    line-height: 1.3;
  }
  .wp-block-columns.our-approach-cols {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-columns.our-approach-cols > .wp-block-column {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  .hw-oa-toolkit {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .hw-oa-tool-grid {
    gap: 32px;
  }
}
/* ================= */
/* CTA (gray)        */
/* ================= */
.hw-oa-cta {
  background: #f3f3f3;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.hw-oa-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 32px;
  text-align: center;
}
.hw-oa-cta__title {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.1875rem);
  line-height: 1.08;
  letter-spacing: -0.25px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-cta__lead {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  max-width: 70ch;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-oa-cta__actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hw-oa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  line-height: 24px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-900, #000);
  background: #ffffff;
}
.hw-oa-btn--primary {
  background: var(--wp--preset--color--accent, #ff56ee);
  border-color: var(--wp--preset--color--accent, #ff56ee);
}
.hw-oa-btn--secondary {
  background: transparent;
}
.hw-oa-btn__arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-block;
  position: relative;
}
.hw-oa-btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/images/icons/HLO-042623-Icon-Arrow.svg") center/18px 18px no-repeat;
  transform: rotate(90deg);
}
.hw-oa-btn:hover, .hw-oa-btn:focus-visible {
  text-decoration: underline;
}

/* Gutenberg buttons (core/buttons + core/button) */
.wp-block-button.hw-oa-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  line-height: 24px;
  color: var(--wp--preset--color--neutral-900, #000);
  background: #ffffff;
}

.wp-block-button.hw-oa-btn--primary .wp-block-button__link {
  background: var(--wp--preset--color--accent, #ff56ee);
  border-color: var(--wp--preset--color--accent, #ff56ee);
}

.wp-block-button.hw-oa-btn--secondary .wp-block-button__link {
  background: transparent;
}
.wp-block-button.hw-oa-btn--secondary .wp-block-button__link::after {
  content: "→";
  display: inline-block;
  width: 32px;
  height: 26px;
  border-radius: 999px;
  flex: none;
}

@media (max-width: 640px) {
  .hw-oa-cta__actions {
    width: 100%;
  }
  .hw-oa-btn {
    width: 100%;
  }
  .wp-block-button.hw-oa-btn {
    width: 100%;
  }
  .wp-block-button.hw-oa-btn .wp-block-button__link {
    width: 100%;
  }
  .hw-oa-cta__lead {
    font-size: 24px;
    line-height: 32px;
  }
}
/* CTA floating blobs */
.hw-oa-cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  will-change: transform;
}
.hw-oa-cta-blob--yellow {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at center, rgba(255, 241, 119, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  top: -10%;
  left: 5%;
  animation: hw-blob-drift-1 14s ease-in-out infinite;
}
.hw-oa-cta-blob--periwinkle {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(130, 141, 243, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  top: -20%;
  right: 0;
  animation: hw-blob-drift-2 18s ease-in-out infinite;
}
.hw-oa-cta-blob--fuchsia {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at center, rgba(255, 86, 238, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -20%;
  left: -5%;
  animation: hw-blob-drift-3 16s ease-in-out infinite;
}

@keyframes hw-blob-drift-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(250px, 80px) scale(1.1);
  }
  45% {
    transform: translate(120px, -120px) scale(0.9);
  }
  70% {
    transform: translate(-180px, 60px) scale(1.05);
  }
}
@keyframes hw-blob-drift-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(-200px, 100px) scale(1.15);
  }
  50% {
    transform: translate(-300px, -60px) scale(0.85);
  }
  75% {
    transform: translate(150px, -90px) scale(1.1);
  }
}
@keyframes hw-blob-drift-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(280px, -100px) scale(1.1);
  }
  55% {
    transform: translate(-150px, -140px) scale(0.9);
  }
  80% {
    transform: translate(200px, 80px) scale(1.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-oa-cta-blob {
    animation: none;
  }
}
/* Metrics Section */
.hw-study-metrics {
  margin-top: 48px;
  padding: 40px;
  background: var(--wp--preset--color--neutral-100, #f7f7f7);
  border-radius: var(--wp--custom--radius--md, 8px);
}
.hw-study-metrics__title {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 28px;
}
.hw-study-metrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.hw-study-metric {
  display: flex;
  flex-direction: column;
}
.hw-study-metric__value {
  font-size: 48px;
  line-height: 1.1;
  color: var(--wp--preset--color--primary, #000);
}
.hw-study-metric__label {
  font-size: 18px;
  margin-top: 8px;
  color: var(--wp--preset--color--neutral-700, #555);
}

@media (max-width: 640px) {
  .hw-study-metrics {
    padding: 24px;
    margin-top: 32px;
  }
  .hw-study-metric__value {
    font-size: 36px;
  }
}
/* ===================== */
/* Contact – Page Styles */
/* ===================== */
.hw-ct-page :where(.is-layout-flow) > :where(* + *) {
  margin-block-start: 0;
}
.hw-ct-page .wp-block-shortcode {
  margin: 0;
}

.hw-ct-msg {
  margin: 0 0 16px 0;
  padding: 12px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.hw-ct-msg.is-success {
  background: var(--wp--preset--color--lime, #d7db4f);
}
.hw-ct-msg.is-error {
  background: var(--wp--preset--color--orange, #ffa765);
}

/* Hero */
.hw-ct-hero {
  padding: 128px 72px 40px;
  background: #ffffff;
  color: #000000;
}
.hw-ct-hero__inner {
  max-width: 1296px;
  margin: 0 auto;
}

h1.hw-ct-title {
  margin-top: 1.5rem;
  font-family: var(--wp--preset--font-family--heading);
  letter-spacing: -0.25px;
  color: #000000;
}

.hw-ct-title__line {
  display: block;
  font-size: 112px;
  line-height: 1.1;
}

h1.hw-ct-title span[style*=font-size] {
  font-size: inherit !important;
  line-height: inherit !important;
}

.hw-ct-amazing {
  display: block;
  color: var(--wp--preset--color--primary, #ff56ee);
  font-size: 136px;
  line-height: 1.1;
}

.hw-ct-lead {
  margin: 16px 0 0 0;
  font-size: 28px;
  line-height: 36px;
  max-width: 831px;
}

/* Build section (grid + blur) */
.hw-ct-build {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 96px 72px;
  background-image: url("../../assets/images/s-bg-light.png");
}
.hw-ct-build h2, .hw-ct-build h3 {
  color: #000000;
}
.hw-ct-build::before {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: 0.6;
  pointer-events: none;
}
.hw-ct-build__inner {
  position: relative;
  z-index: 1;
  max-width: 1296px;
  margin: 0 auto;
}
.hw-ct-build__ring {
  position: absolute;
  left: -155px;
  top: 277px;
  width: 722px;
  height: 722px;
  border: 3px dashed var(--wp--preset--color--primary, #ff56ee);
  border-radius: 999px;
  opacity: 0.2;
  pointer-events: none;
}
.hw-ct-build__ring::after {
  content: "";
  position: absolute;
  inset: 24%;
  background: var(--wp--preset--color--primary, #ff56ee);
  opacity: 0.6;
  -webkit-mask: url("../../assets/images/logo-secondary/HLO-050523-HelloWorldLogo-SmileOnly-Black-kmw.svg") center/contain no-repeat;
  mask: url("../../assets/images/logo-secondary/HLO-050523-HelloWorldLogo-SmileOnly-Black-kmw.svg") center/contain no-repeat;
}
.hw-ct-build__grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 88px;
  align-items: start;
}

/* Form card */
.hw-ct-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #000000;
  padding: 24px;
}
.hw-ct-card__head {
  display: grid;
  gap: 0;
}
.hw-ct-card__accent {
  color: var(--wp--preset--color--secondary, #828df3);
  margin-left: 10px;
}
.hw-ct-card__sub {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  max-width: 774px;
}

h2.hw-ct-card__title {
  margin: 0;
  font-size: 56px;
  line-height: 68px;
  letter-spacing: -0.25px;
}

.hw-ct-form {
  display: grid;
  gap: var(--wp--preset--spacing--md, 1.5rem);
  margin-top: 32px;
}
.hw-ct-form input, .hw-ct-form select, .hw-ct-form textarea {
  padding: 12px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 8px;
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-ct-form input:focus-visible,
.hw-ct-form select:focus-visible,
.hw-ct-form textarea:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary, #828df3);
  outline-offset: 1px;
}
.hw-ct-form input::placeholder {
  color: #000000;
}

.ff-default .ff-el-form-control {
  padding: 12px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 8px;
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-ct-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.hw-ct-field, .ff-el-group {
  display: grid;
  gap: 6px;
  position: relative;
}

.ff-el-group {
  position: relative;
  margin-top: 20px;
}

.hw-ct-field label, .ff-el-input--label,
.hw-ct-label,
.hw-ct-field legend {
  font-family: "Courier Prime", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.hw-ct-field > label, .ff-el-group:not(:is(.input_radio)) .ff-el-input--label {
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-30%);
  padding: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
}

.hw-ct-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.hw-ct-fieldset .hw-ct-label {
  margin: 0 0 8px 0;
  padding: 0;
}

.hw-ct-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: flex-start;
  flex-direction: column;
}
.hw-ct-radio label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hw-ct-radio input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #000000;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  position: relative;
  padding: 12px;
}
.hw-ct-radio input[type=radio]::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #000000;
  transform: scale(0);
  transition: transform 140ms ease;
  top: 4px;
  left: 4px;
  position: absolute;
}
.hw-ct-radio input[type=radio]:checked::after {
  transform: scale(1);
}

.ff-el-form-check-radio {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #000000;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  position: relative;
  padding: 12px;
}
.ff-el-form-check-radio::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #000000;
  transform: scale(0);
  transition: transform 140ms ease;
  top: 4px;
  left: 4px;
  position: absolute;
}
.ff-el-form-check-radio:checked::after {
  transform: scale(1);
}

.ff-el-form-check-label span {
  margin-left: 10px;
}

.hw-ct-actions {
  margin-top: var(--wp--preset--spacing--sm, 1rem);
}

.hw-ct-submit {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 0;
  border: 1px solid #000000;
  background: var(--wp--preset--color--lime, #d7db4f);
  color: var(--wp--preset--color--neutral-900, #000);
  cursor: pointer;
}
.hw-ct-submit:hover, .hw-ct-submit:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 0px 0px 0 0 rgba(0, 0, 0, 0.08);
}

/* Info column */
.hw-ct-info {
  display: grid;
  gap: var(--wp--preset--spacing--md, 1.5rem);
}
.hw-ct-info__title {
  margin: 0;
  font-size: 45px;
  line-height: 52px;
  letter-spacing: -0.25px;
}
.hw-ct-info__sub {
  margin: 8px 0 0 0;
  font-size: 24px;
  line-height: 32px;
}

.hw-ct-info-section {
  display: grid;
  gap: 6px;
}

.hw-ct-info-head {
  display: inline-flex;
  gap: var(--wp--preset--spacing--sm, 1rem);
}

.hw-ct-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-block;
  position: relative;
}
.hw-ct-icon.is-periwinkle {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-ct-icon.is-accent {
  background: var(--wp--preset--color--accent, #ff56ee);
}
.hw-ct-icon.is-lime {
  background: var(--wp--preset--color--lime, #d7db4f);
}
.hw-ct-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hw-ct-icon.is-email::after {
  background-image: url("../../assets/images/icons/Icon-TalkBubble.png");
}
.hw-ct-icon.is-phone::after {
  background-image: url("../../assets/images/icons/Icon-Phone.png");
}
.hw-ct-icon.is-careers::after {
  background-image: url("../../assets/images/icons/suit-case.png");
}

a.hw-ct-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #000000;
}

.hw-ct-linkwrap {
  margin: 0;
}

.hw-ct-muted {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}

.hw-ct-divider {
  border: 0;
  border-top: 1px solid #000000;
  margin: 16px 0 0 0;
  opacity: 1;
}

.hw-ct-follow__title {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
}

/* Socials */
.hw-ct-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hw-ct-socials a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-decoration: none;
}
.hw-ct-socials a:hover, .hw-ct-socials a:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary, #828df3);
  outline-offset: 2px;
}
.hw-ct-socials svg {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hw-ct-row-2 {
    grid-template-columns: 1fr;
  }
  .hw-ct-build__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 960px) {
  .hw-ct-hero {
    padding: 48px 24px 64px;
  }
  .hw-ct-title__line {
    font-size: 45px;
    line-height: 52px;
  }
  .hw-ct-amazing {
    font-size: 45px;
    line-height: 52px;
  }
  .hw-ct-lead {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
  }
  .hw-ct-build {
    padding: 24px 16px 32px;
  }
  .hw-ct-build__ring {
    left: -93px;
    top: -390px;
    width: 373px;
    height: 373px;
  }
}
/* Contact floating blobs — injected by animations.js */
.hw-ct-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  will-change: transform;
}
.hw-ct-blob--fuchsia {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, rgba(255, 86, 238, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
  top: 10%;
  left: 15%;
  animation: hw-ct-drift-1 16s ease-in-out infinite;
}
.hw-ct-blob--lime {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(215, 219, 79, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  top: -10%;
  left: -5%;
  animation: hw-ct-drift-2 14s ease-in-out infinite;
}
.hw-ct-blob--periwinkle {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(130, 141, 243, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -15%;
  right: -5%;
  animation: hw-ct-drift-3 18s ease-in-out infinite;
}

@keyframes hw-ct-drift-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(180px, 60px) scale(1.1);
  }
  50% {
    transform: translate(80px, -100px) scale(0.92);
  }
  75% {
    transform: translate(-120px, 40px) scale(1.06);
  }
}
@keyframes hw-ct-drift-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(200px, 100px) scale(1.12);
  }
  55% {
    transform: translate(100px, -80px) scale(0.88);
  }
  80% {
    transform: translate(-160px, 60px) scale(1.08);
  }
}
@keyframes hw-ct-drift-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(-200px, 80px) scale(1.15);
  }
  50% {
    transform: translate(-280px, -60px) scale(0.85);
  }
  75% {
    transform: translate(100px, -80px) scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-ct-blob {
    animation: none;
  }
}
/* ========================= */
/* Resources – Archive Page  */
/* ========================= */
/* Hero */
.hw-res-hero {
  padding-top: 128px;
  padding-bottom: 120px;
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
}
.hw-res-hero__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  display: grid;
  gap: 16px;
}
.hw-res-hero__title {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.25px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}
.hw-res-hero__line {
  display: block;
}
.hw-res-hero__insights {
  color: var(--wp--preset--color--secondary, #828df3);
  padding-left: 0.25ch;
  font-size: 1.214em;
  line-height: 1;
}
.hw-res-hero__desc {
  max-width: 52ch;
  margin: 0;
  opacity: 0.9;
  font-size: 28px;
  line-height: 36px;
}

.hw-res-dots {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  justify-content: start;
}

.hw-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-block;
}
.hw-dot--accent {
  background-color: var(--wp--preset--color--accent, #fff177);
}
.hw-dot--fuchsia {
  background-color: var(--wp--preset--color--primary, #ff56ee);
}
.hw-dot--periwinkle {
  background-color: var(--wp--preset--color--secondary, #828df3);
}
.hw-dot--lime {
  background-color: var(--wp--preset--color--lime, #d7db4f);
}
.hw-dot--peach {
  background-color: var(--wp--preset--color--orange, #ffa765);
}

@media (max-width: 960px) {
  .hw-res-hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .hw-res-hero__inner {
    padding-inline: 24px;
  }
  .hw-res-hero__title {
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 0;
  }
  .hw-res-hero__desc {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
  }
  .hw-res-hero__insights {
    font-size: 1em;
    padding-left: 0;
  }
}
@media (min-width: 961px) {
  .hw-res-hero__title {
    font-size: 112px;
  }
}
/* Controls: search + chips */
.hw-res-controls-wrap {
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-res-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 32px);
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (min-width: 960px) {
  .hw-res-controls {
    padding: 32px clamp(24px, 5vw, 72px);
  }
}
.hw-res-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
}
.hw-res-search input[type=search] {
  width: 100%;
  padding: 12px 44px 12px 14px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 8px;
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
}
.hw-res-search input[type=search]::placeholder {
  color: var(--wp--preset--color--neutral-900, #000);
  opacity: 0.6;
}
.hw-res-search__submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.hw-res-search__icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10 18a8 8 0 1 1 5.293-14.293A8 8 0 0 1 10 18Zm11.707 2.293-4.387-4.387a10 10 0 1 0-1.414 1.414l4.387 4.387a1 1 0 0 0 1.414-1.414Z'/%3E%3C/svg%3E");
}

.hw-res-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.hw-res-filters .hw-chip {
  white-space: nowrap;
  background-color: transparent;
  color: var(--hw-chip-color, var(--wp--preset--color--neutral-900, #000));
  border: 1px solid var(--hw-chip-color, #9a9a9a);
  padding: 7px 14px;
  border-radius: 18px;
  font-size: 13px;
  text-decoration: none;
}
.hw-res-filters .hw-chip.is-active {
  background-color: var(--hw-chip-color, var(--wp--preset--color--neutral-900, #000));
  color: var(--wp--preset--color--neutral-100, #fff);
  border-color: var(--hw-chip-color, var(--wp--preset--color--neutral-900, #000));
}

.hw-res-cat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
  color: #000000;
  background: #fff177;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.hw-res-cat-pill.is-fuchsia {
  background: #ff56ee;
  color: #000000;
}
.hw-res-cat-pill.is-peach {
  background: #ffa765;
  color: #000000;
}
.hw-res-cat-pill.is-lime, .hw-res-cat-pill.is-lemon {
  background: #d7db4f;
  color: #000000;
}
.hw-res-cat-pill.is-periwinkle {
  background: #828df3;
  color: #ffffff;
}

.hw-res-featured__eyebrow .hw-res-cat-pill {
  background: #ff56ee;
  border-color: #ff56ee;
  color: #000000;
}

@media (max-width: 960px) {
  .hw-res-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 16px;
  }
  .hw-res-filters {
    justify-content: flex-start;
  }
  .hw-res-search {
    max-width: none;
  }
}
/* Featured card */
.hw-res-featured {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 80px clamp(24px, 5vw, 72px) 48px;
  display: grid;
  gap: 16px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-featured__tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hw-res-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wp--preset--color--primary, #ff56ee);
}
.hw-res-featured__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}
.hw-res-featured__card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: var(--wp--preset--color--neutral-100, #fff);
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--primary, #ff56ee);
  padding: 24px;
}
.hw-res-featured__media {
  position: relative;
}
.hw-res-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hw-res-featured__mask {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--wp--preset--color--primary, #ff56ee);
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
}
.hw-res-featured__body {
  display: grid;
  gap: 24px;
  padding: 0;
}
.hw-res-featured__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hw-res-featured__eyebrow .hw-chip {
  background: #ff56ee;
  border-color: #ff56ee;
  color: #000000;
}
.hw-res-featured__title {
  margin: 0;
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-featured__title a {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}
.hw-res-featured__title a:hover, .hw-res-featured__title a:focus {
  text-decoration: underline;
}
.hw-res-featured__excerpt {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
}
.hw-res-featured__foot {
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hw-res-featured__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--wp--preset--color--lime, #d7db4f);
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}
.hw-res-featured__cta:hover, .hw-res-featured__cta:focus {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hw-res-featured {
    padding: 24px 24px 48px;
  }
  .hw-res-featured__card {
    grid-template-columns: 1fr;
    padding: 24px 16px 16px;
    border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
    box-shadow: none;
  }
  .hw-res-featured__mask {
    right: 8px;
    top: 8px;
    transform: none;
    width: 22px;
    height: 22px;
  }
  .hw-res-featured__title {
    font-size: 32px;
    line-height: 40px;
  }
  .hw-res-featured__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .hw-res-featured__cta {
    width: 100%;
  }
}
/* Case Studies section */
.hw-res-cases {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 48px clamp(24px, 5vw, 72px) 48px;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-cases__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 32px;
}
.hw-res-cases__title {
  margin: 0;
  font-size: var(--wp--preset--font-size--headline-lg, 2.25rem);
  line-height: 1.2;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-cases__viewall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 14px 18px;
  color: var(--wp--preset--color--neutral-900, #000);
  background: transparent;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hw-res-cases__viewall:hover, .hw-res-cases__viewall:focus {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}
.hw-res-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 1200px) {
  .hw-res-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .hw-res-cases {
    padding: 32px 24px;
  }
  .hw-res-cases__head {
    padding-bottom: 24px;
  }
  .hw-res-cases__grid {
    grid-template-columns: 1fr;
  }
}
/* Latest Articles section heading */
.hw-res-articles {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-articles__head {
  padding: 48px clamp(24px, 5vw, 72px) 0;
}
.hw-res-articles__title {
  margin: 0;
  font-size: var(--wp--preset--font-size--headline-lg, 2.25rem);
  line-height: 1.2;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (max-width: 960px) {
  .hw-res-articles__head {
    padding: 32px 24px 0;
  }
}
/* Cards grid */
.hw-res-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 48px clamp(24px, 5vw, 72px) 32px;
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (max-width: 960px) {
  .hw-res-grid {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }
}
/* Card */
.hw-res-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hw-res-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.hw-res-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hw-res-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hw-res-card__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-card__title {
  margin: 0;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-card__title a {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}
.hw-res-card__title a:hover, .hw-res-card__title a:focus {
  text-decoration: underline;
}
.hw-res-card__excerpt {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-card__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding-top: 8px;
  gap: 16px;
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-card__readmore {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
  color: var(--wp--preset--color--neutral-900, #000);
}
.hw-res-card__readmore:hover, .hw-res-card__readmore:focus {
  text-decoration: underline;
}
.hw-res-card__arrow {
  display: inline-block;
}

.hw-res-card__media img,
.hw-res-featured__media img {
  display: block;
  width: 100%;
  height: auto;
}

.hw-res-meta {
  font-size: 16px;
  line-height: 24px;
  opacity: 1;
  color: var(--wp--preset--color--neutral-900, #000);
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}

.hw-res-author {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.hw-res-author__avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
}
.hw-res-author__meta {
  display: grid;
  gap: 0;
}
.hw-res-author__name, .hw-res-author__role {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}

@media (max-width: 960px) {
  .hw-res-card__foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Archive cards: oversized title like Figma */
.hw-res-grid .hw-res-card__title {
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}

@media (max-width: 960px) {
  .hw-res-grid .hw-res-card__title {
    font-size: 32px;
    line-height: 40px;
  }
}
/* Case study cards: smaller title in 4-col grid */
.hw-res-cases__grid .hw-res-card__title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}

/* Related cards: smaller headline title like Figma */
.hw-related-grid .hw-res-card__title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}

/* Pagination */
.hw-res-pagination {
  display: flex;
  justify-content: center;
  padding: 8px clamp(24px, 5vw, 72px) 48px;
}
.hw-res-pagination__list {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hw-res-pagination__item a,
.hw-res-pagination__item span {
  display: inline-grid;
  place-items: center;
  padding: 8px 16px;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 8px;
  text-decoration: none;
  background: #ffffff;
  color: #000000;
}
.hw-res-pagination__item .current {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* ========================= */
/* Resource – Single (Video) */
/* ========================= */
.hw-post-hero {
  padding-top: var(--wp--preset--spacing--lg, 2rem);
  padding-bottom: var(--wp--preset--spacing--sm, 1rem);
}

.hw-post-shell {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
}

.hw-post-crumbbar {
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 16px 0;
}

.hw-post-crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}
.hw-post-crumbs a {
  color: inherit;
  text-decoration: none;
}
.hw-post-crumbs a:hover, .hw-post-crumbs a:focus {
  text-decoration: underline;
}
.hw-post-crumbs__sep {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
}

.hw-post-backbar {
  display: none;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 16px 0;
}

.hw-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
  text-decoration: none;
  color: inherit;
}
.hw-post-back:hover, .hw-post-back:focus {
  text-decoration: underline;
}
.hw-post-back__icon {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.hw-breadcrumbs {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
  font-size: var(--wp--preset--font-size--sm);
  opacity: 0.85;
  padding-top: var(--wp--preset--spacing--sm, 1rem);
}
.hw-breadcrumbs a {
  text-decoration: none;
}
.hw-breadcrumbs a:hover, .hw-breadcrumbs a:focus {
  text-decoration: underline;
}

.hw-post-eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 12px;
  align-items: center;
}
.hw-post-eyebrow .hw-chip {
  background: var(--hw-chip-color, currentColor);
  border-color: var(--hw-chip-color, currentColor);
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-post-title {
  margin: 1rem 0 var(--wp--preset--spacing--sm, 1rem) 0;
  color: inherit;
}

.hw-post-lead {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}

.hw-post-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--sm, 1rem);
  margin-top: 1.5rem;
}

.hw-post-author {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
}

.hw-post-share {
  display: inline-flex;
  gap: 16px;
}
.hw-post-share.is-rail {
  gap: 8px;
}

.hw-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}
.hw-share-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}
.hw-share-btn:hover, .hw-share-btn:focus {
  background: rgba(0, 0, 0, 0.06);
}

.hw-post-heroimg {
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.hw-post-heroimg img {
  display: block;
  width: 100%;
  height: 703px;
  object-fit: cover;
}

@media (max-width: 960px) {
  .hw-post-shell {
    padding-inline: 8px;
  }
  .hw-post-crumbbar {
    display: none;
  }
  .hw-post-backbar {
    display: block;
  }
  .hw-post-hero {
    padding-top: 24px;
  }
  .hw-post-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .hw-post-lead {
    font-size: 16px;
    line-height: 24px;
  }
  .hw-post-byline {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hw-post-share {
    justify-content: space-between;
  }
  .hw-post-heroimg {
    box-shadow: none;
    margin-inline: -8px;
    border-left: 0;
    border-right: 0;
  }
  .hw-post-heroimg img {
    height: 215px;
  }
}
.hw-post-media {
  margin: var(--wp--preset--spacing--sm, 1rem) 0 var(--wp--preset--spacing--md, 1.5rem);
}

.hw-media-aux {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hw-pill-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--wp--preset--color--secondary, #828df3);
  background: rgba(130, 141, 243, 0.1);
}

.hw-episode {
  font-size: var(--wp--preset--font-size--sm);
  opacity: 0.9;
}

.hw-media-frame {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--wp--custom--radius--md, 8px);
  overflow: hidden;
}
.hw-media-frame iframe,
.hw-media-frame video,
.hw-media-frame audio {
  display: block;
  width: 100%;
  height: auto;
}
.hw-media-frame.is-video, .hw-media-frame.is-iframe {
  aspect-ratio: 16/9;
  background: #000000;
}
.hw-media-frame.is-video iframe,
.hw-media-frame.is-video video, .hw-media-frame.is-iframe iframe,
.hw-media-frame.is-iframe video {
  width: 100%;
  height: 100%;
}
.hw-media-frame.is-iframe iframe {
  width: 100%;
  height: 100%;
}
.hw-media-frame.is-audio .mejs-container,
.hw-media-frame.is-audio .mejs-embed,
.hw-media-frame.is-audio .mejs-embed body {
  background: #000000;
}
.hw-media-frame.is-audio .mejs-controls {
  background: #000000;
}
.hw-media-frame.is-audio .mejs-controls .mejs-time-rail .mejs-time-total {
  background: rgba(255, 255, 255, 0.18);
}
.hw-media-frame.is-audio .mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--wp--preset--color--secondary, #828df3);
}
.hw-media-frame.is-audio .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: rgba(255, 255, 255, 0.3);
}
.hw-media-frame.is-audio .mejs-button > button {
  filter: invert(1) contrast(1.2);
}

.hw-post-transcript {
  margin: 0.75rem 0 0 0;
}
.hw-post-transcript .hw-btn {
  background: var(--wp--preset--color--lime, #d7db4f);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 2px solid currentColor;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
}
.hw-post-transcript .hw-btn:hover, .hw-post-transcript .hw-btn:focus {
  transform: translate(-1px, -1px);
  box-shadow: 9px 9px 0 0 var(--wp--preset--color--secondary, #828df3);
}

.hw-media-fallback {
  display: block;
  width: 100%;
  height: auto;
}

.hw-post-body {
  display: grid;
  gap: var(--wp--preset--spacing--sm, 1rem);
}
.hw-post-body p {
  margin: 0 0 1rem 0;
}
.hw-post-body h2,
.hw-post-body h3 {
  margin-top: 1.5rem;
}

/* Article typography + blocks */
.single-post .hw-post-body {
  padding: 32px 0;
  font-size: 22px;
  line-height: 28px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  color: var(--wp--preset--color--neutral-900, #000);
}
.single-post .hw-post-body h2,
.single-post .hw-post-body h3,
.single-post .hw-post-body h4,
.single-post .hw-post-body h5,
.single-post .hw-post-body h6 {
  color: var(--wp--preset--color--neutral-900, #000);
}
.single-post .hw-post-body h2 {
  font-size: 45px;
  line-height: 52px;
  margin: 24px 0 0;
}
.single-post .hw-post-body h3 {
  font-size: 30px;
  line-height: 38px;
  margin: 20px 0 0;
}
.single-post .hw-post-body h4 {
  font-size: 24px;
  line-height: 32px;
  margin: 16px 0 0;
}
.single-post .hw-post-body hr,
.single-post .hw-post-body .wp-block-separator {
  border: none;
  border-top: 1px solid var(--wp--preset--color--neutral-300, #ccc);
  opacity: 1 !important;
  margin: 24px 0;
}
.single-post .hw-post-body ul {
  margin: 0;
  padding-left: 33px;
  display: grid;
  gap: 16px;
}
.single-post .hw-post-body li {
  margin: 0;
}
.single-post .hw-post-body blockquote,
.single-post .hw-post-body .wp-block-quote {
  margin: 32px 0;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 24px;
  position: relative;
}
.single-post .hw-post-body blockquote::before,
.single-post .hw-post-body .wp-block-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background: var(--wp--preset--color--primary, #ff56ee);
}
.single-post .hw-post-body blockquote p,
.single-post .hw-post-body .wp-block-quote p {
  margin: 0;
  padding-left: 9px;
}
.single-post .hw-post-body blockquote cite,
.single-post .hw-post-body .wp-block-quote cite {
  display: block;
  margin-top: 16px;
  padding-left: 9px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}
.single-post .hw-post-body .wp-block-columns {
  gap: 32px;
}
.single-post .hw-post-body .wp-block-column {
  border: 2px solid var(--wp--preset--color--neutral-900, #000);
  padding: 16px;
}

@media (max-width: 960px) {
  .single-post .hw-post-body {
    padding: 32px 16px;
  }
  .single-post .hw-post-body h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .single-post .hw-post-body .wp-block-columns {
    gap: 32px;
  }
}
/* Tags row */
.hw-post-tags {
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 16px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.hw-post-tags__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}

.hw-post-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  background: #e7e7e7;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}

/* Article layout with right rail */
.hw-article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--wp--preset--spacing--lg, 2rem);
  align-items: start;
}

@media (max-width: 1100px) {
  .hw-article {
    grid-template-columns: 1fr;
  }
}
.hw-rail {
  position: sticky;
  top: 100px;
  display: grid;
  gap: var(--wp--preset--spacing--sm, 1rem);
}

.hw-rail-card {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--wp--custom--radius--md, 8px);
  padding: var(--wp--preset--spacing--sm, 1rem);
}

.hw-rail-title {
  display: block;
  margin: 0 0 0.5rem 0;
}

.hw-toc {
  margin: 0;
}
.hw-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 6px;
}
.hw-toc a {
  text-decoration: none;
}
.hw-toc a:hover, .hw-toc a:focus {
  text-decoration: underline;
}

/* Author card */
.hw-post-author-card {
  padding-top: var(--wp--preset--spacing--md, 1.5rem);
  padding-bottom: var(--wp--preset--spacing--sm, 1rem);
}
.hw-post-author-card .hw-author-card {
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
}

.hw-author-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
}
.hw-author-grid > * {
  min-width: 0;
}

.hw-author-card {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 0;
  padding: 40px 24px;
  display: grid;
  gap: 16px;
}
.hw-author-card__head {
  display: grid;
  grid-template-columns: 57px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding-bottom: 16px;
}
.hw-author-card__avatar {
  border-radius: 999px;
}
.hw-author-card__name {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}
.hw-author-card__role {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-family: var(--wp--preset--font-family--heading, var(--helloworld-font-heading));
}
.hw-author-card__bio {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Related */
.hw-related {
  padding-top: var(--wp--preset--spacing--lg, 2rem);
  padding-bottom: var(--wp--preset--spacing--lg, 2rem);
}
.hw-related__head {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--sm, 1rem);
}
.hw-related__title {
  margin: 0 0 0.25rem 0;
  font-size: 45px;
  line-height: 52px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  color: inherit;
}
.hw-related__pixel {
  color: var(--wp--preset--color--secondary, #828df3);
}
.hw-related__desc {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  opacity: 1;
}

.hw-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

@media (max-width: 960px) {
  .hw-author-grid {
    grid-template-columns: 1fr;
  }
  .hw-related-grid {
    grid-template-columns: 1fr;
  }
  .hw-related__desc {
    font-size: 24px;
    line-height: 32px;
  }
}
/* ===================== */
/* Cover – Components    */
/* ===================== */
.hw-cover {
  position: relative;
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  padding-top: var(--wp--preset--spacing--2-xl, 4rem);
  padding-bottom: var(--wp--preset--spacing--xl, 3rem);
}

.hw-cover__pill {
  margin-bottom: var(--wp--preset--spacing--lg, 2rem);
}

.hw-cover__rule {
  inline-size: 100%;
  block-size: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: var(--wp--preset--spacing--md, 1.5rem) 0 var(--wp--preset--spacing--lg, 2rem);
}

.hw-cover__rule.is-bottom {
  margin: var(--wp--preset--spacing--xl, 3rem) 0 0;
}

.hw-cover__icons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--wp--preset--spacing--md, 1.5rem);
}

.hw-cover__icon {
  display: inline-grid;
  place-items: center;
  inline-size: 54px;
  block-size: 54px;
  border-radius: 999px;
  color: var(--wp--preset--color--neutral-900, #000);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.hw-cover__icon svg {
  inline-size: 24px;
  block-size: 24px;
}

.hw-cover__icon.is-periwinkle {
  background-color: var(--wp--preset--color--secondary, #828df3);
}

.hw-cover__icon.is-accent {
  background-color: var(--wp--preset--color--accent, #ff56ee);
}

.hw-cover__icon.is-lime {
  background-color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-cover__title {
  margin: 0;
  line-height: 0.98;
  display: block;
}

@media (max-width: 960px) {
  .hw-cover {
    padding-top: var(--wp--preset--spacing--xl, 3rem);
  }
  .hw-cover__icon {
    inline-size: 46px;
    block-size: 46px;
  }
  .hw-cover__icons {
    gap: 12px;
  }
}
/* ===================== */
/* Footer – Components   */
/* ===================== */
.hw-footer, .site-footer .site-footer-wrap {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer a {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

.hw-footer a:hover, .hw-footer a:focus {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

/*
 * Gutenberg Group blocks may render an extra wrapper:
 *   .wp-block-group__inner-container
 * If we don't account for it, our grid/flex layouts collapse (everything stacks in one column).
 *
 * Preferred fix (modern browsers): flatten the wrapper inside the footer so our selectors
 * continue to match the expected structure.
 *
 * Fallback (older browsers): explicitly apply layout to the inner container AND ensure it
 * spans the full width of the parent grid.
 */
@supports (display: contents) {
  .hw-footer .wp-block-group__inner-container {
    display: contents;
  }
}
.hw-footer__top > .wp-block-group__inner-container,
.hw-footer__row > .wp-block-group__inner-container {
  grid-column: 1/-1;
  width: 100%;
  display: grid;
  grid-template-columns: 407px 1fr;
}

.hw-footer__links > .wp-block-group__inner-container {
  grid-column: 1/-1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hw-footer__info > .wp-block-group__inner-container {
  display: grid;
  gap: 8px;
}

.hw-footer__socials > .wp-block-group__inner-container {
  display: inline-flex;
  gap: 48px;
  align-items: center;
}

/* Top grid: brand (fixed) + links (fluid) */
.hw-footer__top {
  display: grid;
  grid-template-columns: 407px 1fr;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__brand, .site-top-footer-inner-wrap .footer-widget2 {
  position: relative;
  padding: 40px 60px 0 80px;
  position: relative;
}

.footer-widget-area > * {
  z-index: 1;
}

.site-top-footer-inner-wrap .footer-widget2::before {
  content: "";
  background-image: url("../../assets/brand/decor/footer-grid.png");
  background-repeat: no-repeat;
  background-size: 176.17% 158%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.hw-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.hw-footer__logo-img {
  display: block;
  height: auto;
}

.hw-footer__logo-img--desktop {
  width: 247px;
}

.hw-footer__logo-img--mobile {
  display: none;
  width: 161px;
}

.hw-footer-logo-wrap {
  margin: 0;
}

.hw-footer-logo-link {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.hw-footer-logo-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/2025/12/HLO-050523-HelloWorldLogo-White-kmw-1-1024x279.png") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.hw-footer-logo-link:hover::after, .hw-footer-logo-link:focus-visible::after {
  opacity: 1;
}

.hw-footer__desc, .footer-widget2 p {
  margin: 48px 0;
  font-size: 22px;
  line-height: 28px;
  max-width: 40ch;
}

.hw-footer__grid {
  position: absolute;
  inset: -22px auto auto 0;
  width: 407px;
  height: 454px;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("../../assets/brand/decor/footer-grid.png");
  background-repeat: no-repeat;
  background-size: 176.17% 158%;
  background-position: -76.17% -0.04%;
}

.hw-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Top + left border on the container; cells supply bottom + right */
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-left: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.widget_block a {
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__link, .footer-widget3 p, .footer-widget4 p {
  margin: 0;
  display: grid;
  place-items: center;
  /* Figma: 22/28 */
  font-size: 22px;
  line-height: 28px;
  padding: 0;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-right: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__link a {
  text-decoration: none;
  color: var(--wp--preset--color--neutral-900, #000);
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  transition: background 420ms ease;
}

.hw-footer__link a:hover,
.hw-footer__link a:focus {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

.hw-footer__link:nth-child(5n+1) a:hover,
.hw-footer__link:nth-child(5n+1) a:focus {
  background: #ff56ee;
}

.hw-footer__link:nth-child(5n+2) a:hover,
.hw-footer__link:nth-child(5n+2) a:focus {
  background: #828df3;
}

.hw-footer__link:nth-child(5n+3) a:hover,
.hw-footer__link:nth-child(5n+3) a:focus {
  background: #ffa765;
}

.hw-footer__link:nth-child(5n+4) a:hover,
.hw-footer__link:nth-child(5n+4) a:focus {
  background: #d7db4f;
}

.hw-footer__link:nth-child(5n+5) a:hover,
.hw-footer__link:nth-child(5n+5) a:focus {
  background: #fff177;
}

/* Kadence widget footer nav – color hover fills */
.footer-widget3 p a,
.footer-widget4 p a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  text-decoration: none;
  color: var(--wp--preset--color--neutral-900, #000);
  transition: background 420ms ease;
}

.footer-widget3 p a:hover,
.footer-widget3 p a:focus,
.footer-widget4 p a:hover,
.footer-widget4 p a:focus {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

.footer-widget3 .widget:nth-child(5n+1) p a:hover,
.footer-widget3 .widget:nth-child(5n+1) p a:focus {
  background: #ff56ee;
}

.footer-widget3 .widget:nth-child(5n+2) p a:hover,
.footer-widget3 .widget:nth-child(5n+2) p a:focus {
  background: #828df3;
}

.footer-widget3 .widget:nth-child(5n+3) p a:hover,
.footer-widget3 .widget:nth-child(5n+3) p a:focus {
  background: #ffa765;
}

.footer-widget3 .widget:nth-child(5n+4) p a:hover,
.footer-widget3 .widget:nth-child(5n+4) p a:focus {
  background: #d7db4f;
}

.footer-widget4 .widget:nth-child(5n+1) p a:hover,
.footer-widget4 .widget:nth-child(5n+1) p a:focus {
  background: #fff177;
}

.footer-widget4 .widget:nth-child(5n+2) p a:hover,
.footer-widget4 .widget:nth-child(5n+2) p a:focus {
  background: #ff56ee;
}

.footer-widget4 .widget:nth-child(5n+3) p a:hover,
.footer-widget4 .widget:nth-child(5n+3) p a:focus {
  background: #828df3;
}

.footer-widget4 .widget:nth-child(5n+4) p a:hover,
.footer-widget4 .widget:nth-child(5n+4) p a:focus {
  background: #ffa765;
}

/* Contact row */
.hw-footer__row {
  display: grid;
  grid-template-columns: 407px 1fr;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__info, .footer-widget5 .site-info-inner {
  padding: 32px 0 32px 80px;
  display: grid;
  gap: 8px;
  /* Figma: 22/28 */
  font-size: 22px;
  line-height: 28px;
}

.site-footer-top-section-1 {
  border-right: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.site-middle-footer-wrap .site-footer-middle-section-1 {
  border-right: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__info p, .footer-widget5 p {
  margin: 0;
}

.hw-footer__info a, .site-footer-wrap .ft-ro-lstyle-noline a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)) {
  text-decoration: underline;
}

.hw-footer__socials, .footer-social-inner-wrap {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  padding: 32px 0 32px 80px;
}

.hw-footer .hw-social, .footer-social-inner-wrap .footer-social-item {
  /* Social icons are Image blocks (figure > a > img). */
  margin: 0;
  display: inline-block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

.hw-footer .hw-social a {
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: transparent;
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

.hw-footer .hw-social.is-filled a {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  padding: 5px 4px;
  box-sizing: border-box;
}

.hw-footer .hw-social img {
  /* External SVGs often have percent-based intrinsic sizing; force-fit in the box */
  display: block;
  inline-size: 100%;
  block-size: 100%;
  max-inline-size: 100%;
  max-block-size: 100%;
}

.hw-footer .hw-social a:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary, #828df3);
  outline-offset: 2px;
}

/* Social icon color rollovers – override Kadence .social-button hover
   Note: .social-button and .footer-social-item are the SAME <a> element,
   so we chain them (no space) for specificity. */
.hw-footer .hw-social a,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item {
  transition: background 420ms ease;
}

.hw-footer .hw-social:nth-child(5n+1) a:hover,
.hw-footer .hw-social:nth-child(5n+1) a:focus,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+1):hover,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+1):focus {
  background: #ff56ee;
}

.hw-footer .hw-social:nth-child(5n+2) a:hover,
.hw-footer .hw-social:nth-child(5n+2) a:focus,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+2):hover,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+2):focus {
  background: #828df3;
}

.hw-footer .hw-social:nth-child(5n+3) a:hover,
.hw-footer .hw-social:nth-child(5n+3) a:focus,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+3):hover,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+3):focus {
  background: #ffa765;
}

.hw-footer .hw-social:nth-child(5n+4) a:hover,
.hw-footer .hw-social:nth-child(5n+4) a:focus,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+4):hover,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+4):focus {
  background: #d7db4f;
}

.hw-footer .hw-social:nth-child(5n+5) a:hover,
.hw-footer .hw-social:nth-child(5n+5) a:focus,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+5):hover,
.site-footer .site-footer-wrap .footer-social-inner-wrap .social-button.footer-social-item:nth-child(5n+5):focus {
  background: #fff177;
}

/* Statement */
.site-bottom-footer-inner-wrap .site-footer-bottom-section-1 {
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-footer__statement, .site-footer-bottom-section-1 .footer-widget-area-inner.site-info-inner {
  padding: 48px 80px;
}

.site-footer-bottom-section-1 .footer-widget-area-inner.site-info-inner p {
  margin: 0;
}

.hw-footer__a11y {
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  max-width: 1200px;
}

/* Make top footer row edge-to-edge by removing the contained max-width */
.site-top-footer-wrap .site-footer-row-container-inner > .site-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-top-footer-wrap {
  position: relative;
}
.site-top-footer-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  transform: translateX(-50%);
  border-bottom: 1px solid black;
}

.site-footer-row.site-footer-row-columns-3 {
  grid-template-columns: 27% 36.5% 36.5%;
  padding-bottom: 0px;
}

.site-footer-row.site-footer-row-columns-2.site-footer-row-column-layout-right-golden {
  grid-template-columns: 27% 63%;
}

.site-bottom-footer-inner-wrap {
  grid-template-columns: auto;
}

/* Copyright */
.hw-footer__copyright {
  padding: 48px 80px;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.hw-footer__copyright p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

/* Responsive */
@media (max-width: 1220px) {
  .hw-footer__links {
    border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
    border-left: none;
  }
  .hw-footer__top,
  .hw-footer__row {
    grid-template-columns: 1fr;
  }
  .hw-footer__top > .wp-block-group__inner-container,
  .hw-footer__row > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }
  .hw-footer__brand {
    border-right: 0;
    border-bottom: none;
    padding: 0px 16px 0 16px;
  }
  .site-top-footer-inner-wrap .footer-widget2 {
    padding: 0px 16px;
  }
  .footer-widget2 .wp-block-image {
    width: 60%;
  }
  .footer-widget2 p {
    margin: 24px 0;
  }
  .hw-footer__logo-img--desktop {
    display: none;
  }
  .hw-footer__logo-img--mobile {
    display: block;
  }
  .hw-footer__desc {
    margin: 16px 0 24px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .hw-footer__grid {
    inset: -1px 0 auto 0;
    width: 100%;
    height: 196px;
    background-size: 224.06% 365.98%;
    background-position: -96.87% -11.31%;
  }
  .hw-footer__links .hw-footer__link {
    padding: 0;
    /* Figma mobile: 16/24 */
    font-size: 16px;
    line-height: 24px;
  }
  .hw-footer__link a {
    white-space: nowrap;
    padding: 24px clamp(8px, 3vw, 24px);
  }
  .footer-widget3 p a,
  .footer-widget4 p a {
    white-space: nowrap;
    padding: 24px clamp(8px, 3vw, 24px);
  }
  .footer-widget3 p,
  .footer-widget4 p {
    white-space: nowrap;
  }
  .hw-footer__info {
    border-right: 0;
    padding: 24px 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .hw-footer__socials {
    gap: clamp(12px, 3vw, 24px);
    padding: 24px 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .hw-footer__socials > .wp-block-group__inner-container {
    gap: clamp(12px, 3vw, 24px);
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .footer-social-inner-wrap {
    gap: clamp(12px, 3vw, 24px) !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
  }
  /* Override desktop specificity (.hw-footer .hw-social) */
  .hw-footer .hw-social, .footer-social-inner-wrap .footer-social-item {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .hw-footer .hw-social.is-filled a {
    padding: 2px;
  }
  .hw-footer__copyright {
    text-align: center;
  }
  .hw-footer__statement,
  .hw-footer__copyright {
    padding: 32px 16px;
  }
  .site-top-footer-inner-wrap .footer-widget2 {
    padding: 24px 16px;
  }
  .site-footer-row.site-footer-row-columns-2.site-footer-row-column-layout-right-golden {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-widget5 .site-info-inner {
    border-right: none;
    padding: 32px 0 32px 0px;
    text-align: center;
  }
  .footer-widget-area.content-align-left .footer-social-inner-wrap {
    padding: 24px 16px;
    width: 100%;
    justify-content: center;
  }
  .site-footer-bottom-section-1 .footer-widget-area-inner.site-info-inner {
    padding: 32px 16px;
  }
  .footer-widget4 p, .site-top-footer-inner-wrap .footer-widget2 {
    border-right: none;
  }
  .site-footer-top-section-1 {
    border-right: none;
  }
  .site-footer-top-section-2 {
    border-left: 1px solid var(--wp--preset--color--neutral-900, #000);
  }
  .site-middle-footer-wrap .site-footer-middle-section-1 {
    border-right: none;
  }
  .site-top-footer-inner-wrap .site-footer-top-section-1 {
    border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
  }
}
@media (max-width: 1024px) {
  .site-footer-top-section-2 {
    border-left: none;
  }
}
/* =========================== */
/* Page Headers – Components   */
/* =========================== */
.hw-ph {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  padding-top: 128px;
  padding-bottom: 40px;
}

.hw-ph__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.hw-ph-dots {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  height: 22px;
}

.hw-ph-dots .hw-dot {
  width: 22px;
  height: 22px;
}

.hw-ph-taglines {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hw-ph-title {
  margin: 0;
  line-height: 112px;
  letter-spacing: -0.25px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  font-size: 112px;
  white-space: pre-wrap;
}

.hw-ph-title__main {
  display: inline;
}

.hw-ph-title__pixel {
  color: var(--wp--preset--color--secondary, #828df3);
  padding-left: 0.25ch;
  font-size: 1.214em; /* 136 / 112 */
  line-height: 1;
}

.hw-ph-sub {
  max-width: 831px;
  margin: 0;
  opacity: 0.95;
  font-size: 28px;
  line-height: 36px;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
}

.hw-ph-metrics {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 48px;
  width: 100%;
}

.hw-ph-metric {
  flex: 1 1 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hw-ph-metric__value {
  margin: 0;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  font-size: 45px;
  line-height: 52px;
}

.hw-ph-metric__label {
  margin: 0;
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  font-size: 28px;
  line-height: 36px;
  color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-ph-metric.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-ph-metric.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-ph-metric.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-ph-metric.is-periwinkle .hw-ph-metric__label,
.hw-ph-metric.is-lime .hw-ph-metric__label,
.hw-ph-metric.is-peach .hw-ph-metric__label {
  color: var(--wp--preset--color--neutral-100, #fff);
  opacity: 1;
}

@media (max-width: 960px) {
  .hw-ph {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .hw-ph__inner {
    padding-inline: 24px;
    gap: 32px;
  }
  .hw-ph-taglines {
    padding-top: 0;
    padding-bottom: 0;
    gap: 20px;
  }
  .hw-ph-title {
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 0;
    width: 100%;
  }
  .hw-ph-title__pixel {
    padding-left: 0;
    font-size: 1em;
  }
  .hw-ph-sub {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
  }
  .hw-ph-metrics {
    flex-direction: column;
    gap: 56px;
  }
  .hw-ph-metric__label {
    font-size: 24px;
    line-height: 32px;
  }
}
/* =========================== */
/* Stats / Metrics Overview    */
/* =========================== */
.hw-stats {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  padding: var(--wp--preset--spacing--xl, 3rem) 0;
}

.hw-stats__inner {
  /* Match theme section gutters + constrain */
  padding-inline: clamp(24px, 5vw, 72px);
  max-width: var(--wp--style--global--content-size, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.hw-stats__title {
  margin: 0 0 var(--wp--preset--spacing--xs, 0.5rem) 0;
}

.hw-stats__subtitle {
  margin: 0;
  max-width: 70ch;
  opacity: 0.85;
}

.hw-stats__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--lg, 2rem);
  padding-top: var(--wp--preset--spacing--lg, 2rem);
}

.hw-stats__metric {
  text-align: center;
}

.hw-stats__icon {
  display: inline-grid;
  place-items: center;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 999px;
  border: 2px solid var(--wp--preset--color--neutral-900, #000);
  margin-bottom: var(--wp--preset--spacing--sm, 1rem);
}

.hw-stats__icon svg {
  inline-size: 22px;
  block-size: 22px;
}

.hw-stats__value {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2rem, 3vw, var(--wp--preset--font-size--2xl));
  line-height: 1.05;
}

.hw-stats__label {
  margin: var(--wp--preset--spacing--xs, 0.5rem) 0 0 0;
  opacity: 0.9;
}

.hw-stats__metric.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-stats__metric.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-stats__metric.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-stats__metric.is-fuchsia {
  color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-stats__metric.is-periwinkle .hw-stats__icon,
.hw-stats__metric.is-lime .hw-stats__icon,
.hw-stats__metric.is-peach .hw-stats__icon,
.hw-stats__metric.is-fuchsia .hw-stats__icon {
  background: currentColor;
}

.hw-stats__metric.is-periwinkle .hw-stats__icon svg,
.hw-stats__metric.is-lime .hw-stats__icon svg,
.hw-stats__metric.is-peach .hw-stats__icon svg,
.hw-stats__metric.is-fuchsia .hw-stats__icon svg {
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-stats__metric.is-periwinkle .hw-stats__label,
.hw-stats__metric.is-lime .hw-stats__label,
.hw-stats__metric.is-peach .hw-stats__label,
.hw-stats__metric.is-fuchsia .hw-stats__label {
  color: var(--wp--preset--color--neutral-900, #000);
}

@media (max-width: 960px) {
  .hw-stats__metrics {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
/* =========================== */
/* Styling Elements – Utilities */
/* =========================== */
/* Hairline divider */
.hw-divider {
  inline-size: 100%;
  block-size: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* Neutral divider for light surfaces */
.hw-divider.is-dark {
  background: rgba(0, 0, 0, 0.2);
}

/* Tag / small label */
.hw-tag {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.2;
}

/* Card surface utility */
.hw-card-surface {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--wp--custom--radius--md, 8px);
}

/* Wavy lines decorative background (CSS-only, diagonal) */
.hw-bg-waves {
  position: relative;
  overflow: hidden;
}

.hw-bg-waves.is-light {
  /* Light surfaces: use black waves at low opacity to match Figma */
  background-image: url("../../assets/images/our-service-bg.png?v=2");
  background-repeat: repeat;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-bg-waves.is-light .hw-wd-service__title {
  color: inherit;
}

/* ===================== */
/* What We Do – (Figma)  */
/* ===================== */
.hw-wd-hero__title {
  text-align: left;
  line-height: 1;
  font-size: clamp(3rem, 6vw, 7rem);
  margin: 0;
}

.hw-wd-hero__do {
  color: var(--wp--preset--color--secondary, #828df3);
  font-size: clamp(3.5rem, 7vw, 8.5rem);
  line-height: 0.9;
}

.hw-wd-hero__lead {
  text-align: left;
  max-width: 52ch;
  margin-left: 0;
  margin-right: 0;
}

.hw-wd-metrics {
  margin-top: 48px;
}

.hw-wd-metric {
  text-align: center;
}

.hw-wd-metric__value {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 45px;
  line-height: 52px;
}

.hw-wd-metric__value.is-periwinkle {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-metric__value.is-lime {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-metric__value.is-peach {
  color: var(--wp--preset--color--orange, #ffa765);
}

/* Count-up animation layout */
.hw-wd-metric__value {
  display: inline-flex;
  align-items: baseline;
  overflow: hidden;
}

.hw-metric-suffix {
  display: inline-block;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.hw-metric-suffix.is-hidden {
  opacity: 0;
  transform: translateX(-0.5em);
}

.hw-wd-metric__label {
  color: var(--wp--preset--color--neutral-100, #fff);
  font-size: 28px;
  line-height: 36px;
}

.hw-wd-core.hw-bg-waves {
  padding: 3rem 5rem 0;
  margin-bottom: 0;
}

.hw-wd-core {
  position: relative;
}

.hw-wd-core__intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.1875rem);
  line-height: 1.05;
  color: #000000;
}

.hw-wd-core__intro .h-header-pixel {
  font-family: var(--wp--preset--font-family--pixel);
}

.hw-wd-service {
  display: grid;
  grid-template-columns: 646px 1fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 40px;
  align-items: center;
  position: relative;
}

.hw-wd-service.is-reverse {
  grid-template-columns: 1fr 646px;
}

.hw-wd-service__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hw-wd-service__header {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hw-wd-service__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--neutral-900, #000);
  flex: 0 0 auto;
}

.hw-wd-service__icon img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.hw-wd-service__icon svg {
  width: 28px;
  height: 28px;
}

.hw-wd-service__icon.is-service-dev {
  background: var(--wp--preset--color--primary, #ff56ee);
}

.hw-wd-service__icon.is-service-data {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-service__icon.is-service-ux {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-service__icon.is-service-strategy {
  background: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-service__title {
  font-size: 45px;
  line-height: 52px;
  margin: 0;
}

.hw-wd-service__subtitle {
  font-size: 28px;
  line-height: 36px;
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
}

.hw-wd-service__desc {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.hw-wd-kicker {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.hw-wd-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hw-wd-caps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hw-wd-caps li {
  font-size: 22px;
  line-height: 28px;
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 0;
}

.hw-wd-caps li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-top: 10px;
  background: var(--hw-wd-dot, #000);
}

.hw-wd-service.is-service-dev {
  --hw-wd-dot: var(--wp--preset--color--primary, #ff56ee);
}

.hw-wd-service.is-service-data {
  --hw-wd-dot: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-service.is-service-ux {
  --hw-wd-dot: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-service.is-service-strategy {
  --hw-wd-dot: var(--wp--preset--color--secondary, #828df3);
}

.hw-wd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hw-wd-chips li,
.hw-wd-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 48px;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--wp--preset--font-family--heading);
  letter-spacing: 0.1px;
  background: transparent;
  white-space: nowrap;
}

.hw-wd-chips.is-service-dev {
  color: var(--wp--preset--color--primary, #ff56ee);
}

.hw-wd-chips.is-service-data {
  color: var(--wp--preset--color--lime, #d7db4f);
}

.hw-wd-chips.is-service-ux {
  color: var(--wp--preset--color--orange, #ffa765);
}

.hw-wd-chips.is-service-strategy {
  color: var(--wp--preset--color--secondary, #828df3);
}

/* Illustration: square grid with accent overlay */
.hw-wd-service__illus {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}

.hw-wd-illus-grid {
  position: relative;
  width: 100%;
  max-width: 502px;
  aspect-ratio: 502/472;
  overflow: hidden;
  isolation: isolate;
}

.hw-wd-illus-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><defs><path id='w' d='M0 60 C 12 40, 36 80, 48 60 S 84 80, 96 60' fill='none' stroke='%23ffffff' stroke-width='1.2'/></defs><g opacity='0.16'><use href='%23w'/><use href='%23w' y='14'/><use href='%23w' y='28'/><use href='%23w' y='42'/><use href='%23w' y='56'/><use href='%23w' y='70'/><use href='%23w' y='84'/><use href='%23w' y='98'/></g></svg>");
  background-size: 180px 180px;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hw-wd-illus-grid__cells {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 24px;
}

.hw-wd-illus-grid__cells > span {
  border: 1px solid var(--hw-illus-stroke, #000);
  background: var(--hw-illus-fill, rgba(0, 0, 0, 0.04));
}

.hw-wd-illus-grid__cells > span.is-hot {
  background: var(--hw-illus-hot, rgba(0, 0, 0, 0.14));
}

.hw-wd-illus-grid__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hw-wd-illus-grid__ring {
  position: absolute;
  width: 299px;
  height: 299px;
  border-radius: 999px;
  background: var(--hw-illus-accent, #000);
  opacity: 0.18;
}

.hw-wd-illus-grid__ring2 {
  position: absolute;
  width: 189px;
  height: 189px;
  border-radius: 999px;
  background: var(--hw-illus-accent, #000);
  opacity: 0.28;
}

.hw-wd-illus-grid__core {
  position: relative;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  background: var(--hw-illus-accent, #000);
  display: grid;
  place-items: center;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-wd-illus-grid__core img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.hw-wd-illus-grid__core svg {
  width: 56px;
  height: 56px;
}

.hw-wd-illus-grid__dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--hw-illus-accent, #000);
  opacity: 1;
}

.hw-wd-illus-grid__dot.is-1 {
  left: 63%;
  top: 15%;
  transform: translateX(-50%);
}

.hw-wd-illus-grid__dot.is-2 {
  right: 15%;
  top: 63%;
}

.hw-wd-illus-grid__dot.is-3 {
  left: 35%;
  bottom: 12%;
}

.hw-wd-illus-grid__dot.is-4 {
  left: 13%;
  top: 35%;
}

.hw-wd-illus-grid__dot.is-a {
  left: 30%;
  top: 16%;
}

.hw-wd-illus-grid__dot.is-b {
  left: 80%;
  top: 32%;
}

.hw-wd-illus-grid__dot.is-c {
  left: 68%;
  bottom: 15%;
}

.hw-wd-illus-grid__dot.is-d {
  left: 16%;
  top: 68%;
}

.hw-wd-illus-grid.is-service-dev {
  --hw-illus-accent: var(--wp--preset--color--primary, #ff56ee);
  --hw-illus-stroke: var(--wp--preset--color--primary, #ff56ee);
  --hw-illus-fill: rgba(255, 86, 238, 0.04);
  --hw-illus-hot: rgba(255, 86, 238, 0.14);
}

.hw-wd-illus-grid.is-service-data {
  --hw-illus-accent: var(--wp--preset--color--lime, #d7db4f);
  --hw-illus-stroke: var(--wp--preset--color--lime, #d7db4f);
  --hw-illus-fill: rgba(215, 219, 79, 0.04);
  --hw-illus-hot: rgba(215, 219, 79, 0.14);
}

.hw-wd-illus-grid.is-service-ux {
  --hw-illus-accent: var(--wp--preset--color--orange, #ffa765);
  --hw-illus-stroke: var(--wp--preset--color--orange, #ffa765);
  --hw-illus-fill: rgba(255, 167, 101, 0.04);
  --hw-illus-hot: rgba(255, 167, 101, 0.14);
}

.hw-wd-illus-grid.is-service-strategy {
  --hw-illus-accent: var(--wp--preset--color--secondary, #828df3);
  --hw-illus-stroke: var(--wp--preset--color--secondary, #828df3);
  --hw-illus-fill: rgba(130, 141, 243, 0.04);
  --hw-illus-hot: rgba(130, 141, 243, 0.14);
}

@media (max-width: 720px) {
  .hw-wd-illus-grid {
    max-width: 180px;
    aspect-ratio: 1;
  }
  .hw-wd-illus-grid__cells {
    gap: 8px;
  }
  .hw-wd-illus-grid__ring {
    width: 110px;
    height: 110px;
  }
  .hw-wd-illus-grid__ring2 {
    width: 74px;
    height: 74px;
  }
  .hw-wd-illus-grid__core {
    width: 52px;
    height: 52px;
  }
  .hw-wd-illus-grid__core svg {
    width: 28px;
    height: 28px;
  }
  .hw-wd-illus-grid__dot {
    width: 7px;
    height: 7px;
  }
}
/* CTA band (gray) */
.hw-wd-start {
  background-image: url("../../assets/images/background_1520x478.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  color: #000000;
  padding: 136px 0;
}

.hw-wd-start__inner {
  position: relative;
  text-align: center;
}

.hw-wd-start__inner > * {
  position: relative;
  z-index: 2;
}

.hw-wd-start__inner h2 {
  margin: 0 0 12px 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #000000;
}

.hw-wd-start__deco {
  display: none;
}

.hw-wd-start__blob {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.hw-wd-start__blob.is-fuchsia {
  background: rgba(255, 86, 238, 0.3);
  width: 227px;
  height: 227px;
  left: 104px;
  top: 119px;
}

.hw-wd-start__blob.is-peach {
  background: rgba(255, 167, 101, 0.15);
  width: 408px;
  height: 408px;
  left: 331px;
  top: 363px;
}

.hw-wd-start__blob.is-periwinkle {
  background: rgba(130, 141, 243, 0.3);
  width: 269px;
  height: 269px;
  right: 204px;
  top: 197px;
}

.hw-wd-start__blob.is-lime {
  background: rgba(215, 219, 79, 0.45);
  width: 306px;
  height: 306px;
  left: -217px;
  top: -289px;
  border-radius: 999px;
  border: none;
}

.yellow-cirlce-float {
  position: absolute;
  left: -200px;
  top: 20%;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.hw-wd-start .wp-block-button.is-style-outline .wp-block-button__link.hw-wd-start__secondary {
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: transparent;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-wd-start__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.hw-wd-start .wp-block-buttons {
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
}

.hw-wd-start .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 3px;
  line-height: 1.2;
  box-shadow: none;
}

.hw-wd-start .wp-block-button__link.has-primary-background-color {
  background: var(--wp--preset--color--primary, #ff56ee);
  color: #000000;
  border: 1px solid #000000;
}

.hw-wd-start .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  gap: 16px;
  padding: 5px 16px;
}

@media (max-width: 960px) {
  .hw-wd-core.hw-bg-waves {
    padding: 1.5rem 1rem 20px !important;
  }
  .hw-wd-service,
  .hw-wd-service.is-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 16px;
  }
  .hw-wd-service__illus {
    order: 1;
  }
  .hw-wd-service__content {
    order: 2;
  }
  .hw-wd-caps {
    grid-template-columns: 1fr;
  }
  .hw-wd-hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .hw-wd-hero__do {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
  .hw-wd-metric__label {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 640px) {
  .hw-wd-start {
    padding: 40px 0;
  }
  .hw-wd-start__blob.is-fuchsia {
    left: 16px;
    width: 61px;
    height: 237px;
  }
  .hw-wd-start__blob.is-peach {
    left: 77px;
    width: 110px;
    height: 425px;
    top: 373px;
  }
  .hw-wd-start__blob.is-periwinkle {
    right: 0;
    width: 72px;
    height: 281px;
    top: 200px;
  }
  .hw-wd-start__blob.is-lime {
    left: -153px;
    top: -170px;
    width: 306px;
    height: 306px;
  }
  .hw-wd-start .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
    flex-direction: column;
    padding: 0 2rem;
    gap: 1rem;
  }
}
/* ===================== */
/* Blog – List Page      */
/* ===================== */
.site-container.hw-blog-container {
  /* Match Figma mobile gutters for blog pages */
  padding-inline: clamp(24px, 5vw, 72px);
}

.hw-blog-list {
  display: grid;
  gap: var(--wp--preset--spacing--lg, 2rem);
  padding: var(--wp--preset--spacing--lg, 2rem) 0 var(--wp--preset--spacing--xl, 3rem);
}

.hw-blog-card {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--wp--custom--radius--md, 8px);
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform, box-shadow, border-color;
}
.hw-blog-card:hover, .hw-blog-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hw-blog-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hw-blog-card__body {
  padding: var(--wp--preset--spacing--sm, 1rem);
  display: grid;
  gap: 8px;
}

.hw-blog-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hw-blog-card__eyebrow .hw-chip {
  /* Match Figma filled chips on blog cards */
  background: var(--hw-chip-color, currentColor);
  border-color: var(--hw-chip-color, currentColor);
  color: var(--wp--preset--color--neutral-900, #000);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.hw-blog-meta {
  font-size: var(--wp--preset--font-size--sm);
  opacity: 0.85;
}

.hw-blog-card__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  line-height: 1.05;
}

.hw-blog-card__excerpt {
  margin: 0;
}

.hw-blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding: 8px var(--wp--preset--spacing--sm, 1rem);
}

.hw-blog-author {
  display: grid;
  gap: 0;
}

.hw-blog-author__by,
.hw-blog-author__role {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.hw-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hw-blog-readmore__icon svg {
  display: block;
}

.hw-blog-readmore:hover,
.hw-blog-readmore:focus {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}

@media (min-width: 960px) {
  .hw-blog-list {
    /* Figma desktop: 2 columns with 56px gap and 48px vertical padding */
    gap: 56px;
    padding-top: 48px;
    padding-bottom: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hw-blog-card__media {
    display: block;
    height: 360px;
    overflow: hidden;
  }
  .hw-blog-card__media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .hw-blog-card__body {
    padding: 0;
    gap: 16px;
    margin-top: 32px;
  }
  .hw-blog-card__eyebrow {
    gap: 8px;
  }
  .hw-blog-meta {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    opacity: 1;
  }
  .hw-blog-card__title {
    font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
    font-size: 67px;
    line-height: 72px;
    letter-spacing: -0.25px;
  }
  .hw-blog-card__excerpt,
  .hw-blog-card__excerpt p {
    margin: 0;
    font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
    font-size: 22px;
    line-height: 28px;
  }
  .hw-blog-card__foot {
    padding: 8px 0 0 0;
    border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
    margin-top: 16px;
  }
  .hw-blog-author__by,
  .hw-blog-author__role {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
  }
}
/* Figma: Blogs Mobile (320) */
@media (max-width: 960px) {
  .hw-blog-list {
    gap: 56px;
    padding-top: 0;
    padding-bottom: 48px;
  }
  .hw-blog-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hw-blog-card:hover,
  .hw-blog-card:focus-within {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }
  .hw-blog-card__media {
    display: block;
    height: 208px;
    overflow: hidden;
  }
  .hw-blog-card__media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .hw-blog-card__body {
    padding: 0;
    gap: 16px;
    margin-top: 32px;
  }
  .hw-blog-card__eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hw-blog-meta {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    opacity: 1;
  }
  .hw-blog-card__title {
    font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
    font-size: 32px;
    line-height: 40px;
  }
  .hw-blog-card__excerpt,
  .hw-blog-card__excerpt p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
  }
  .hw-blog-card__foot {
    padding: 8px 0 0 0;
    border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
    margin-top: 16px;
  }
  .hw-blog-readmore {
    padding: 6px 12px;
  }
}
/* Featured article (top) */
.hw-blog-featured {
  padding: 0 0 0 0;
}

.hw-blog-featured__kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-top: 80px;
  padding-bottom: 16px;
  color: var(--wp--preset--color--neutral-900, #000);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.hw-blog-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wp--preset--color--secondary, #828df3);
}

.hw-blog-featured__kicker-text {
  text-transform: uppercase;
}

.hw-blog-featured__card {
  display: flex;
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 0;
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  overflow: hidden;
  padding: 24px 24px 16px;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--primary, #ff56ee);
}

.hw-blog-featured__media {
  position: relative;
  flex: 0 0 621px;
  overflow: hidden;
}

.hw-blog-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hw-blog-featured__media::after {
  /* Decorative color mask (top-right) */
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--wp--preset--color--primary, #ff56ee);
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-blog-featured__body {
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
}

.hw-blog-featured__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-blog-featured__body .hw-blog-meta {
  color: #444444;
}

.hw-blog-featured__body .hw-blog-card__excerpt {
  color: #444444;
}

.hw-blog-featured__body .hw-blog-card__title {
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  font-size: 67px;
  line-height: 72px;
  letter-spacing: -0.25px;
}

.hw-blog-featured__body .hw-blog-card__excerpt,
.hw-blog-featured__body .hw-blog-card__excerpt p {
  font-family: var(--wp--preset--font-family--body, var(--helloworld-font-body));
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}

.hw-author-avatar {
  border-radius: 999px;
  vertical-align: middle;
  margin-right: 11px;
}

.hw-blog-author {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.hw-blog-author__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hw-blog-featured__cta {
  background: var(--wp--preset--color--lime, #d7db4f);
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.hw-blog-featured__cta:hover,
.hw-blog-featured__cta:focus {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}

@media (max-width: 960px) {
  .hw-blog-featured__kicker {
    padding-top: 0;
  }
  .hw-blog-featured__card {
    flex-direction: column;
    padding: 16px;
  }
  .hw-blog-featured__media {
    flex: 0 0 auto;
    width: 100%;
    height: 208px;
  }
  .hw-blog-featured__body {
    gap: 16px;
  }
  .hw-blog-featured__body .hw-blog-card__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .hw-blog-featured__body .hw-blog-card__excerpt,
  .hw-blog-featured__body .hw-blog-card__excerpt p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
  }
  .hw-blog-featured__foot {
    padding-top: 8px;
  }
}
/* ============================ */
/* Homepage – Latest Blog Grid  */
/* ============================ */
.hw-blog-latest {
  background: var(--wp--preset--color--neutral-100, #fff);
  padding: 120px 0;
}

.hw-blog-latest__inner {
  max-width: var(--wp--style--global--content-size, 1400px);
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 72px);
}

.hw-blog-latest__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 72px;
  border-bottom: none;
  position: relative;
}

.hw-blog-latest__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--wp--preset--color--neutral-900, #000);
  transform: translateX(-50%);
}

.hw-blog-latest__title {
  margin: 0;
  font-size: var(--wp--preset--font-size--display-lg, 4.1875rem);
  line-height: 1.08;
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-blog-latest__sub {
  margin: 8px 0 0 0;
  font-size: clamp(1.25rem, 2.6vw, var(--wp--preset--font-size--display-sm, 2.25rem));
  line-height: 1.25;
  color: #444444;
}

.hw-blog-latest__viewall .wp-block-button__link {
  text-decoration: none;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 14px 18px;
  background: transparent;
  color: var(--wp--preset--color--neutral-900, #000);
  white-space: nowrap;
  border-radius: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hw-blog-latest__viewall .wp-block-button__link:hover,
.hw-blog-latest__viewall .wp-block-button__link:focus {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}

.hw-blog-latest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-top: 80px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 900px) {
  .hw-blog-latest__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .hw-blog-latest__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 782px) {
  .hw-blog-latest {
    padding: 48px 0;
  }
  .hw-blog-latest__head {
    padding-bottom: 24px;
  }
  .hw-blog-latest__grid {
    padding-top: 32px;
  }
}
@media (max-width: 680px) {
  .hw-blog-latest__head {
    flex-direction: column;
    align-items: stretch;
  }
  .hw-blog-latest__viewall {
    align-self: flex-start;
  }
}
.hw-blog-latest__card {
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  background: var(--wp--preset--color--neutral-100, #fff);
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hw-blog-latest__media {
  position: relative;
  display: block;
  height: 202px;
  overflow: hidden;
}

.hw-blog-latest__media figure {
  margin: 0;
}

.hw-blog-latest__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hw-blog-latest__tag {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hw-blog-latest__tag a {
  color: inherit;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 48px;
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.hw-blog-latest__card .wp-block-post-terms__separator {
  display: none;
}

.hw-blog-latest__tag a:hover,
.hw-blog-latest__tag a:focus {
  text-decoration: underline;
}

.hw-blog-latest__body {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
}

.hw-blog-latest__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wp--preset--color--neutral-900, #000);
}

.hw-blog-latest__date {
  display: inline-block;
  align-self: flex-start;
  background: #000000;
  color: #ffffff;
  padding: 4px 7px;
  font-size: 14px;
  line-height: 1.2;
}

.hw-blog-latest__h {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--headline-md, 1.75rem);
  line-height: 1.25;
}

.hw-blog-latest__h a {
  color: var(--wp--preset--color--neutral-900, #000);
  text-decoration: none;
}

.hw-blog-latest__h a:hover,
.hw-blog-latest__h a:focus {
  text-decoration: underline;
}

.hw-blog-latest__by {
  margin: 0;
  color: #444444;
  font-size: var(--wp--preset--font-size--sm, 1rem);
}

.hw-blog-latest__excerpt {
  margin: 0;
  color: #444444;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: var(--wp--preset--font-size--sm, 1rem);
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hw-blog-latest__excerpt p {
  margin: 0;
}

.hw-blog-latest__cta {
  padding-top: 16px;
}

.hw-blog-latest__readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  padding: 14px 18px;
  color: var(--wp--preset--color--neutral-900, #000);
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hw-blog-latest__readmore:hover,
.hw-blog-latest__readmore:focus {
  background-color: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  text-decoration: none;
}

.hw-blog-latest__empty {
  margin: 0;
  color: #444444;
}

/* ===================== */
/* Testimonials – Hero   */
/* ===================== */
.hw-testimonials {
  text-align: center;
  color: var(--wp--preset--color--neutral-100, #fff);
  background-image: url("../../assets/images/test-bg.png");
  background-repeat: repeat;
  padding: 5rem 0;
  overflow: hidden;
}

/* Stacked testimonials (work page) */
.hw-t-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin: 4rem auto;
}

.hw-t-stack__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #9a9a9a;
  box-shadow: 8px 8px 0 #828df3;
  padding: 24px 28px;
}

.hw-t-stack__quote {
  font-family: var(--wp--preset--font-family--pixel, monospace);
  line-height: 1.5;
  color: #000000;
  margin: 0 0 16px 0;
}

.hw-t-stack__cite {
  margin: 0;
  font-family: var(--wp--preset--font-family--pixel, monospace);
  color: #000000;
}

@media (max-width: 640px) {
  .hw-t-stack {
    gap: 2rem;
    padding: 0 2rem;
  }
  .hw-t-stack__card {
    padding: 20px 22px;
    box-shadow: 6px 6px 0 #828df3;
  }
}
.hw-testimonials::after {
  content: " ";
  position: absolute;
  bottom: -75px;
  right: -73px;
  width: 400px;
  height: 400px;
  background-image: url(../../assets/images/logo-secondary/HLO-050523-HelloWorldLogo-SmileOnlyCircle-Black-kmw.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 4px solid #828df3;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
}

.hw-testimonials .wp-block-heading {
  font-size: clamp(45px, 7.8vw, 112px);
  line-height: 1;
  margin-top: 50px;
}

.hw-t-head {
  gap: 8px;
  align-items: baseline;
  margin-bottom: var(--wp--preset--spacing--lg, 2rem);
}

.hw-text-accent {
  color: var(--wp--preset--color--accent, #ff56ee);
}

.hw-t-blurb {
  display: inline-block;
  border: 2px solid #ffffff;
  padding: 16px;
  box-shadow: 8px 8px 0 0 #ffffff;
  background: #000000;
  margin-inline: auto;
}

.hw-t-quote {
  position: relative;
  text-align: left;
  max-width: 740px;
  margin: var(--wp--preset--spacing--xl, 3rem) auto var(--wp--preset--spacing--lg, 2rem);
}

.hw-t-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.5;
  margin: 0;
}

.hw-t-cite {
  margin: 12px 0 0 0;
  opacity: 0.9;
}

.hw-t-quote::before,
.hw-t-quote::after {
  content: "“";
  position: absolute;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 56px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  top: -24px;
  left: -16px;
}

.hw-t-quote::after {
  content: "”";
  bottom: -16px;
  left: auto;
  right: -8px;
  top: auto;
  opacity: 0.85;
}

.hw-t-pager {
  gap: 10px;
}

.hw-pager-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  background: rgba(255, 86, 238, 0.2);
  border-radius: 0;
}

.hw-pager-dot.is-active {
  background: var(--wp--preset--color--accent, #ff56ee);
}

@media (max-width: 640px) {
  .hw-t-mono {
    font-size: var(--wp--preset--font-size--lg);
  }
}
/* Light variant */
.hw-testimonials.is-light {
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-testimonials.is-light .hw-t-blurb {
  border-color: #000000;
  box-shadow: 8px 8px 0 0 #000000;
  background: #ffffff;
}

.hw-testimonials.is-light .hw-t-quote::before,
.hw-testimonials.is-light .hw-t-quote::after {
  color: rgba(0, 0, 0, 0.85);
}

.hw-testimonials.is-light .hw-pager-dot {
  border-color: #000000;
  background: rgba(255, 86, 238, 0.12);
}

.hw-testimonials.is-light .hw-pager-dot.is-active {
  background: var(--wp--preset--color--accent, #ff56ee);
  border-color: #000000;
}

/* ======================================== */
/* Pricing – Services Comparison (responsive)
/* ======================================== */
/**
 * Markup expectations (via block pattern):
 *
 * <div class="hw-compare is-variant-a recommended-col-3">
 *   <div class="hw-compare__wrap">
 *     <figure class="wp-block-table"><table class="hw-compare-table"> ... </table></figure>
 *   </div>
 * </div>
 *
 * Editors can change the recommended column by setting a wrapper class:
 *   recommended-col-{1..6}
 * which highlights that nth column in both thead and tbody.
 *
 * Mobile uses horizontal scroll with sticky first column and sticky header.
 * We scope everything carefully to avoid affecting other tables.
 */
.hw-compare {
  --hw-compare-border: rgba(0,0,0,0.18);
  --hw-compare-muted: rgba(0,0,0,0.55);
  --hw-compare-accent: var(--wp--preset--color--secondary, #828df3);
  display: grid;
  gap: var(--wp--preset--spacing--sm, 1rem);
}

.hw-compare.is-dark {
  --hw-compare-border: rgba(255,255,255,0.24);
  --hw-compare-muted: rgba(255,255,255,0.75);
  color: var(--wp--preset--color--neutral-100, #fff);
}

.hw-compare.is-fuchsia {
  --hw-compare-accent: var(--wp--preset--color--primary);
}

.hw-compare.is-periwinkle {
  --hw-compare-accent: var(--wp--preset--color--secondary);
}

.hw-compare.is-peach {
  --hw-compare-accent: var(--wp--preset--color--orange);
}

.hw-compare.is-lime {
  --hw-compare-accent: var(--wp--preset--color--lime);
}

.hw-compare__wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  border: 1px solid var(--hw-compare-border);
  border-radius: var(--wp--custom--radius--md, 8px);
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-compare.is-dark .hw-compare__wrap {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
}

/* subtle edge fades to hint scroll */
.hw-compare__wrap::before,
.hw-compare__wrap::after {
  content: "";
  position: sticky;
  top: 0;
  bottom: 0;
  width: 18px;
  pointer-events: none;
  z-index: 2;
}

.hw-compare__wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.hw-compare__wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.hw-compare.is-dark .hw-compare__wrap::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.hw-compare.is-dark .hw-compare__wrap::after {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

/* table baseline */
.hw-compare-table {
  width: max(100%, 860px); /* ensure scroll on small screens */
  border-collapse: separate;
  border-spacing: 0;
}

.hw-compare-table th,
.hw-compare-table td {
  padding: 14px 16px;
  border-right: 1px solid var(--hw-compare-border);
  border-bottom: 1px solid var(--hw-compare-border);
  vertical-align: top;
  font-size: var(--wp--preset--font-size--sm, 1rem);
  line-height: 1.4;
}

.hw-compare-table th:last-child,
.hw-compare-table td:last-child {
  border-right: 0;
}

.hw-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: inherit;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--md, 1.125rem);
  line-height: 1.25;
  white-space: nowrap;
}

.hw-compare-table thead th .hw-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
}

.hw-compare-table tbody th[scope=row] {
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
  font-family: var(--wp--preset--font-family--heading);
  white-space: nowrap;
}

.hw-compare-table caption {
  text-align: left;
  padding: 12px 0;
  font-size: var(--wp--preset--font-size--sm);
  opacity: 0.9;
}

/* zebra for readability */
.hw-compare-table tbody tr:nth-child(even) td,
.hw-compare-table tbody tr:nth-child(even) th[scope=row] {
  background-color: rgba(0, 0, 0, 0.02);
}

.hw-compare.is-dark .hw-compare-table tbody tr:nth-child(even) td,
.hw-compare.is-dark .hw-compare-table tbody tr:nth-child(even) th[scope=row] {
  background-color: rgba(255, 255, 255, 0.06);
}

/* boolean helpers */
.hw-compare-table .is-no {
  color: var(--hw-compare-muted);
}

.hw-compare-table .is-na {
  opacity: 0.65;
}

/* recommended column highlight via wrapper class */
.hw-compare.recommended-col-1 thead th:nth-child(1),
.hw-compare.recommended-col-1 tbody td:nth-child(1) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

.hw-compare.recommended-col-2 thead th:nth-child(2),
.hw-compare.recommended-col-2 tbody td:nth-child(2) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

.hw-compare.recommended-col-3 thead th:nth-child(3),
.hw-compare.recommended-col-3 tbody td:nth-child(3) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

.hw-compare.recommended-col-4 thead th:nth-child(4),
.hw-compare.recommended-col-4 tbody td:nth-child(4) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

.hw-compare.recommended-col-5 thead th:nth-child(5),
.hw-compare.recommended-col-5 tbody td:nth-child(5) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

.hw-compare.recommended-col-6 thead th:nth-child(6),
.hw-compare.recommended-col-6 tbody td:nth-child(6) {
  outline: 2px solid var(--hw-compare-accent);
  background: rgba(130, 141, 243, 0.1);
}

/* keep sticky cells above */
.hw-compare.recommended-col-1 thead th:nth-child(1) {
  z-index: 4;
}

/* variants (subtle differences matching Figma options) */
.hw-compare.is-variant-b .hw-compare-table thead th {
  background: var(--hw-compare-accent);
  color: var(--wp--preset--color--neutral-900, #000);
}

.hw-compare.is-variant-c .hw-compare-table th,
.hw-compare.is-variant-c .hw-compare-table td {
  padding: 10px 12px;
}

.hw-compare.is-variant-d .hw-compare-table tbody tr td {
  border-bottom-style: dashed;
}

.hw-compare.is-variant-e .hw-compare-table thead th:first-child {
  border-bottom: 2px solid var(--hw-compare-accent);
}

.hw-compare.is-variant-f .hw-compare-table tbody td .chip {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
}

/* ============================== */
/* Testimonials – Carousel (dark) */
/* ============================== */
.hw-testimonials-carousel {
  position: relative;
}

.hw-testimonials-carousel .hw-t-cite {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hw-testimonials-carousel .hw-t-title {
  opacity: 0.85;
}

.hw-testimonials-carousel .hw-t-title::before {
  content: "—";
  margin-right: 6px;
}

.hw-testimonials-carousel .hw-t-quote {
  margin: 0;
  max-width: none;
}

.hw-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.hw-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.hw-carousel__track {
  --hw-slide: 100%;
  display: flex;
  gap: 0px;
  align-items: stretch;
}

.hw-carousel__slide {
  flex: 0 0 var(--hw-slide);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: var(--wp--preset--spacing--xl, 3rem) 8rem var(--wp--preset--spacing--lg, 2rem);
  width: 100%;
}

.hw-carousel__pager {
  justify-content: center;
  margin-top: 18px;
}

.hw-carousel__pager .hw-pager-dot {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 0;
  padding: 0;
  border: 1px solid #ffffff;
}

.hw-carousel__pager .hw-pager-dot:focus-visible {
  outline: 2px solid var(--wp--preset--color--neutral-100, #fff);
  outline-offset: 3px;
}

/* Slick-generated dots (square per Figma) */
.hw-slick ul.slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.hw-slick ul.slick-dots li {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: rgba(255, 86, 238, 0.2);
  cursor: pointer;
}

.hw-slick ul.slick-dots li.slick-active {
  background: var(--wp--preset--color--accent, #ff56ee);
  border-color: transparent;
}

.hw-slick ul.slick-dots li button {
  display: none;
}

.hw-carousel__arrow {
  position: absolute;
  top: 45px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 28px;
  padding: 0.5rem;
  line-height: 1;
}

.hw-carousel__arrow--prev {
  left: 10px;
  background: #444444;
  color: #ffffff;
}

.hw-carousel__arrow--next {
  right: 10px;
  background: var(--wp--preset--color--primary, #ff56ee);
  color: #000000;
}

.hw-carousel__arrow:hover,
.hw-carousel__arrow:focus-visible {
  filter: brightness(1.05);
}

.hw-carousel__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .hw-carousel__arrow--prev {
    left: 0;
  }
  .hw-carousel__arrow--next {
    right: 0;
  }
}
@media (max-width: 782px) {
  .hw-carousel__arrow {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
  }
  .hw-t-blurb {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .hw-carousel__slide {
    padding: var(--wp--preset--spacing--lg, 2rem) 1.5rem var(--wp--preset--spacing--md, 1.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-carousel__viewport {
    scroll-behavior: auto;
  }
}
.hw-carousel__ornament {
  position: absolute;
  right: -120px;
  bottom: 40px;
  width: min(360px, 45vw);
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  display: none;
}

@media (max-width: 900px) {
  .hw-carousel__ornament {
    right: -140px;
    bottom: 20px;
    width: min(320px, 52vw);
  }
}
@media (max-width: 640px) {
  .hw-carousel__ornament {
    display: none;
  }
}
/* Optional company logo inside a slide */
.hw-t-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.hw-t-logo {
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Light variant tweaks (About-page usage) */
.hw-testimonials-carousel.is-light .hw-carousel__arrow--prev {
  background: #000000;
  color: #ffffff;
}

.hw-testimonials-carousel.is-light .hw-carousel__arrow--next {
  background: var(--wp--preset--color--secondary, #ff56ee);
  color: #000000;
}

.hw-testimonials-carousel.is-light .hw-carousel__pager .hw-pager-dot:focus-visible {
  outline-color: var(--wp--preset--color--neutral-900, #000);
}

/* Cards variant (shows multiple testimonial cards and remains swipeable) */
.hw-testimonials-carousel.is-cards {
  max-width: var(--wp--style--global--content-size);
}

.hw-testimonials-carousel.is-cards .hw-carousel__track {
  --hw-cards-gap: var(--wp--preset--spacing--lg, 2rem);
  gap: var(--hw-cards-gap);
  padding: 0 var(--hw-cards-gap);
  --hw-slide: calc((100% - (2 * var(--hw-cards-gap))) / 3);
}

.hw-testimonials-carousel.is-cards .hw-carousel__slide {
  padding: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.hw-testimonials-carousel.is-cards .hw-carousel__viewport {
  padding: var(--wp--preset--spacing--lg, 2rem) 0;
}

.hw-testimonials-carousel.is-cards .hw-carousel__ornament {
  display: none;
}

.hw-testimonials-carousel.is-cards .hw-t-card-quote {
  margin: 0;
}

.hw-testimonials-carousel.is-cards .hw-t-card-cite {
  margin: 12px 0 0 0;
  font-size: var(--wp--preset--font-size--sm, 1rem);
  opacity: 0.85;
}

.hw-testimonials-carousel.is-cards .hw-t-title::before {
  content: "—";
  margin: 0 6px;
}

@media (max-width: 900px) {
  .hw-testimonials-carousel.is-cards .hw-carousel__track {
    --hw-cards-gap: var(--wp--preset--spacing--md, 1.5rem);
    gap: var(--hw-cards-gap);
    padding: 0 var(--hw-cards-gap);
    --hw-slide: calc((100% - var(--hw-cards-gap)) / 2);
  }
}
@media (max-width: 640px) {
  .hw-testimonials-carousel.is-cards .hw-carousel__track {
    --hw-cards-gap: var(--wp--preset--spacing--sm, 1rem);
    gap: var(--hw-cards-gap);
    padding: 0;
    --hw-slide: 100%;
  }
  .hw-testimonials-carousel.is-cards .hw-carousel__viewport {
    padding: var(--wp--preset--spacing--md, 1.5rem) 0;
  }
}
/* ============================= */
/* About (Figma)                 */
/* ============================= */
.hw-ab-hero {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.hw-ab-hero__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  padding-top: 128px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.hw-ab-dotrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hw-ab-dotrow.is-centered {
  justify-content: center;
}

.hw-ab-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.hw-ab-dot.is-lime {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-ab-dot.is-periwinkle {
  background: var(--wp--preset--color--secondary, #828df3);
}

.hw-ab-dot.is-fuchsia {
  background: var(--wp--preset--color--primary, #ff56ee);
}

.hw-ab-dot.is-peach {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-ab-hero__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  letter-spacing: -0.02em;
}

.hw-ab-hero__line {
  display: block;
  font-size: clamp(45px, 7.8vw, 112px);
  line-height: 1;
}

.hw-ab-hero__accent {
  color: var(--wp--preset--color--secondary, #828df3);
  font-size: clamp(52px, 9.2vw, 136px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hw-ab-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Shared blob base */
.hw-ab-hero__blob {
  position: absolute;
  border-radius: 999px;
  display: block;
}

/* Periwinkle ambient glow — large background wash */
.hw-ab-hero__blob--periwinkle {
  width: 1477px;
  height: 978px;
  right: -37px;
  top: 0;
  border-radius: 32px 0 0 0;
  opacity: 0.6;
  background: radial-gradient(ellipse 60% 55% at 76% 42%, rgba(130, 141, 243, 0.3) 0%, rgba(65, 71, 122, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Fuchsia element — filled peach circle (Ellipse 23 in Figma) */
.hw-ab-hero__blob--fuchsia {
  width: 259px;
  height: 259px;
  right: 449px;
  top: 289px;
  background: var(--wp--preset--color--orange, #ffa765);
  opacity: 0.1;
}

/* Peach element — fuchsia ring (Ellipse 22 in Figma) */
.hw-ab-hero__blob--peach {
  width: 290px;
  height: 290px;
  right: 341px;
  top: 106px;
  background: transparent;
  border: 28px solid var(--wp--preset--color--primary, #ff56ee);
  opacity: 0.2;
}

/* Yellow square — rotated outline */
.hw-ab-hero__blob--square {
  width: 290px;
  height: 290px;
  right: 220px;
  top: 189px;
  border-radius: 0;
  border: 17px solid var(--wp--preset--color--accent, #fff177);
  opacity: 0.1;
  transform: rotate(17.25deg);
}

/* Periwinkle triangle — dashed outline illustration */
.hw-ab-hero__blob--triangle {
  width: 313px;
  height: auto;
  right: 100px;
  top: 60px;
  border-radius: 0;
  /* SVG has internal opacity (~0.04 effective), so CSS opacity
     needs to be high to make the shape visible. */
  opacity: 1;
}

/* Looping path animations (desktop, motion allowed) */
@media (prefers-reduced-motion: no-preference) {
  .hw-ab-hero__blob--periwinkle {
    animation: hw-glow-drift 30s ease-in-out infinite;
  }
  .hw-ab-hero__blob--fuchsia {
    animation: hw-tri-a 20s ease-in-out infinite;
  }
  .hw-ab-hero__blob--peach {
    animation: hw-rect-a 24s ease-in-out infinite;
  }
  .hw-ab-hero__blob--square {
    animation: hw-rect-b 26s ease-in-out infinite;
  }
  .hw-ab-hero__blob--triangle {
    animation: hw-tri-b 22s ease-in-out infinite;
  }
}
/* Subtle drift — periwinkle ambient glow */
@keyframes hw-glow-drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 20px);
  }
}
/* Triangle path A — fuchsia (clockwise) */
@keyframes hw-tri-a {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-80px, 60px);
  }
  66% {
    transform: translate(-40px, -50px);
  }
}
/* Rectangle path A — peach (counter-clockwise) */
@keyframes hw-rect-a {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(60px, 0);
  }
  50% {
    transform: translate(60px, 70px);
  }
  75% {
    transform: translate(0, 70px);
  }
}
/* Rectangle path B — yellow square (clockwise with rotation) */
@keyframes hw-rect-b {
  0%, 100% {
    transform: translate(0, 0) rotate(17.25deg);
  }
  25% {
    transform: translate(-50px, 0) rotate(23deg);
  }
  50% {
    transform: translate(-50px, 60px) rotate(11deg);
  }
  75% {
    transform: translate(0, 60px) rotate(20deg);
  }
}
/* Triangle path — gentle drift */
@keyframes hw-tri-b {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(40px, -30px);
  }
  66% {
    transform: translate(-20px, 40px);
  }
}
@media (max-width: 640px) {
  .hw-ab-hero__inner {
    padding-top: 48px;
    padding-bottom: 64px;
    padding-inline: 24px;
  }
  .hw-ab-hero__blob--periwinkle {
    width: 600px;
    height: 400px;
    right: -60px;
    top: 0;
  }
  .hw-ab-hero__blob--fuchsia {
    width: 160px;
    height: 160px;
    right: -20px;
    top: 120px;
  }
  .hw-ab-hero__blob--peach {
    width: 180px;
    height: 180px;
    right: 40px;
    top: 20px;
    border-width: 14px;
  }
  .hw-ab-hero__blob--square {
    width: 160px;
    height: 160px;
    right: 20px;
    top: 140px;
    border-width: 10px;
  }
  .hw-ab-hero__blob--triangle {
    width: 180px;
    right: -30px;
    top: 30px;
  }
}
.hw-ab-intro {
  background: #ff56ee;
  color: #000000;
  position: relative;
  overflow: visible;
  border: 1px solid #000000;
}

.hw-ab-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../../assets/images/HelloWorld-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.25;
}

.hw-ab-intro__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(18px, 6vw, 64px);
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 128px);
  position: relative;
  z-index: 1;
}

.hw-ab-intro__logo img {
  width: min(431px, 100%);
  height: auto;
  display: block;
}

.hw-ab-intro__p {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.6;
  max-width: 831px;
}

.hw-title {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: clamp(2.4rem, 5vw, 3rem);
  line-height: 1.1;
}

.hw-ab-logo-stack {
  --hw-logo-expand: 0;
  position: absolute;
  /* Positioned at the content width edge, hanging over the top.
     JS moves this element into .hw-ab-intro__inner so right: 0
     aligns with the content container, not the viewport. */
  right: 0;
  top: -120px;
  width: 253px;
  height: 253px;
  pointer-events: none;
  z-index: 10;
}

/* Three stacked logos — all absolutely positioned and centered by default,
   expanding upward via --hw-logo-expand (0 = stacked, 1 = expanded).
   Periwinkle (blue) stays in front; fuchsia & white fan upward behind it. */
.hw-ab-logo-stack img {
  position: absolute;
  width: 76%;
  height: auto;
  display: block;
  /* Center: (100% - 76%) / 2 = 12% */
  top: 12%;
  left: 12%;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* White — back layer, shifts most up-right */
.hw-ab-logo-stack__white {
  z-index: 1;
  transform: translate(calc(var(--hw-logo-expand) * 28%), calc(var(--hw-logo-expand) * -28%));
}

/* Fuchsia — middle layer, shifts up-right */
.hw-ab-logo-stack__fuchsia {
  z-index: 2;
  transform: translate(calc(var(--hw-logo-expand) * 14%), calc(var(--hw-logo-expand) * -14%));
}

/* Periwinkle — front layer, stays at base position */
.hw-ab-logo-stack__periwinkle {
  z-index: 3;
}

@media (max-width: 640px) {
  .hw-ab-intro::before {
    display: none;
  }
  .hw-ab-intro__inner {
    padding: 96px 18px 72px;
  }
  .hw-ab-intro__p {
    font-size: 1.2rem;
    line-height: 1.55;
  }
  .hw-ab-logo-stack {
    left: 18px;
    right: auto;
    top: -55px;
    width: 120px;
    height: 120px;
  }
}
.wp-block-group.hw-ab-values {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: var(--wp--preset--color--neutral-900, #000);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #fde56f;
}

.hw-ab-values__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
}

.hw-ab-values__header {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 48px;
}

.hw-ab-values__title {
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 28px 52px;
  background: radial-gradient(circle at 30% 30%, #fff4ff 0 48%, #ffffff 72%);
  border: 5px solid var(--wp--preset--color--neutral-900, #000);
  border-radius: 48px;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(45px, 4.7vw, 67px);
  line-height: 72px;
  letter-spacing: -0.02em;
  color: #000000;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18), 0 28px 45px rgba(0, 0, 0, 0.08);
}

.hw-ab-values__title::before {
  content: "";
  position: absolute;
  inset: -20px -32px;
  background: radial-gradient(closest-side, rgba(255, 86, 238, 0.18), rgba(255, 86, 238, 0));
  filter: blur(0.2px);
  pointer-events: none;
}

.hw-ab-values__title::after {
  content: "";
  position: absolute;
  right: -41px;
  width: 175px;
  bottom: 22px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18'%3E%3Cpath d='M3 9 Q15 2 27 9 T51 9 T75 9 T99 9 T123 9 T147 9 T171 9 T195 9' fill='none' stroke='%23ff56ee' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translateX(-50%);
  opacity: 0.98;
}

.hw-ab-trusted__logos .gs_logo_area {
  border: none;
  background: none;
}

.hw-ab-values__sub {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 22px;
  line-height: 28px;
}

.hw-ab-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.hw-ab-value {
  --ab-accent: var(--wp--preset--color--primary, #ff56ee);
  --ab-accent-bg: rgba(255, 86, 238, 0.2);
  background: var(--wp--preset--color--neutral-100, #fff);
  border: 1px dashed var(--ab-accent);
  overflow: hidden;
  position: relative;
}

.hw-ab-value.is-peach {
  --ab-accent: var(--wp--preset--color--orange, #ffa765);
  --ab-accent-bg: rgba(255, 167, 101, 0.2);
}

.hw-ab-value.is-lime {
  --ab-accent: var(--wp--preset--color--lime, #d7db4f);
  --ab-accent-bg: rgba(255, 241, 119, 0.2);
}

.hw-ab-value.is-periwinkle {
  --ab-accent: var(--wp--preset--color--secondary, #828df3);
  --ab-accent-bg: rgba(130, 141, 243, 0.2);
}

.hw-ab-value__head {
  padding: 16px 24px;
  background: var(--ab-accent-bg);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.9);
}

h3.hw-ab-value__name {
  margin-bottom: 0;
  font-family: var(--wp--preset--font-family--pixel, monospace);
  font-size: 45px;
  line-height: 52px;
  letter-spacing: 0;
  color: #000000;
}

.hw-ab-value__body {
  padding: 16px 32px 32px;
  display: grid;
  gap: 32px;
}

.hw-ab-value__row {
  display: grid;
  gap: 8px;
}

.hw-ab-value__kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hw-ab-value__label {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 24px;
  line-height: 32px;
}

.hw-ab-value__sq {
  width: 16px;
  height: 16px;
  border: 1px solid var(--ab-accent);
}

.hw-ab-value__chev {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--ab-accent);
}

.hw-ab-value__text {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/* Wiggle animation — plays once when the card scrolls into the centre */
@keyframes hw-wiggle {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-2.5deg);
  }
  30% {
    transform: rotate(2.5deg);
  }
  50% {
    transform: rotate(-2.5deg);
  }
  70% {
    transform: rotate(2.5deg);
  }
  85% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hw-ab-value.is-wiggling {
    animation: hw-wiggle 0.6s ease-in-out;
  }
}
@media (max-width: 900px) {
  .wp-block-group.hw-ab-values {
    padding-bottom: 96px;
  }
  .hw-ab-values__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  h3.hw-ab-value__name {
    font-size: 36px;
    line-height: 44px;
  }
  .hw-ab-values__inner {
    padding-inline: 0;
  }
  .entry-content .hw-ab-values.has-background, .entry-content .hw-ab-intro.has-background {
    padding: 20px 15px;
  }
}
.hw-ab-bcorp {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
}

/* Ambient glow — subtle colour wash behind the section */
.hw-ab-bcorp::before {
  content: "";
  position: absolute;
  inset: -80px -60px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  background: radial-gradient(ellipse 55% 60% at 28% 45%, rgba(255, 86, 238, 0.14), rgba(255, 86, 238, 0) 70%), radial-gradient(ellipse 50% 55% at 72% 40%, rgba(130, 141, 243, 0.12), rgba(130, 141, 243, 0) 65%), radial-gradient(ellipse 40% 50% at 60% 75%, rgba(255, 241, 119, 0.08), rgba(255, 241, 119, 0) 60%);
  filter: blur(0.2px);
}

.hw-ab-bcorp.is-bricks-visible::before {
  opacity: 1;
  transform: scale(1);
}

/* Bricks illustration — decorative SVG behind content */
.hw-ab-bricks {
  position: absolute;
  /* Anchor to the right edge of the centred content area, not the full-width section */
  right: calc((100% - var(--wp--style--global--content-size, 1520px)) / 2 + 40px);
  bottom: 20px;
  width: 359px;
  height: 351px;
  pointer-events: none;
  z-index: 0;
}

.hw-ab-bricks .hw-brick {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hw-ab-bricks .hw-brick--frame {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease-out 0.05s;
}

/* When the section scrolls into view, JS adds .is-bricks-visible */
.hw-ab-bcorp.is-bricks-visible .hw-brick {
  opacity: 0.2;
  transform: translateY(0);
}

.hw-ab-bcorp.is-bricks-visible .hw-brick--frame {
  opacity: 0.2;
}

/* Stagger: bottom row first, then up */
.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="1"] {
  transition-delay: 0s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="2"] {
  transition-delay: 0.18s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="3"] {
  transition-delay: 0.36s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="4"] {
  transition-delay: 0.48s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="5"] {
  transition-delay: 0.66s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="6"] {
  transition-delay: 0.84s;
}

.hw-ab-bcorp.is-bricks-visible .hw-brick[data-brick="7"] {
  transition-delay: 1s;
}

@media (prefers-reduced-motion: reduce) {
  .hw-ab-bcorp::before {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hw-ab-bricks .hw-brick,
  .hw-ab-bricks .hw-brick--frame {
    transition: none;
  }
  .hw-ab-bcorp .hw-brick {
    opacity: 0.2;
    transform: none;
  }
  .hw-ab-bcorp .hw-brick--frame {
    opacity: 0.2;
  }
}
@media (max-width: 900px) {
  .hw-ab-bricks {
    right: 10px;
    bottom: 10px;
    width: 260px;
    height: auto;
  }
}
@media (max-width: 640px) {
  .hw-ab-bricks {
    width: 200px;
    height: auto;
    right: 5px;
    bottom: 5px;
  }
}
.hw-ab-bcorp__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 569px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hw-ab-bcorp__panel {
  padding: 10px 96px 88px 80px;
  position: relative;
}

.hw-ab-bcorp__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hw-ab-bcorp__badge img {
  max-width: 150px;
}

.hw-ab-bcorp__badge-text {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hw-ab-bcorp__title {
  margin: 0 0 24px 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(45px, 4.7vw, 67px);
  line-height: 72px;
  letter-spacing: -0.02em;
}

.hw-ab-bcorp__title .h-header-pixel {
  color: #ff56ee;
}

.hw-ab-bcorp__copy {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 22px;
  line-height: 28px;
}

.hw-ab-bcorp__list {
  display: grid;
  gap: 40px;
}

.hw-ab-bcorp__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px;
}

.hw-ab-bcorp__icon {
  margin: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
}

.hw-ab-bcorp__item.is-peach .hw-ab-bcorp__icon {
  background: var(--wp--preset--color--orange, #ffa765);
}

.hw-ab-bcorp__item.is-lime .hw-ab-bcorp__icon {
  background: var(--wp--preset--color--lime, #d7db4f);
}

.hw-ab-bcorp__item.is-fuchsia .hw-ab-bcorp__icon {
  background: var(--wp--preset--color--primary, #ff56ee);
}

.hw-ab-bcorp__icon img {
  width: 100%;
  display: block;
}

.hw-ab-bcorp__item-title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 32px;
  line-height: 40px;
}

.hw-ab-bcorp__item-copy {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 900px) {
  .hw-ab-bcorp__inner {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
  .hw-ab-bcorp__panel {
    padding: 40px 24px 56px;
  }
  .hw-ab-bcorp__item {
    padding: 0;
  }
  .hw-ab-bcorp__list {
    padding: 0 16px;
  }
}
.hw-ab-trusted {
  background: var(--gray-background, #f3f3f3);
  color: var(--wp--preset--color--neutral-900, #000);
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 40px);
}

.hw-ab-trusted__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  place-items: center;
  text-align: center;
}

.hw-ab-trusted__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(45px, 4.7vw, 67px);
  line-height: 72px;
  letter-spacing: -0.02em;
  color: #000000;
}

.hw-ab-trusted__title .h-header-pixel {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-ab-trusted__copy {
  max-width: 72ch;
}

.hw-ab-trusted__logos {
  width: 100%;
  opacity: 0.5;
  margin-top: 56px;
}

@media (max-width: 640px) {
  .hw-ab-trusted {
    padding: 80px 0 48px;
  }
  .hw-ab-trusted__logos {
    margin-top: 32px;
  }
}
.hw-ab-testimonials {
  background: var(--wp--preset--color--neutral-100, #fff);
  color: var(--wp--preset--color--neutral-900, #000);
  border: 1px solid var(--wp--preset--color--neutral-900, #000);
  position: relative;
}

/* Old bg image replaced by injected logo-stack */
.hw-ab-testimonials::before {
  display: none;
}

.hw-ab-logo-stack--testimonials {
  position: absolute;
  right: 0;
  top: -120px;
  width: 253px;
  height: 253px;
  z-index: 2;
  pointer-events: none;
}

.hw-ab-testimonials__inner {
  position: relative;
  max-width: var(--wp--style--global--content-size, 1520px);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  padding-top: 96px;
  padding-bottom: 96px;
  place-items: center;
  text-align: center;
}

.hw-ab-testimonials__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(45px, 4.7vw, 67px);
  line-height: 72px;
  letter-spacing: -0.02em;
  color: #000000;
}

.hw-ab-testimonials__title .h-header-pixel {
  color: var(--wp--preset--color--primary, #ff56ee);
}

@media (max-width: 640px) {
  .hw-ab-testimonials__inner {
    padding: 96px 16px;
    gap: 32px;
  }
}
/* About testimonials carousel (cards) */
.hw-ab-testimonials .hw-testimonials-carousel.is-cards {
  --t-accent-1: #ffa765;
  --t-accent-2: #ff56ee;
  --t-accent-3: #d7db4f;
  --t-accent-4: #828df3;
  position: relative;
  /* Override WP is-layout-constrained and break out to full viewport */
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: 0 !important;
}

.hw-ab-testimonials .hw-testimonials-carousel.is-cards .hw-carousel__track {
  padding: 1rem 3rem;
  max-width: none;
  width: 100%;
}

.hw-ab-testimonials .hw-carousel__slide.hw-ab-testimonial {
  padding: 0 16px;
  margin-bottom: 2rem;
}

.hw-ab-testimonials .hw-carousel__slide.hw-ab-testimonial .hw-t-card-quote-wrap {
  background: #ffffff;
  border: 1px dotted #d8d8d8;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--t-accent-1);
  padding: 26px 24px 30px;
  position: relative;
  min-height: 380px;
  text-align: left;
}

.hw-ab-testimonials .hw-carousel__slide.hw-ab-testimonial:nth-child(2n) .hw-t-card-quote-wrap {
  box-shadow: 6px 6px 0 var(--t-accent-2);
}

.hw-ab-testimonials .hw-carousel__slide.hw-ab-testimonial:nth-child(3n) .hw-t-card-quote-wrap {
  box-shadow: 6px 6px 0 var(--t-accent-3);
}

.hw-ab-testimonials .hw-carousel__slide.hw-ab-testimonial:nth-child(4n) .hw-t-card-quote-wrap {
  box-shadow: 6px 6px 0 var(--t-accent-4);
}

.hw-ab-testimonials .hw-ab-testimonial .hw-t-card-quote {
  margin: 0 0 18px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 18px;
  line-height: 1.5;
}

.hw-ab-testimonials .hw-ab-testimonial .hw-t-card-cite {
  margin: 18px 0 0 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 15px;
  border-top: 1px solid var(--t-accent-1);
  padding-top: 1rem;
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(2n) .hw-t-card-cite {
  border-top: 1px solid var(--t-accent-2);
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(3n) .hw-t-card-cite {
  border-top: 1px solid var(--t-accent-3);
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(4n) .hw-t-card-cite {
  border-top: 1px solid var(--t-accent-4);
}

.hw-ab-testimonials .hw-t-card-quote-wrap::before {
  content: "“";
  width: 40px;
  height: 40px;
  border-radius: 999px;
  text-align: center;
  font-size: 40px;
  color: #000000;
  background: var(--t-accent-1);
  display: block;
  margin-bottom: 10px;
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(2n) .hw-t-card-quote-wrap::before {
  background: var(--t-accent-2);
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(3n) .hw-t-card-quote-wrap::before {
  background: var(--t-accent-3);
}

.hw-ab-testimonials .hw-ab-testimonial:nth-child(4n) .hw-t-card-quote-wrap::before {
  background: var(--t-accent-4);
}

/* Arrows */
.hw-ab-testimonials .hw-carousel__arrow {
  border-radius: 50%;
  border: 2px solid #000000;
  font-size: 22px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
}

.hw-ab-testimonials .hw-carousel__arrow--prev {
  left: 10px;
  background: #ffffff;
  color: #000000;
}

.hw-ab-testimonials .hw-carousel__arrow--next {
  right: 10px;
  background: var(--wp--preset--color--primary, #ff56ee);
  color: #000000;
}

.hw-ab-testimonials .hw-carousel__arrow:hover,
.hw-ab-testimonials .hw-carousel__arrow:focus-visible {
  filter: brightness(1.05);
}

/* Pager dots */
.hw-ab-testimonials .hw-carousel__pager {
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.hw-ab-testimonials .hw-pager-dot {
  width: 16px;
  height: 16px;
  border: 1px solid #000000;
  border-radius: 2px;
  background: rgba(255, 86, 238, 0.2);
}

.hw-ab-testimonials .hw-pager-dot.is-active {
  background: #ff56ee;
  border-color: #ff56ee;
}

@media (max-width: 900px) {
  .hw-ab-testimonials .hw-carousel__arrow--prev {
    left: 5px;
  }
  .hw-ab-testimonials .hw-carousel__arrow--next {
    right: 5px;
  }
  .hw-ab-testimonials .hw-testimonials-carousel.is-cards .hw-carousel__track {
    --hw-slide: 98%;
  }
  .hw-ab-join-card {
    width: 100%;
  }
  .hw-ab-logo-stack--testimonials {
    left: 18px;
    right: auto;
    top: -55px;
    width: 120px;
    height: 120px;
  }
  .hw-ab-testimonials .hw-testimonials-carousel.is-cards .hw-carousel__track {
    padding: 1rem;
  }
}
.hw-ab-join {
  background: var(--wp--preset--color--neutral-900, #000);
  color: var(--wp--preset--color--neutral-100, #fff);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  padding: 128px 0 96px;
}

.hw-ab-join__inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  display: grid;
  gap: 40px;
  place-items: center;
  text-align: center;
  position: relative;
}

.hw-ab-join__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(45px, 4.7vw, 67px);
  line-height: 72px;
  letter-spacing: -0.02em;
}

.hw-ab-join__title .h-header-pixel {
  color: var(--wp--preset--color--secondary, #828df3);
}

.hw-ab-join__copy {
  margin: 0;
  max-width: 860px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 24px;
  line-height: 32px;
}

.hw-ab-join__buttons .wp-block-button__link {
  border: 2px solid #000000;
  border-radius: 0;
  padding: 12px 18px;
  color: #000000;
}

.hw-ab-join__cards {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.hw-ab-join-card {
  border: 1px dashed rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-shadow: 8px 8px 0 0 var(--wp--preset--color--secondary, #828df3);
  text-align: center;
  min-width: 240px;
}

.hw-ab-join-card__kicker {
  margin: 0 0 16px 0;
  font-size: 36px;
  line-height: 44px;
}

.hw-ab-join-card__title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 28px;
  line-height: 36px;
}

@media (max-width: 640px) {
  .hw-ab-join {
    padding: 56px 0;
  }
  .hw-ab-join__inner {
    padding-inline: 16px;
  }
  .hw-ab-join__buttons {
    width: 100%;
  }
  .hw-ab-join__buttons .wp-block-button {
    flex: 1;
    width: 100%;
  }
  .hw-ab-join__buttons .wp-block-button__link {
    width: 100%;
  }
}
