@import url("/assets/poppins.css");

:root {
  --bw-black: #000;
  --bw-ink: #050705;
  --bw-surface: #090c09;
  --bw-surface-strong: #0e140d;
  --bw-line: rgba(255, 255, 255, 0.14);
  --bw-line-strong: rgba(175, 234, 0, 0.42);
  --bw-green: #afea00;
  --bw-green-hover: #caff28;
  --bw-white: #f7f8f5;
  --bw-muted: rgba(247, 248, 245, 0.68);
  --bw-muted-strong: rgba(247, 248, 245, 0.82);
  --bw-font: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bw-shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bw-black);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.bw-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bw-black);
  color: var(--bw-white);
  font-family: var(--bw-font);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.bw-page * {
  font-family: var(--bw-font);
  letter-spacing: 0;
}

body.bw-page img,
body.bw-page video,
body.bw-page iframe {
  display: block;
  max-width: 100%;
}

body.bw-page img {
  height: auto;
}

body.bw-page a {
  color: inherit;
  text-decoration: none;
}

body.bw-page button,
body.bw-page input {
  font: inherit;
}

body.bw-page button {
  cursor: pointer;
}

body.bw-page :focus-visible {
  outline: 3px solid var(--bw-green);
  outline-offset: 4px;
}

.bw-skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 2147483640;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--bw-green);
  color: #000 !important;
  font-size: 13px;
  font-weight: 800;
}

.bw-skip-link:focus {
  top: 18px;
}

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

.bw-section {
  padding-block: 92px;
}

.bw-section--compact {
  padding-block: 64px;
}

.bw-section--surface {
  border-block: 1px solid var(--bw-line);
  background: var(--bw-surface);
}

.bw-section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.bw-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.bw-section-heading h2,
.bw-section-title {
  margin: 0;
  color: var(--bw-white);
  font-size: 48px;
  font-weight: 750;
  line-height: 1.08;
  text-wrap: balance;
}

.bw-section-heading p,
.bw-section-description {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--bw-muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.bw-section-heading--center p {
  margin-inline: auto;
}

.bw-kicker {
  margin: 0 0 12px;
  color: var(--bw-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.bw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bw-button,
.bw-secondary-button {
  display: inline-flex;
  min-width: 166px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bw-button {
  border-color: var(--bw-green);
  background: var(--bw-green);
  color: #000 !important;
  box-shadow: 0 5px 0 #748f00;
}

.bw-button:hover,
.bw-button:focus-visible {
  border-color: var(--bw-green-hover);
  background: var(--bw-green-hover);
  color: #000 !important;
  box-shadow: 0 3px 0 #748f00;
  transform: translateY(2px);
}

.bw-secondary-button {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--bw-white) !important;
}

.bw-secondary-button:hover,
.bw-secondary-button:focus-visible {
  border-color: var(--bw-green);
  background: var(--bw-green);
  color: #000 !important;
  transform: translateY(-2px);
}

.bw-text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--bw-white) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 160ms ease;
}

.bw-text-link:hover,
.bw-text-link:focus-visible {
  color: var(--bw-green) !important;
}

/* Homepage */
.home-legacy-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 138px 24px 128px;
  text-align: center;
}

.home-legacy-hero::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 50%;
  width: min(680px, 86vw);
  height: 520px;
  background: rgba(105, 165, 20, 0.2);
  filter: blur(120px);
  transform: translateX(-50%);
  pointer-events: none;
}

.home-legacy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

.home-legacy-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.home-legacy-headline {
  margin: 0;
  color: var(--bw-white);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.06;
  text-align: center;
}

.home-legacy-headline__line {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.home-legacy-headline__line--platform {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
}

.home-platform-rotator {
  position: relative;
  display: inline-grid;
  width: 5.45em;
  flex: 0 0 5.45em;
  color: var(--bw-green);
  justify-items: center;
  text-align: center;
  vertical-align: baseline;
}

.home-platform-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  text-align: center;
  animation: bw-platform-word 9s infinite;
}

.home-platform-rotator span:nth-child(2) {
  animation-delay: 3s;
}

.home-platform-rotator span:nth-child(3) {
  animation-delay: 6s;
}

.home-legacy-description {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--bw-muted-strong);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.home-legacy-description--mobile {
  display: none;
}

.home-legacy-hero .bw-actions {
  justify-content: center;
  margin-top: 28px;
}

.home-legacy-reel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -128px;
  padding-bottom: 40px;
}

.home-legacy-reel::before,
.home-legacy-reel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 40px;
  width: min(160px, 14vw);
  pointer-events: none;
}

.home-legacy-reel::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.home-legacy-reel::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.home-legacy-reel__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 20px;
  padding-inline: 20px;
  animation: home-legacy-marquee 58s linear infinite;
  will-change: transform;
}

.home-legacy-reel:hover .home-legacy-reel__track {
  animation-play-state: paused;
}

@keyframes home-legacy-marquee {
  to { transform: translateX(calc(-50% + 10px)); }
}

.home-legacy-reel__card {
  position: relative;
  width: 205px;
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #0a0f09;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  isolation: isolate;
  contain: layout paint;
}

.home-legacy-reel__card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-run-section {
  text-align: center;
}

.home-run-section h2 {
  margin: 0;
  color: var(--bw-white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.home-run-section > p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--bw-muted);
}

.home-run-video {
  width: 300px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  margin: 38px auto 0;
  border: 1px solid var(--bw-green);
  border-radius: 24px;
  background: #10170f;
  box-shadow: 0 22px 56px rgba(175, 234, 0, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.home-run-video:hover,
.home-run-video:focus-within {
  box-shadow: 0 22px 64px rgba(175, 234, 0, 0.25);
  transform: translateY(-3px);
}

.home-run-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__media.case-card__media--contain img {
  object-fit: contain;
  padding: 20px;
}

.case-card__media.case-card__media--profile img {
  width: 136px;
  height: 136px;
  margin: auto;
  border: 2px solid var(--bw-line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.case-hero__image.case-hero__image--contain img {
  object-fit: contain;
  padding: 32px;
}

.case-hero__image--profile {
  display: grid;
  place-items: center;
  background: var(--bw-surface);
}

.case-hero__image.case-hero__image--profile img {
  width: 220px;
  height: 220px;
  border: 2px solid var(--bw-line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.service-hero__media.service-hero__media--contain img {
  object-fit: contain;
  padding: 24px;
}

.service-hero__media.service-hero__media--integrated {
  overflow: visible;
  border: 0;
  background: transparent;
}

.service-hero__media.service-hero__media--integrated img {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.48));
  transform: scale(1.08) translateY(1.5%);
  transform-origin: center;
}

.home-hero {
  min-height: 690px;
  display: grid;
  place-items: center;
  padding: 148px 24px 76px;
  text-align: center;
}

.home-hero__inner {
  width: min(100%, 920px);
  min-width: 0;
  margin-inline: auto;
}

.home-hero h1 {
  margin: 0;
  color: var(--bw-white);
  font-size: 64px;
  font-weight: 780;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.home-hero__line {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em;
  white-space: nowrap;
}

.home-hero__platform {
  display: inline-grid;
  min-width: 0;
  color: var(--bw-green);
  justify-items: center;
  text-align: center;
}

.home-hero__platform span {
  grid-area: 1 / 1;
  opacity: 0;
  text-align: center;
  animation: bw-platform-word 9s infinite;
}

.home-hero__platform span:nth-child(2) {
  animation-delay: 3s;
}

.home-hero__platform span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes bw-platform-word {
  0%, 28% { opacity: 1; transform: translateY(0); }
  33%, 95% { opacity: 0; transform: translateY(0.22em); }
  100% { opacity: 0; transform: translateY(0); }
}

.home-hero__description {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-hero .bw-actions {
  justify-content: center;
  margin-top: 32px;
}

.home-reel {
  overflow: hidden;
  border-block: 1px solid var(--bw-line);
  background: var(--bw-ink);
  padding-block: 28px;
}

.home-reel__track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: 24px;
  animation: bw-reel-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bw-reel-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 100vw)); }
}

.home-reel__card {
  width: 184px;
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: #090909;
}

.home-reel__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-strip h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 740;
  line-height: 1.12;
  text-wrap: balance;
}

.about-strip__copy p {
  margin: 0;
  color: var(--bw-muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-strip__copy .bw-text-link {
  margin-top: 24px;
}

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

.service-directory-heading {
  max-width: 840px;
}

.service-directory__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--bw-white);
  color: var(--bw-black);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.service-directory-heading h2 span {
  color: var(--bw-white);
  font-weight: inherit;
}

.service-directory__item {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 26px;
  background: var(--bw-white);
  color: var(--bw-black);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-directory__item:hover,
.service-directory__item:focus-within {
  border-color: var(--bw-green);
  transform: translateY(-4px);
}

.service-directory__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-directory__index {
  color: rgba(0, 0, 0, 0.52);
  font-size: 38px;
  font-weight: 450;
  line-height: 1;
}

.service-directory__mark {
  color: rgba(0, 0, 0, 0.24);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.service-directory__item h3 {
  margin: 48px 0 0;
  color: var(--bw-black);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.15;
}

.service-directory__description {
  margin: 14px 0 28px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 13px;
  line-height: 1.62;
}

.service-directory__item .bw-text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--bw-black) !important;
  font-size: 12px;
  text-decoration: none;
}

.service-directory__item .bw-text-link:hover,
.service-directory__item .bw-text-link:focus-visible {
  color: #507500 !important;
}

.service-directory__item .bw-text-link::after {
  display: none;
}

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

.case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.case-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.case-card:hover,
.case-card:focus-within {
  border-color: var(--bw-line-strong);
  transform: translateY(-4px);
}

.case-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.case-card:hover .case-card__media img {
  transform: scale(1.025);
}

.case-card__body {
  min-height: 300px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.case-card__label {
  margin: 0;
  color: var(--bw-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 720;
  line-height: 1.2;
  text-wrap: balance;
}

.case-card__metric {
  margin: 24px 0 0;
  color: var(--bw-white);
  font-size: 34px;
  font-weight: 780;
  line-height: 1;
}

.case-card__metric span {
  display: block;
  margin-top: 7px;
  color: var(--bw-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.case-card .bw-text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
}

.home #case-studies .case-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.home #case-studies .case-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  justify-content: flex-end;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #050805;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.home #case-studies .case-card:hover,
.home #case-studies .case-card:focus-within {
  border-color: rgba(175, 234, 0, 0.72);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), 0 0 32px rgba(175, 234, 0, 0.12);
}

.home #case-studies .case-card__link {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
}

.home #case-studies .case-card__link:focus-visible {
  outline: 3px solid var(--bw-green);
  outline-offset: 4px;
}

.home #case-studies .case-card__media {
  position: relative;
  z-index: 0;
  height: 430px;
  min-height: 0;
  aspect-ratio: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: #050805;
}

.home #case-studies .case-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 74%, rgba(2, 7, 3, 0.2) 100%);
  pointer-events: none;
}

.home #case-studies .case-card__media img,
.home #case-studies .case-card__media.case-card__media--contain img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.home #case-studies .case-card__media--wide,
.home #case-studies .case-card__media--square {
  background: #eef0f4;
}

.home #case-studies .case-card__media--portrait {
  background: #0b0f0d;
}

.home #case-studies .case-card__media--artwork img {
  transform: none;
}

.home #case-studies .case-card__body {
  position: relative;
  z-index: 1;
  min-height: 0;
  justify-content: center;
  padding: 40px 44px;
  background: linear-gradient(145deg, #070b07, #020502);
  text-shadow: none;
}

.home #case-studies .case-card__label {
  font-size: 12px;
}

.home #case-studies .case-card h3 {
  margin-top: 9px;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 760;
  line-height: 1.1;
}

.home #case-studies .case-card__category {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home #case-studies .case-card__metric {
  display: grid;
  width: min(100%, 390px);
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(175, 234, 0, 0.52);
  border-radius: 14px;
  background: rgba(2, 8, 4, 0.9);
  backdrop-filter: blur(12px);
}

.home #case-studies .case-card__metric strong {
  color: var(--bw-white);
  font-size: 30px;
  font-weight: 780;
  line-height: 1;
}

.home #case-studies .case-card__metric span {
  display: block;
  min-width: 0;
  margin-top: 0;
  color: var(--bw-green);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.35;
  text-transform: uppercase;
}

.home #case-studies .case-card__result {
  max-width: 540px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.5;
  text-wrap: pretty;
}

.home #case-studies .case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.home #case-studies .case-card__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 8, 4, 0.62);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home #case-studies .case-card__action {
  display: grid;
  width: min(100%, 250px);
  min-height: 52px;
  margin-top: 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  place-items: center;
  font-size: 13px;
  font-weight: 780;
  text-shadow: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.home #case-studies .case-card:hover .case-card__action,
.home #case-studies .case-card:focus-within .case-card__action {
  background: var(--bw-green);
}

.case-index-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.work-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-preview-card {
  position: relative;
  aspect-ratio: 520 / 912;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.work-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(175, 234, 0, 0.56);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 76%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.work-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--bw-line-strong);
  border-radius: 24px;
  background: #070b07;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.conversion-panel__media {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.conversion-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.conversion-panel__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.conversion-panel__caption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.conversion-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(42px, 4.2vw, 68px);
}

.conversion-panel__eyebrow {
  margin: 0 0 12px !important;
  color: var(--bw-green) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.conversion-panel__copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 750;
  line-height: 1.04;
  text-wrap: balance;
}

.conversion-panel__copy .conversion-panel__lead {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.62;
  text-wrap: pretty;
}

.conversion-panel__signals {
  margin: 30px 0 0;
  border-block: 1px solid var(--bw-line);
}

.conversion-panel__signals div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
}

.conversion-panel__signals div + div {
  border-top: 1px solid var(--bw-line);
}

.conversion-panel__signals dt,
.conversion-panel__signals dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.conversion-panel__signals dt {
  color: var(--bw-green);
  font-weight: 750;
}

.conversion-panel__signals dd {
  color: var(--bw-muted-strong);
}

.conversion-panel__copy .conversion-panel__solution {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--bw-white);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.6;
}

.conversion-panel__copy .bw-actions {
  margin-top: 30px;
}

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

.testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  padding: 28px;
  background: var(--bw-black);
}

.testimonial-card__person {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--bw-line-strong);
  border-radius: 50%;
  background: var(--bw-surface);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.3;
}

.testimonial-card__role {
  margin: 4px 0 0;
  color: var(--bw-green);
  font-size: 12px;
  line-height: 1.5;
}

.testimonial-card blockquote {
  margin: 24px 0 0;
  color: var(--bw-muted-strong);
  font-size: 15px;
  line-height: 1.8;
}

/* Editorial service page structure */
.service-story-hero {
  padding: 82px 0 0;
  text-align: center;
}

.service-story-hero .bw-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-story-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--bw-white);
  font-size: 64px;
  font-weight: 760;
  line-height: 1.04;
  text-wrap: balance;
}

.service-story-hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

.service-story-hero__audience {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--bw-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.service-story-hero .bw-actions {
  justify-content: center;
  margin-top: 30px;
}

.service-story-hero__media {
  width: min(100%, 1060px);
  aspect-ratio: 16 / 8.5;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px 8px 0 0;
  background: var(--bw-surface);
}

.service-story-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-story-quote {
  padding: 116px 0;
  text-align: center;
}

.service-story-quote article {
  max-width: 860px;
  margin-inline: auto;
}

.service-story-quote img {
  width: 68px;
  height: 68px;
  border: 1px solid var(--bw-line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.service-story-quote blockquote {
  margin: 28px 0 0;
  color: var(--bw-white);
  font-size: 30px;
  font-weight: 540;
  line-height: 1.48;
  text-wrap: balance;
}

.service-story-quote p {
  margin: 24px 0 0;
}

.service-story-quote strong,
.service-story-quote span {
  display: block;
}

.service-story-quote strong {
  color: var(--bw-white);
  font-size: 14px;
}

.service-story-quote span {
  margin-top: 4px;
  color: var(--bw-green);
  font-size: 12px;
}

.service-story-system {
  border-block: 1px solid var(--bw-line);
  background: var(--bw-surface);
}

.service-story-features {
  display: grid;
  gap: 72px;
  margin-top: 70px;
}

.service-story-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 72px;
  align-items: center;
}

.service-story-feature--reverse .service-story-feature__copy {
  order: 2;
}

.service-story-feature--reverse .service-story-feature__media {
  order: 1;
}

.service-story-feature__copy > span {
  color: var(--bw-green);
  font-size: 12px;
  font-weight: 800;
}

.service-story-feature__copy h3 {
  margin: 22px 0 0;
  color: var(--bw-white);
  font-size: 38px;
  font-weight: 720;
  line-height: 1.1;
  text-wrap: balance;
}

.service-story-feature__copy > p {
  margin: 18px 0 0;
  color: var(--bw-muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-story-feature__outcome {
  border-top: 1px solid var(--bw-line);
  padding-top: 20px;
}

.service-story-feature__outcome strong {
  display: block;
  margin-bottom: 6px;
  color: var(--bw-white);
  font-size: 14px;
}

.service-story-feature__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-black);
}

.service-story-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-story-final {
  margin-top: 74px;
  border: 1px solid var(--bw-line-strong);
  border-radius: 8px;
  padding: 56px;
  background: var(--bw-surface);
}

.service-story-final h2 {
  max-width: 720px;
  margin: 0;
  color: var(--bw-white);
  font-size: 42px;
  line-height: 1.1;
  text-wrap: balance;
}

.service-story-final > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--bw-muted);
  line-height: 1.7;
}

.service-story-final .bw-actions {
  margin-top: 28px;
}

.legacy-testimonial-section {
  width: min(calc(100% - 40px), 1024px);
  margin-inline: auto;
  padding-block: 64px;
}

.legacy-testimonial {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  border: 1px solid rgba(175, 234, 0, 0.28);
  border-radius: 24px;
  padding: 34px;
  background: #071008;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.legacy-testimonial > img {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(175, 234, 0, 0.42);
  border-radius: 50%;
  object-fit: cover;
}

.legacy-testimonial blockquote {
  margin: 0;
  color: var(--bw-white);
  font-size: 22px;
  font-weight: 540;
  line-height: 1.55;
}

.legacy-testimonial p {
  margin: 22px 0 0;
}

.legacy-testimonial strong,
.legacy-testimonial span {
  display: block;
}

.legacy-testimonial strong {
  color: var(--bw-white);
  font-size: 14px;
}

.legacy-testimonial span {
  margin-top: 4px;
  color: var(--bw-green);
  font-size: 12px;
}

.testimonial-card__source {
  margin: auto 0 0;
  padding-top: 26px;
  color: rgba(247, 248, 245, 0.4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: var(--bw-line-strong);
  transform: translateY(-4px);
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  min-height: 280px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  color: var(--bw-green);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.blog-card h3 {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  font-size: 21px;
  font-weight: 720;
  line-height: 1.3;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card__summary {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: var(--bw-muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card .bw-text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
}

.resource-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-block: 1px solid var(--bw-line);
  padding-block: 42px;
}

.resource-strip h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 730;
  line-height: 1.2;
  text-wrap: balance;
}

.resource-strip p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--bw-muted);
}

/* Portfolio */
.portfolio-main {
  padding: 56px 0 96px;
}

.portfolio-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--bw-muted) !important;
  font-size: 13px;
  font-weight: 500;
}

.portfolio-back:hover {
  color: var(--bw-green) !important;
}

.portfolio-hero {
  margin-bottom: 42px;
}

.portfolio-hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 760;
  line-height: 1.08;
}

.portfolio-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--bw-muted);
}

.portfolio-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--bw-line);
  margin-bottom: 36px;
}

.portfolio-tab {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--bw-line);
  padding: 10px 16px;
  background: var(--bw-black);
  color: var(--bw-muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.portfolio-tab:last-child {
  border-right: 0;
}

.portfolio-tab[aria-selected="true"] {
  background: var(--bw-green);
  color: #000;
}

.portfolio-panel[hidden] {
  display: none;
}

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

.portfolio-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-surface);
}

.portfolio-card--short {
  aspect-ratio: 9 / 16;
}

.portfolio-card--long {
  aspect-ratio: 16 / 9;
}

.portfolio-card--design {
  aspect-ratio: 1;
}

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

.portfolio-video {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: #090909;
  color: #000;
}

.portfolio-video img,
.portfolio-card iframe,
.portfolio-card--design img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-card--short .portfolio-video img,
.portfolio-card--short iframe {
  aspect-ratio: 9 / 16;
}

.portfolio-card--long .portfolio-video img,
.portfolio-card--long iframe {
  aspect-ratio: 16 / 9;
}

.portfolio-card--design img {
  aspect-ratio: 1;
}

.portfolio-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bw-green);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.portfolio-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #000;
  transform: translateX(2px);
}

.portfolio-video:hover .portfolio-play {
  background: var(--bw-green-hover);
  transform: translate(-50%, -50%) scale(1.06);
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Service pages */
.service-hero {
  padding: 72px 0 92px;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.service-hero h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 770;
  line-height: 1.06;
  text-wrap: balance;
}

.service-hero__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.service-hero__audience {
  margin: 18px 0 0;
  color: var(--bw-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

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

.service-hero__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-surface);
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--bw-line);
  border-left: 1px solid var(--bw-line);
}

.service-proof-bar__item {
  min-height: 150px;
  border-right: 1px solid var(--bw-line);
  border-bottom: 1px solid var(--bw-line);
  padding: 24px;
}

.service-proof-bar__item strong {
  display: block;
  color: var(--bw-green);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.15;
}

.service-proof-bar__item span {
  display: block;
  margin-top: 10px;
  color: var(--bw-muted);
  font-size: 13px;
  line-height: 1.6;
}

.service-outcomes,
.service-deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--bw-line);
  border-left: 1px solid var(--bw-line);
}

.service-outcome,
.service-deliverable {
  min-height: 230px;
  border-right: 1px solid var(--bw-line);
  border-bottom: 1px solid var(--bw-line);
  padding: 28px;
}

.service-outcome__number,
.service-deliverable__number {
  color: var(--bw-green);
  font-size: 12px;
  font-weight: 800;
}

.service-outcome h3,
.service-deliverable h3 {
  margin: 30px 0 0;
  font-size: 22px;
  font-weight: 720;
  line-height: 1.25;
}

.service-outcome p,
.service-deliverable p {
  margin: 12px 0 0;
  color: var(--bw-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.service-process__intro {
  position: sticky;
  top: 110px;
}

.service-process__intro h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 740;
  line-height: 1.1;
}

.service-process__intro p {
  margin: 16px 0 0;
  color: var(--bw-muted);
}

.service-process__steps {
  border-top: 1px solid var(--bw-line);
}

.service-process__step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--bw-line);
  padding-block: 28px;
}

.service-process__step strong {
  color: var(--bw-green);
  font-size: 13px;
}

.service-process__step h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}

.service-process__step p {
  margin: 8px 0 0;
  color: var(--bw-muted);
  font-size: 14px;
}

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

.service-fit__column {
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  padding: 30px;
  background: var(--bw-surface);
}

.service-fit__column h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 720;
}

.service-fit__column ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-fit__column li {
  position: relative;
  padding-left: 22px;
  color: var(--bw-muted-strong);
  font-size: 14px;
  line-height: 1.65;
}

.service-fit__column li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bw-green);
}

/* Case study pages */
.case-index-hero {
  padding: 76px 0 84px;
  border-bottom: 1px solid var(--bw-line);
}

.case-index-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 64px;
  font-weight: 770;
  line-height: 1.04;
  text-wrap: balance;
}

.case-index-hero > .bw-shell > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.case-grid--index .case-card__body {
  min-height: 320px;
}

.case-hero {
  padding: 70px 0 62px;
}

.bw-back-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--bw-muted-strong) !important;
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.bw-back-link:hover {
  color: var(--bw-green) !important;
}

.case-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 20px;
  color: var(--bw-green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: 64px;
  font-weight: 770;
  line-height: 1.04;
  text-wrap: balance;
}

.case-hero__summary {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.case-hero__image {
  width: min(calc(100% - 48px), 1280px);
  aspect-ratio: 16 / 8.7;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
}

.case-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--bw-line);
  border-left: 1px solid var(--bw-line);
}

.case-result {
  min-height: 160px;
  border-right: 1px solid var(--bw-line);
  border-bottom: 1px solid var(--bw-line);
  padding: 26px;
}

.case-result strong {
  display: block;
  color: var(--bw-green);
  font-size: 36px;
  font-weight: 780;
  line-height: 1;
}

.case-result span {
  display: block;
  margin-top: 10px;
  color: var(--bw-muted);
  font-size: 13px;
  line-height: 1.55;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 72px;
}

.case-story h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 730;
  line-height: 1.15;
}

.case-story__body {
  color: var(--bw-muted-strong);
  font-size: 16px;
  line-height: 1.8;
}

.case-story__body p {
  margin: 0 0 22px;
}

.case-proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-proof-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--bw-line);
  border-radius: 8px;
  background: var(--bw-surface);
}

.case-proof-gallery img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: contain;
}

.case-proof-gallery figcaption {
  padding: 14px 16px;
  color: var(--bw-muted);
  font-size: 12px;
  line-height: 1.5;
}

.case-testimonial {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  max-width: 900px;
  border: 1px solid var(--bw-line-strong);
  border-radius: 8px;
  padding: 30px;
  background: var(--bw-surface-strong);
}

.case-testimonial > img {
  width: 96px;
  height: 96px;
  border: 1px solid var(--bw-line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.case-testimonial blockquote {
  margin: 0;
  color: var(--bw-white);
  font-size: 22px;
  font-weight: 560;
  line-height: 1.55;
}

.case-testimonial p {
  margin: 22px 0 0;
}

.case-testimonial strong,
.case-testimonial span {
  display: block;
}

.case-testimonial strong {
  color: var(--bw-white);
  font-size: 14px;
}

.case-testimonial span {
  margin-top: 3px;
  color: var(--bw-green);
  font-size: 12px;
}

/* Blog listing and articles */
.blog-index-hero {
  padding: 66px 0 72px;
  text-align: center;
}

.blog-index-hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 770;
  line-height: 1.06;
}

.blog-index-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--bw-muted);
}

body.bw-page.article-page {
  background: #fff;
  color: #111;
}

body.bw-page.article-page main {
  background: #fff;
  color: #111;
}

body.bw-page.article-page .bw-site-header {
  background: #000 !important;
}

.article-header {
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
  padding: 76px 0 46px;
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
  color: #4d5b42;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0;
  color: #0b0b0b;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.06;
  text-wrap: balance;
}

.article-header__dek {
  margin: 22px 0 0;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.7;
}

.article-hero {
  width: min(calc(100% - 48px), 1120px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  padding-bottom: 84px;
  color: #222;
  font-size: 17px;
  line-height: 1.85;
}

.article-content h2 {
  margin: 54px 0 18px;
  color: #0b0b0b;
  font-size: 34px;
  font-weight: 680;
  line-height: 1.18;
  text-wrap: balance;
}

.article-content h3 {
  margin: 34px 0 12px;
  color: #0b0b0b;
  font-size: 23px;
  font-weight: 670;
  line-height: 1.28;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 24px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-content a {
  border-bottom: 1px solid #0b0b0b;
  color: #0b0b0b;
  font-weight: 600;
}

.article-content strong {
  color: #0b0b0b;
  font-weight: 650;
}

.article-cta {
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto 92px;
  border: 1px solid #233314;
  border-radius: 8px;
  padding: 42px;
  background: #050705;
  color: var(--bw-white);
}

.article-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: 38px;
  font-weight: 720;
  line-height: 1.15;
}

.article-cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--bw-muted);
}

.article-cta .bw-actions {
  margin-top: 26px;
}

/* Free resources */
.resource-hero {
  padding: 72px 0 88px;
}

.resource-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.resource-hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 770;
  line-height: 1.05;
  text-wrap: balance;
}

.resource-hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--bw-muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.resource-includes {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.resource-includes li {
  border-bottom: 1px solid var(--bw-line);
  padding: 0 0 14px;
  color: var(--bw-muted-strong);
}

.resource-form {
  border: 1px solid var(--bw-line-strong);
  border-radius: 8px;
  padding: 30px;
  background: var(--bw-surface);
}

.resource-form h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 730;
  line-height: 1.2;
}

.resource-form p {
  margin: 10px 0 0;
  color: var(--bw-muted);
  font-size: 14px;
}

.resource-form form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.resource-form label {
  display: grid;
  gap: 8px;
  color: var(--bw-white);
  font-size: 13px;
  font-weight: 650;
}

.resource-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--bw-line);
  border-radius: 4px;
  padding: 0 14px;
  background: #000;
  color: var(--bw-white);
}

.resource-form input:focus {
  border-color: var(--bw-green);
}

.resource-form .bw-button {
  width: 100%;
}

.resource-form__status {
  min-height: 24px;
  margin: 2px 0 0 !important;
  color: var(--bw-muted-strong) !important;
  font-size: 12px !important;
}

.resource-form__privacy {
  margin-top: 16px !important;
  color: rgba(247, 248, 245, 0.46) !important;
  font-size: 11px !important;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .case-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-preview-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero__grid,
  .resource-hero__grid {
    grid-template-columns: 1fr;
  }

  .service-story-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-story-feature--reverse .service-story-feature__copy,
  .service-story-feature--reverse .service-story-feature__media {
    order: initial;
  }

  .service-hero__media {
    max-width: 760px;
  }

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

  .service-outcomes,
  .service-deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-hero h1 {
    font-size: 54px;
  }

  .case-index-hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 760px) {
  .bw-shell {
    width: min(calc(100% - 32px), var(--bw-shell));
  }

  .bw-section {
    padding-block: 68px;
  }

  .bw-section--compact {
    padding-block: 50px;
  }

  .bw-section-heading {
    margin-bottom: 30px;
  }

  .bw-section-heading h2,
  .bw-section-title {
    font-size: 36px;
  }

  .bw-section-heading p,
  .bw-section-description {
    font-size: 15px;
  }

  .home-hero {
    min-height: 630px;
    padding: 128px 16px 64px;
  }

  .home-hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .home-hero__line {
    gap: 0.16em;
  }

  .home-hero__line:first-child {
    font-size: 0.92em;
  }

  .home-hero__description {
    max-width: 340px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-legacy-hero {
    min-height: 650px;
    padding: 126px 16px 118px;
  }

  .home-legacy-headline {
    font-size: 34px;
    line-height: 1.1;
  }

  .home-legacy-headline__line {
    white-space: nowrap;
  }

  .home-legacy-headline__line--platform {
    gap: 0.12em;
  }

  .home-legacy-description {
    max-width: 350px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-legacy-description--desktop {
    display: none;
  }

  .home-legacy-description--mobile {
    display: block;
  }

  .home-legacy-hero .bw-actions {
    width: auto;
    margin-top: 26px;
  }

  .home-legacy-reel {
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: -104px;
    padding-bottom: 28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-legacy-reel::-webkit-scrollbar {
    display: none;
  }

  .home-legacy-reel::before,
  .home-legacy-reel::after {
    display: none;
  }

  .home-legacy-reel__track {
    gap: 14px;
    padding-inline: 16px;
    animation: none;
    transform: none !important;
    will-change: auto;
  }

  .home-legacy-reel__card {
    width: min(72vw, 260px);
    height: auto;
    aspect-ratio: 9 / 16;
    scroll-snap-align: center;
  }

  .home-legacy-reel__card[aria-hidden="true"] {
    display: none;
  }

  .home-run-section h2 {
    font-size: 42px;
  }

  .home-run-video {
    width: min(300px, 88vw);
  }

  .home-hero .bw-actions,
  .conversion-panel .bw-actions {
    width: 100%;
  }

  .home-hero .bw-button,
  .home-hero .bw-secondary-button,
  .conversion-panel .bw-button,
  .conversion-panel .bw-secondary-button {
    min-width: 0;
    flex: 1 1 150px;
  }

  .home-reel__card {
    width: 154px;
  }

  .about-strip,
  .conversion-panel,
  .service-process,
  .case-story {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .conversion-panel__media,
  .conversion-panel__copy {
    min-width: 0;
  }

  .about-strip h2 {
    font-size: 34px;
  }

  .service-directory {
    grid-template-columns: 1fr;
  }

  .service-directory__item {
    min-height: 290px;
    padding: 26px;
  }

  .case-grid,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home #case-studies .case-card {
    border-radius: 20px;
  }

  .home #case-studies .case-card__link {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .home #case-studies .case-card__media {
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home #case-studies .case-card__media::after {
    background: linear-gradient(180deg, transparent 82%, rgba(2, 7, 3, 0.18));
  }

  .home #case-studies .case-card__body {
    padding: 28px 24px;
  }

  .home #case-studies .case-card h3 {
    font-size: 32px;
  }

  .home #case-studies .case-card__metric,
  .home #case-studies .case-card__action {
    width: 100%;
  }

  .conversion-panel__media {
    height: auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .conversion-panel__media img {
    position: absolute;
    inset: 0;
    object-position: center 58%;
  }

  .conversion-panel__copy {
    padding: 32px 24px;
  }

  .conversion-panel__copy h2 {
    font-size: 34px;
  }

  .conversion-panel__caption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .conversion-panel__copy .conversion-panel__lead {
    font-size: 16px;
  }

  .conversion-panel__signals div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .conversion-panel .bw-actions {
    flex-direction: column;
  }

  .conversion-panel .bw-button,
  .conversion-panel .bw-secondary-button {
    width: 100%;
    flex-basis: auto;
  }

  .resource-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resource-strip h2 {
    font-size: 28px;
  }

  .portfolio-main {
    padding-top: 38px;
  }

  .portfolio-hero h1 {
    font-size: 42px;
  }

  .portfolio-tabs {
    grid-template-columns: 1fr;
  }

  .portfolio-tab {
    border-right: 0;
    border-bottom: 1px solid var(--bw-line);
  }

  .portfolio-tab:last-child {
    border-bottom: 0;
  }

  .portfolio-grid {
    gap: 12px;
  }

  .service-hero {
    padding: 52px 0 68px;
  }

  .service-story-hero {
    padding-top: 54px;
  }

  .service-story-hero h1 {
    font-size: 42px;
  }

  .service-story-hero__lead {
    font-size: 16px;
  }

  .service-story-hero__media {
    aspect-ratio: 4 / 3;
    margin-top: 48px;
  }

  .service-story-quote {
    padding: 74px 0;
  }

  .service-story-quote blockquote {
    font-size: 23px;
  }

  .service-story-features {
    gap: 56px;
    margin-top: 48px;
  }

  .service-story-feature__copy h3 {
    font-size: 32px;
  }

  .service-story-feature__media {
    aspect-ratio: 4 / 3;
  }

  .service-story-final {
    margin-top: 54px;
    padding: 30px 24px;
  }

  .service-story-final h2 {
    font-size: 32px;
  }

  .legacy-testimonial {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .legacy-testimonial blockquote {
    font-size: 18px;
  }

  .service-hero h1,
  .resource-hero h1 {
    font-size: 42px;
  }

  .service-hero__lead,
  .resource-hero__lead {
    font-size: 16px;
  }

  .service-proof-bar,
  .service-outcomes,
  .service-deliverables,
  .case-results {
    grid-template-columns: 1fr;
  }

  .service-process__intro {
    position: static;
  }

  .service-fit {
    grid-template-columns: 1fr;
  }

  .case-hero {
    padding-top: 46px;
  }

  .case-index-hero {
    padding: 52px 0 60px;
  }

  .case-index-hero h1 {
    font-size: 42px;
  }

  .case-index-hero > .bw-shell > p:last-child {
    font-size: 16px;
  }

  .case-hero h1 {
    font-size: 42px;
  }

  .case-hero__image {
    width: calc(100% - 32px);
    aspect-ratio: 16 / 10;
  }

  .case-proof-gallery {
    grid-template-columns: 1fr;
  }

  .case-testimonial {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .case-testimonial blockquote {
    font-size: 19px;
  }

  .article-header {
    width: calc(100% - 32px);
    padding: 52px 0 34px;
  }

  .article-header h1 {
    font-size: 40px;
  }

  .article-header__dek {
    font-size: 16px;
  }

  .article-hero {
    width: calc(100% - 32px);
    margin-bottom: 42px;
  }

  .article-content {
    width: calc(100% - 32px);
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 29px;
  }

  .article-cta {
    width: calc(100% - 32px);
    margin-bottom: 68px;
    padding: 30px 24px;
  }

  .article-cta h2 {
    font-size: 30px;
  }

  .resource-hero {
    padding-top: 52px;
  }
}

@media (max-width: 460px) {
  .home-hero h1 {
    font-size: clamp(22px, 6.9vw, 27px);
  }

  .home-hero__line {
    white-space: normal;
  }

  .home-hero__line:first-child {
    white-space: nowrap;
  }

  .home-legacy-headline {
    font-size: clamp(24px, 6.4vw, 26px);
  }

  .home-legacy-headline__line--platform {
    font-size: 0.98em;
  }

  .home-platform-rotator {
    width: 5.35em;
    flex-basis: 5.35em;
  }

  .work-preview-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .work-preview-card,
  .portfolio-card--short {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .service-process__step {
    grid-template-columns: 48px 1fr;
  }
}

.legacy-case-page img.h-full,
.legacy-case-page video.h-full {
  height: 100%;
}

.legacy-case-index [hidden] {
  display: none !important;
}

.legacy-case-index button[aria-pressed="true"] {
  border-color: #afea00 !important;
  background: #afea00 !important;
  color: #000 !important;
}

.legacy-case-index button[aria-pressed="false"] {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.legacy-case-index > section.mx-auto.grid.max-w-7xl {
  align-items: stretch;
  column-gap: 28px !important;
  row-gap: 30px !important;
}

.legacy-case-index a[href*="-case-study"] {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  min-height: 620px !important;
  aspect-ratio: auto;
  box-sizing: border-box;
  justify-content: flex-end;
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 28px !important;
  background: #050805 !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.legacy-case-index a[href*="-case-study"]:hover {
  transform: translateY(-4px);
  border-color: rgba(175, 234, 0, 0.72) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), 0 0 32px rgba(175, 234, 0, 0.12) !important;
}

.legacy-case-index a[href*="-case-study"]:focus-visible {
  outline: 3px solid #afea00;
  outline-offset: 4px;
}

.legacy-case-index a[href*="-case-study"] > .absolute.inset-x-0.top-0.h-1 {
  display: none;
}

.legacy-case-index .legacy-case-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #050805;
}

.legacy-case-index .legacy-case-thumbnail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(1, 4, 2, 0.02) 18%,
    rgba(1, 4, 2, 0.24) 38%,
    rgba(2, 7, 3, 0.9) 58%,
    rgba(2, 7, 3, 0.99) 78%,
    #020603 100%
  );
}

.legacy-case-index .legacy-case-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 300ms ease;
}

.legacy-case-index a[href*="-case-study"]:hover .legacy-case-thumbnail img {
  transform: scale(1.025);
}

.legacy-case-index .legacy-case-thumbnail--wide img {
  object-position: center top;
}

.legacy-case-index a[href*="-case-study"] > .flex.items-start.justify-between.gap-4 {
  position: static;
  z-index: 1;
  order: 1;
  align-items: flex-end;
}

.legacy-case-index a[href*="-case-study"] > .flex.items-start.justify-between.gap-4 > div {
  min-width: 0;
}

.legacy-case-index a[href*="-case-study"] h2 {
  display: -webkit-box;
  margin-top: 9px !important;
  overflow: hidden;
  font-size: clamp(1.8rem, 2.1vw, 2.15rem) !important;
  font-weight: 760 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.legacy-case-index a[href*="-case-study"] h2 + p {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  letter-spacing: 0.06em;
}

.legacy-case-index a[href*="-case-study"] > .flex.items-start.justify-between.gap-4 > span {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(3, 8, 4, 0.62) !important;
  color: #fff !important;
  font-size: 0 !important;
  backdrop-filter: blur(12px);
}

.legacy-case-index a[href*="-case-study"] > .flex.items-start.justify-between.gap-4 > span::before {
  content: "\2197";
  font-size: 20px;
  line-height: 1;
}

.legacy-case-index a[href*="-case-study"] > .mt-5.flex.flex-wrap.gap-2 {
  position: relative;
  z-index: 1;
  order: 3;
  margin-top: 14px !important;
}

.legacy-case-index a[href*="-case-study"] > .mt-5.flex.flex-wrap.gap-2 span {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(3, 8, 4, 0.62);
  color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
}

.legacy-case-index a[href*="-case-study"] > .mt-8.rounded-2xl {
  position: relative;
  z-index: 1;
  order: 2;
  display: grid;
  width: 100%;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 14px !important;
  padding: 10px 14px !important;
  border-color: rgba(175, 234, 0, 0.52) !important;
  border-radius: 14px !important;
  background: rgba(2, 8, 4, 0.9) !important;
  color: #fff !important;
  backdrop-filter: blur(12px);
}

.legacy-case-index a[href*="-case-study"] > .mt-8.rounded-2xl > p:first-child {
  font-size: 1.6rem !important;
}

.legacy-case-index a[href*="-case-study"] > .mt-8.rounded-2xl > p:last-child {
  margin-top: 0 !important;
  color: #afea00;
}

.legacy-case-index a[href*="-case-study"] > .mt-auto.grid.gap-5.pt-8 {
  position: relative;
  z-index: 1;
  order: 4;
  display: block;
  margin-top: 14px !important;
  padding-top: 0 !important;
}

.legacy-case-index a[href*="-case-study"] > .mt-auto.grid.gap-5.pt-8 > div:first-child,
.legacy-case-index a[href*="-case-study"] > .mt-auto.grid.gap-5.pt-8 > div:last-child > p:first-child {
  display: none;
}

.legacy-case-index a[href*="-case-study"] > .mt-auto.grid.gap-5.pt-8 > div:last-child > p:last-child {
  display: -webkit-box;
  margin-top: 0 !important;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.55 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.legacy-case-index a[href*="-case-study"]::after {
  position: relative;
  z-index: 1;
  order: 5;
  display: grid;
  min-height: 52px;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  content: "View case study  \2192";
  place-items: center;
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.legacy-case-index a[href*="-case-study"]:hover::after,
.legacy-case-index a[href*="-case-study"]:focus-visible::after {
  background: #afea00;
}

@media (max-width: 700px) {
  .legacy-case-index a[href*="-case-study"] {
    width: min(100%, 390px);
    min-height: 610px !important;
    margin-inline: auto;
    padding: 22px !important;
  }

  .legacy-case-index a[href*="-case-study"] h2 {
    font-size: 1.75rem !important;
  }

}

/* Homepage conversion panel */
.home-conversion-section .conversion-panel--homepage {
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
  min-height: 440px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #070a07;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__media {
  z-index: 0;
  width: calc(100% + clamp(58px, 6vw, 90px));
  min-height: 440px;
  border-right: 0;
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__media img {
  height: 100%;
  object-position: center 68%;
  transform: scale(1.01);
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__media::after {
  background: linear-gradient(90deg, rgba(7, 10, 7, 0) 52%, rgba(7, 10, 7, 0.46) 74%, #070a07 100%);
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__copy {
  position: relative;
  z-index: 1;
  justify-content: center;
  padding: 44px clamp(38px, 3.5vw, 52px) 44px clamp(52px, 4.2vw, 68px);
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__copy h2 {
  max-width: 520px;
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1.02;
}

.home-conversion-section .conversion-panel--homepage .conversion-panel__lead {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(247, 248, 245, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.home-conversion-section .conversion-panel--homepage .bw-actions {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .home-conversion-section .conversion-panel--homepage {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 0;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__media::after {
    background: linear-gradient(180deg, rgba(7, 10, 7, 0) 54%, rgba(7, 10, 7, 0.48) 76%, #070a07 100%);
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__copy {
    margin-top: -56px;
    padding: 74px 44px 40px;
  }
}

@media (max-width: 620px) {
  .home-conversion-section .conversion-panel--homepage {
    min-height: 0;
    border-radius: 16px;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__media {
    aspect-ratio: 4 / 3;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__media img {
    object-position: center 68%;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__copy {
    margin-top: -48px;
    padding: 68px 22px 28px;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__copy h2 {
    font-size: 36px;
  }

  .home-conversion-section .conversion-panel--homepage .conversion-panel__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.62;
  }

  .home-conversion-section .conversion-panel--homepage .bw-actions {
    gap: 10px;
    margin-top: 24px;
  }
}

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

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

  .home-hero__platform span:first-child {
    opacity: 1;
  }

  .home-platform-rotator span:first-child {
    opacity: 1;
  }

  .home-reel__track,
  .home-legacy-reel__track {
    transform: none;
  }
}
