﻿@font-face {
  font-family: "Aspekta";
  src: url("./assets/fonts/AspektaVF.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
}

@font-face {
  font-family: "Addington CF";
  src: url("./assets/fonts/AddingtonCF-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: block;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("./assets/fonts/IBMPlexSans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("./assets/fonts/IBMPlexSans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("./assets/fonts/IBMPlexSans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: block;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("./assets/fonts/IBMPlexSans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: block;
}

:root {
  --bg: #eef3ee;
  --bg-strong: #0f2a1b;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #102419;
  --text-soft: rgba(16, 36, 25, 0.72);
  --text-inverse: #eef3ee;
  --line: rgba(16, 36, 25, 0.12);
  --accent: #57d67b;
  --accent-deep: #165a30;
  --metric-accent-red: #d92525;
  --pricing-primary-accent: #e94734;
  --shadow: 0 24px 70px rgba(16, 36, 25, 0.12);
  --page-gutter: clamp(20px, 4vw, 48px);
  --section-gap: clamp(72px, 10vw, 132px);
  --radius-lg: 34px;
  --radius-md: 24px;
  --editorial-edge-space: clamp(18px, 2vw, 28px);
  --editorial-left-rail: clamp(6px, 1.1vw, 14px);
  --editorial-left-rail-tablet: clamp(8px, 1.4vw, 12px);
  --editorial-shell-width: 1280px;
  --editorial-contact-shell-width: 1140px;
  --header-first-section-gap: 0.5cm;
  --nav-section-scroll-offset: 0.5cm;
  --support-card-lift-11mm-px: calc(1.1 * 37.7953px);
  --results-card-lift-05cm: calc(0.5 * 37.7953px);
  --greenscale-shell-width: 1320px;
  --font-ibm-plex-requested: "IBM Plex Sans";
  --dark-editorial-panel-bg:
    repeating-radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, #2b2b2b 0%, #111 42%, #050505 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f2f2f2;
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  min-height: 100vh;
}

html.has-page-transition body.is-page-leaving {
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

body.inspector-on [data-inspected="true"] {
  outline: 2px dashed rgba(87, 214, 123, 0.95);
  outline-offset: 8px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  padding-top: 112px;
}

.site-header {
  position: fixed;
  inset: 18px var(--page-gutter) auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(13, 31, 20, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 45px rgba(9, 19, 13, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-inverse);
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 550;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #caffd6 100%);
  box-shadow: 0 0 0 6px rgba(87, 214, 123, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
}

.site-nav__link {
  color: rgba(238, 243, 238, 0.82);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-nav__link[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #caffd6 100%);
  color: #082011;
}

.button--ghost {
  border-color: rgba(16, 36, 25, 0.16);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.site-header .button--ghost,
.site-header .button--primary {
  min-height: 46px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 32px);
  margin-top: -112px;
  overflow: clip;
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(7, 21, 13, 0.88) 0%, rgba(7, 21, 13, 0.52) 42%, rgba(7, 21, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 21, 13, 0.2) 0%, rgba(7, 21, 13, 0.64) 100%);
}

.hero__content,
.page-hero__copy,
.section,
.site-footer {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: calc(100svh - 32px);
  max-width: min(760px, calc(100vw - (var(--page-gutter) * 2)));
  padding-top: 180px;
  padding-bottom: 78px;
  color: var(--text-inverse);
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__title,
.page-hero__title,
.section__title,
.module__title,
.principle h2,
.signal-grid__item h3 {
  margin: 0;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero__title {
  max-width: 12ch;
  font-size: clamp(58px, 9vw, 116px);
}

.hero__lede,
.page-hero__lede,
.feature-split__text,
.marker-list__copy,
.section__text,
.story-grid__text,
.module__text,
.module__points,
.signal-grid__item p,
.process-list__item p,
.contact-panel__block p,
.faq-list__item p,
.site-footer__text,
.site-footer__legal {
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.hero__lede {
  max-width: 36rem;
  margin: 20px 0 0;
  color: rgba(238, 243, 238, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.hero__notes li {
  color: rgba(238, 243, 238, 0.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-hero {
  padding: 40px 0 0;
}

.page-hero__copy {
  max-width: 900px;
}

.page-hero__title {
  max-width: 12ch;
  font-size: clamp(44px, 7vw, 88px);
}

.page-hero__lede {
  max-width: 42rem;
  margin: 18px 0 0;
}

.section {
  padding-top: var(--section-gap);
}

.section__intro {
  max-width: 980px;
}

.section__intro--narrow {
  max-width: 760px;
}

.section__title {
  font-size: clamp(34px, 5vw, 66px);
  color: var(--text);
}

.feature-split,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: 40px;
}

.feature-split__copy,
.story-grid__copy {
  min-width: 0;
}

.feature-split__media,
.story-grid__media,
.offset-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(16, 36, 25, 0.06);
  box-shadow: var(--shadow);
}

.feature-split__media img,
.story-grid__media img,
.offset-media img {
  height: 100%;
  object-fit: cover;
}

.feature-split__media {
  min-height: clamp(340px, 38vw, 520px);
  padding: 2vw;
  background:
    radial-gradient(circle at top, rgba(87, 214, 123, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.9);
}

.feature-split__media img {
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(16, 36, 25, 0.18));
}

.marker-list,
.module-list,
.process-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.marker-list {
  margin-top: 28px;
}

.marker-list__item,
.module,
.process-list__item,
.faq-list__item,
.contact-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.marker-list__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
}

.marker-list__label,
.module__index,
.signal-grid__index,
.process-list__step,
.contact-panel__label {
  margin: 0;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marker-list__copy {
  margin: 0;
}

.section--dark {
  margin-top: var(--section-gap);
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at top right, rgba(87, 214, 123, 0.14), transparent 26%),
    linear-gradient(180deg, #0f2a1b 0%, #0b2015 100%);
  color: var(--text-inverse);
}

.section--dark .section__title,
.section--dark .eyebrow,
.section--dark .signal-grid__item h3,
.section--dark .process-list__item p,
.section--dark .process-list__step,
.section--dark .faq-list__item summary,
.section--dark .faq-list__item p {
  color: var(--text-inverse);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.signal-grid__item {
  padding: 24px;
  border-top: 1px solid rgba(238, 243, 238, 0.16);
}

.signal-grid__item h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 12px;
}

.signal-grid__item p:last-child {
  margin: 14px 0 0;
  color: rgba(238, 243, 238, 0.74);
}

.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right top, rgba(87, 214, 123, 0.18), transparent 34%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.cta-band__copy {
  max-width: 820px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.module {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(220px, 320px);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.module__title {
  font-size: clamp(30px, 4vw, 52px);
}

.module__text,
.module__points {
  margin: 14px 0 0;
}

.module__points {
  padding-left: 20px;
}

.section--media-right {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.offset-media {
  min-height: clamp(360px, 44vw, 620px);
}

.process-list {
  margin-top: 36px;
}

.process-list__item {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(238, 243, 238, 0.12);
  box-shadow: none;
}

.process-list__item p {
  margin: 10px 0 0;
  color: rgba(238, 243, 238, 0.78);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.principle {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.principle h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.contact-grid {
  align-items: start;
}

.contact-form,
.contact-panel {
  padding: 24px;
}

.field {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.field span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 36, 25, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(22, 90, 48, 0.52);
  box-shadow: 0 0 0 4px rgba(87, 214, 123, 0.16);
}

.contact-form .button {
  margin-top: 20px;
}

.contact-panel {
  background:
    radial-gradient(circle at top, rgba(87, 214, 123, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.contact-panel__block + .contact-panel__block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-panel a,
.site-footer a {
  text-decoration: none;
}

.faq-list {
  margin-top: 36px;
}

.faq-list__item {
  padding: 0 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(238, 243, 238, 0.12);
  box-shadow: none;
}

.faq-list__item summary {
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.faq-list__item summary::-webkit-details-marker {
  display: none;
}

.faq-list__item p {
  margin: 0 0 22px;
  color: rgba(238, 243, 238, 0.74);
}

.site-footer {
  margin-top: var(--section-gap);
  padding-top: 42px;
  padding-bottom: 34px;
  background: #08170f;
  color: var(--text-inverse);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 560;
  letter-spacing: -0.06em;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 243, 238, 0.12);
}

.site-footer__label {
  margin: 0 0 12px;
  color: rgba(238, 243, 238, 0.56);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__text {
  display: block;
  margin-top: 10px;
  color: rgba(238, 243, 238, 0.88);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.site-footer__legal {
  margin: 28px 0 0;
  font-size: 14px;
  color: rgba(238, 243, 238, 0.6);
}

.inspect-toggle,
.inspect-badge {
  position: fixed;
  z-index: 80;
}

.inspect-toggle {
  right: 20px;
  bottom: 20px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(8, 23, 15, 0.92);
  color: var(--text-inverse);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(8, 23, 15, 0.26);
}

.inspect-badge {
  top: 0;
  left: 0;
  display: grid;
  gap: 4px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(87, 214, 123, 0.32);
  border-radius: 16px;
  background: rgba(8, 23, 15, 0.94);
  color: var(--text-inverse);
  pointer-events: none;
  opacity: 0;
  transform: translate(-9999px, -9999px);
  transition: opacity 120ms ease;
}

.inspect-badge.is-visible {
  opacity: 1;
}

.inspect-badge__eyebrow {
  color: rgba(238, 243, 238, 0.56);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inspect-badge__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.inspect-badge__meta {
  color: rgba(238, 243, 238, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

html.has-section-reveal main > section,
html.has-section-reveal .split-article-copy__section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  will-change: opacity, transform;
}

html.has-section-reveal main > section.is-section-visible,
html.has-section-reveal main > section:first-child,
html.has-section-reveal .split-article-copy__section.is-section-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.has-section-reveal main > section,
  html.has-section-reveal .split-article-copy__section {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 1080px) {
  .signal-grid,
  .principles-grid,
  .site-footer__grid,
  .section--media-right,
  .feature-split,
  .story-grid,
  .contact-grid,
  .module {
    grid-template-columns: 1fr;
  }

  .module {
    gap: 12px;
  }

  .module__points {
    margin-top: 4px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(13, 31, 20, 0.94);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav__link {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding-top: 170px;
    padding-bottom: 52px;
  }

  .hero__title {
    font-size: clamp(42px, 15vw, 70px);
  }

  .page-hero__title,
  .section__title,
  .module__title,
  .principle h2,
  .signal-grid__item h3,
  .faq-list__item summary {
    font-size: clamp(28px, 9vw, 46px);
  }

  .hero__notes {
    flex-direction: column;
    gap: 8px;
  }

  .inspect-toggle {
    right: 14px;
    bottom: 14px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.page--home {
  background: #f2f2f2;
  color: #1a1b1f;
  font-family: "IBM Plex Sans", sans-serif;
  overflow-x: hidden;
}

[data-placeholder-ref="text4"],
[data-placeholder-ref="text9"],
[data-placeholder-ref="text10"],
[data-placeholder-ref="text11"],
[data-placeholder-ref="text18"],
[data-placeholder-ref="text24"],
[data-placeholder-ref="text30"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text55"],
[data-placeholder-ref="text56"],
[data-placeholder-ref="text58"],
[data-placeholder-ref="text59"],
[data-placeholder-ref="text60"],
[data-placeholder-ref="text64"] {
  font-weight: 700 !important;
}

.page--article {
  background: #f7f7f2;
  color: #111;
}

.page--article a {
  color: inherit;
}

.article-reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
}

.article-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8c1f28, #f05a3f);
  transform: scaleX(0);
  transform-origin: left center;
}

.article-utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #111;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header {
  position: sticky;
  top: 3px;
  z-index: 40;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(247, 247, 242, 0.88);
  backdrop-filter: blur(16px);
}

.article-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.article-header__actions {
  display: contents;
}

.article-header__nav {
  grid-column: 2;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 28px);
}

.article-header__nav .editorial-nav__link {
  opacity: 0.72;
  text-transform: none;
}

.article-header__cta,
.article-header__cta:visited {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111;
  color: #f7f7f2;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.article-header__cta:hover,
.article-header__cta:focus-visible {
  transform: translateY(-1px);
  background: #8c1f28;
}

.article-menu-toggle {
  display: none;
}

.article-container {
  width: min(calc(100% - clamp(32px, 7vw, 96px)), 1240px);
  margin-right: auto;
  margin-left: auto;
}

.article-hero {
  padding: clamp(92px, 10vw, 132px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
}

.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #686868;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.article-breadcrumb a {
  text-decoration: none;
}

.article-hero__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: #626262;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.article-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(140, 31, 40, 0.18);
  border-radius: 999px;
  background: rgba(140, 31, 40, 0.08);
  color: #8c1f28;
}

.article-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #101010;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.96;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.article-hero p {
  max-width: 740px;
  margin: 28px auto 0;
  color: #5f6368;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  font-weight: 500;
}

.article-author-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: #626262;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.article-author-line__avatar,
.article-author-card__avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    url("./assets/images/raul-image-site.jpeg") center / cover;
}

.article-cover {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.article-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14));
  content: "";
  pointer-events: none;
}

.article-cover img {
  width: 100%;
  height: clamp(520px, 52vw, 680px);
  object-fit: cover;
  object-position: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 740px);
  justify-content: center;
  gap: clamp(48px, 6vw, 72px);
  padding-top: clamp(80px, 9vw, 116px);
}

.article-sidebar__stack {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.article-sidebar-card {
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
}

.article-sidebar-card h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc {
  display: grid;
  gap: 10px;
}

.article-toc a,
.article-share-card button,
.article-mini-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: #8c1f28;
}

.article-author-card {
  display: grid;
  gap: 8px;
}

.article-author-card__avatar {
  width: 54px;
  height: 54px;
}

.article-author-card strong {
  color: #111;
  font-size: 16px;
  line-height: 1.2;
}

.article-author-card span,
.article-author-card p {
  margin: 0;
  color: #646464;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.article-share-card {
  display: grid;
  gap: 8px;
}

.article-share-card button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #f3f3ef;
  cursor: pointer;
}

.article-share-card button:hover,
.article-share-card button:focus-visible {
  color: #111;
  background: #e9e9e3;
}

.article-mini-cta {
  background: #111;
  color: #fff;
}

.article-mini-cta p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.article-mini-cta a,
.article-mini-cta a:visited {
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.article-body {
  min-width: 0;
  color: #252525;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.72;
}

.article-body section {
  scroll-margin-top: 130px;
}

.article-body section + section {
  margin-top: 54px;
}

.article-body p {
  margin: 18px 0 0;
}

.article-lead {
  margin-top: 0 !important;
  color: #202020;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 500;
}

.article-body h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.article-body h3 {
  margin: 0;
  color: #111;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 650;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 22px;
}

.article-quote {
  position: relative;
  margin: 58px 0;
  padding: clamp(32px, 4vw, 46px);
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #111;
  color: #f7f7f2;
}

.article-quote > span {
  display: block;
  margin-bottom: 18px;
  color: #f05a3f;
  font-family: "Playfair Display", serif;
  font-size: 62px;
  line-height: 0.6;
}

.article-quote p {
  margin: 0;
  color: #fff;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.article-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.article-steps article,
.article-note {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #fff;
}

.article-steps article:last-child {
  grid-column: 1 / -1;
}

.article-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(140, 31, 40, 0.08);
  color: #8c1f28;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.article-steps p,
.article-note p {
  margin: 9px 0 0;
  color: #606060;
  font-size: 16px;
  line-height: 1.55;
}

.article-note {
  margin-top: 26px;
  background:
    linear-gradient(135deg, rgba(140, 31, 40, 0.07), transparent 42%),
    #fff;
}

.article-text-cta,
.article-text-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
  text-decoration: none;
}

.article-related {
  margin-top: clamp(96px, 11vw, 132px);
}

.article-section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.article-section-heading span,
.article-final-cta > span {
  color: #8c1f28;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-section-heading h2,
.article-final-cta h2 {
  margin: 0;
  color: #111;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-related-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.article-related-card:hover,
.article-related-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.1);
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-related-card:hover img,
.article-related-card:focus-within img {
  transform: scale(1.04);
}

.article-related-card div {
  padding: 22px;
}

.article-related-card span,
.article-related-card time {
  display: inline-flex;
  margin-right: 10px;
  color: #777;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  text-transform: uppercase;
}

.article-related-card h3 {
  margin: 14px 0 0;
  color: #111;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 650;
}

.article-related-card p {
  margin: 10px 0 0;
  color: #626262;
  font-size: 15px;
  line-height: 1.45;
}

.article-related-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #8c1f28;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.article-final-cta {
  position: relative;
  margin-top: clamp(96px, 11vw, 132px);
  margin-bottom: clamp(96px, 11vw, 132px);
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border-radius: 34px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #1c1c1c, #050505);
  color: #fff;
}

.article-final-cta h2 {
  max-width: 820px;
  margin-top: 16px;
  color: #fff;
}

.article-final-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.article-final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-final-cta a,
.article-final-cta a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.article-final-cta a + a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.article-footer {
  padding: 72px 0 28px;
  background: #111;
  color: rgba(255, 255, 255, 0.72);
}

.article-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.article-footer__brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.article-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.article-footer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: none;
}

.article-footer a:hover,
.article-footer a:focus-visible {
  color: #fff;
}

.article-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-footer__bottom p,
.article-footer__bottom a {
  margin: 0;
  font-size: 13px;
}

.article-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1100px) {
  .article-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .article-menu-toggle {
    grid-column: 2;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
  }

  .article-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
  }

  .article-header__actions {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 4vw, 48px);
    left: clamp(18px, 4vw, 48px);
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
  }

  .nav-open .article-header__actions {
    display: grid;
  }

  .article-header__nav {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .article-header__cta {
    grid-column: auto;
    justify-self: stretch;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    order: 2;
  }

  .article-sidebar__stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc {
    grid-column: 1 / -1;
  }

  .article-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .article-utility-bar {
    display: none;
  }

  .article-header {
    top: 3px;
    padding: 14px 16px;
  }

  .article-container {
    width: min(calc(100% - 32px), 1240px);
  }

  .article-hero {
    padding: 62px 0 38px;
    text-align: left;
  }

  .article-breadcrumb,
  .article-hero__meta,
  .article-author-line {
    justify-content: flex-start;
  }

  .article-hero h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .article-cover {
    border-radius: 20px;
  }

  .article-cover img {
    height: clamp(240px, 70vw, 320px);
  }

  .article-layout {
    gap: 42px;
    padding-top: 54px;
  }

  .article-sidebar__stack,
  .article-related__grid,
  .article-footer__inner {
    grid-template-columns: 1fr;
  }

  .article-body {
    font-size: 18px;
    line-height: 1.68;
  }

  .article-quote,
  .article-final-cta {
    border-radius: 24px;
  }

  .article-steps {
    grid-template-columns: 1fr;
  }

  .article-steps article:last-child {
    grid-column: auto;
  }

  .article-final-cta div {
    flex-direction: column;
  }

  .article-final-cta a {
    width: 100%;
  }

  .article-footer {
    padding-top: 54px;
  }

  .article-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-related-card,
  .article-related-card img,
  .article-header__cta {
    transition: none;
  }
}

[data-placeholder-ref="text55"],
[data-placeholder-ref="text56"],
[data-placeholder-ref="text58"],
[data-placeholder-ref="text59"],
[data-placeholder-ref="text60"],
[data-placeholder-ref="text64"] {
  font-weight: 700 !important;
}

[data-placeholder-ref="text8"],
[data-placeholder-ref="text54"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text84"],
[data-placeholder-ref="text87"],
[data-placeholder-ref="text90"],
[data-placeholder-ref="text93"],
[data-placeholder-ref="text122"],
[data-placeholder-ref="text125"],
[data-placeholder-ref="text126"],
[data-placeholder-ref="text154"],
[data-placeholder-ref="text164"],
[data-placeholder-ref="cta4"],
[data-placeholder-ref="cta5"],
[data-placeholder-ref="cta6"],
[data-placeholder-ref="cta8"],
.faq-tab,
.faq-item summary span,
.faq-item p {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text84"],
[data-placeholder-ref="text87"],
[data-placeholder-ref="text90"],
[data-placeholder-ref="text93"] {
  font-weight: 700 !important;
}

[data-placeholder-ref="title16"] {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(29px, 2.35vw, 34px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

[data-placeholder-ref="text154"],
[data-placeholder-ref="text162"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text152"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
}

[data-placeholder-ref="text6"] {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 700 !important;
}

[data-placeholder-ref="text8"],
[data-placeholder-ref="text54"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text8"],
[data-placeholder-ref="text53"],
[data-placeholder-ref="text54"],
[data-placeholder-ref="text56"],
[data-placeholder-ref="text57"],
[data-placeholder-ref="text60"],
[data-placeholder-ref="text61"],
[data-placeholder-ref="text64"],
[data-placeholder-ref="text69"],
[data-placeholder-ref="text70"],
[data-placeholder-ref="text82"],
[data-placeholder-ref="text85"],
[data-placeholder-ref="text88"],
[data-placeholder-ref="text91"],
[data-placeholder-ref="text94"],
[data-placeholder-ref="text95"],
[data-placeholder-ref="text97"],
[data-placeholder-ref="text101"],
[data-placeholder-ref="text111"],
[data-placeholder-ref="text125"],
[data-placeholder-ref="text126"],
[data-placeholder-ref="text148"],
[data-placeholder-ref="text149"],
[data-placeholder-ref="text150"],
[data-placeholder-ref="text151"],
[data-placeholder-ref="cta7"],
[data-placeholder-ref="faq3"],
[data-placeholder-ref="element12"],
[data-placeholder-ref="element14"],
[data-placeholder-ref="element16"],
[data-placeholder-ref="element18"],
[data-placeholder-ref="element22"],
[data-placeholder-ref="element25"],
[data-placeholder-ref="element88"],
[data-placeholder-ref="element90"],
[data-placeholder-ref="element92"],
[data-placeholder-ref="element94"],
[data-placeholder-ref="element96"],
[data-placeholder-ref="element122"],
[data-placeholder-ref="element12"] *,
[data-placeholder-ref="element14"] *,
[data-placeholder-ref="element16"] *,
[data-placeholder-ref="element18"] *,
[data-placeholder-ref="element22"] *,
[data-placeholder-ref="element25"] *,
[data-placeholder-ref="element88"] *,
[data-placeholder-ref="element90"] *,
[data-placeholder-ref="element92"] *,
[data-placeholder-ref="element94"] *,
[data-placeholder-ref="element96"] *,
[data-placeholder-ref="element122"] * {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text55"],
[data-placeholder-ref="text56"],
[data-placeholder-ref="text58"],
[data-placeholder-ref="text59"],
[data-placeholder-ref="text60"],
[data-placeholder-ref="text64"] {
  font-weight: 700 !important;
}

[data-placeholder-ref="title14"],
[data-placeholder-ref="faq2"] {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(38px, 3.8vw, 52px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.page--home a {
  color: inherit;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-weight: 500;
}

.editorial-shell {
  width: 100%;
  margin: 0 auto;
}

.editorial-scroll-target {
  scroll-margin-top: 20px;
}

.editorial-header,
.editorial-home,
.editorial-footer {
  font-family: "IBM Plex Sans", sans-serif;
}

.editorial-header {
  display: flex;
  justify-content: center;
  padding: 30px var(--editorial-edge-space);
  background: transparent;
}

.editorial-home {
  display: flow-root;
}

.editorial-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.2vw, 34px);
  width: fit-content;
  max-width: min(100%, var(--editorial-shell-width));
  margin: 0 auto;
  padding: 12px clamp(18px, 2vw, 28px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--dark-editorial-panel-bg);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.12);
  isolation: isolate;
}

.editorial-header__inner > * {
  position: relative;
  z-index: 1;
}

.editorial-header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-left: 0;
  max-width: 100%;
}

.editorial-brand,
.editorial-brand:visited {
  flex: 0 0 auto;
  color: #8c1f28;
  font-size: 23px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: none;
}

.page--home .editorial-brand,
.page--home .editorial-brand:visited {
  font-size: 23px;
  letter-spacing: 0.08px;
}

.page--home .editorial-header__inner {
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, var(--editorial-shell-width));
  box-sizing: border-box;
}

.page--home .editorial-header__inner > * {
  align-self: center;
}

.page--home .editorial-brand,
.page--home .editorial-brand:visited {
  justify-self: auto;
}

[data-placeholder-ref="logo1"],
[data-placeholder-ref="logo1"]:visited {
  color: #f2f2f2 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 30px !important;
  line-height: 1.05;
  font-weight: 700 !important;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.14);
}

[data-placeholder-ref="logo2"],
[data-placeholder-ref="logo2"]:visited {
  color: #8c1f28;
  font-family: "Playfair Display", Georgia, serif !important;
}

.page--home .editorial-header__actions {
  justify-self: auto;
  margin-left: 0;
  justify-content: center;
  gap: 0;
  flex: 0 0 auto;
}

.page--home .editorial-nav {
  justify-content: center;
  gap: clamp(18px, 2.8vw, 34px);
}

.editorial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  flex: 0 1 auto;
}

.editorial-nav__link,
.editorial-nav__link:visited {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  color: #f2f2f2 !important;
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 22px;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
  transition: opacity 220ms ease;
}

.editorial-nav__link:hover,
.editorial-nav__link:focus-visible {
  opacity: 1;
}

.editorial-cart {
  flex: 0 0 auto;
}

.editorial-cart.site-cta {
  min-height: 54px;
}

.editorial-hero-section,
.editorial-section,
.editorial-footer {
  padding-left: var(--editorial-edge-space);
  padding-right: var(--editorial-edge-space);
}

.editorial-home > .editorial-hero-section:first-child {
  margin-top: var(--header-first-section-gap);
  padding-right: 0;
  padding-left: 0;
}

.editorial-home > .editorial-hero-section:first-child .editorial-shell {
  width: 100%;
  max-width: none;
}

.editorial-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: clamp(664px, 67vw, 824px);
  margin-bottom: 100px;
  overflow: hidden;
  background: #f4f4f4;
}

[data-placeholder-ref="hero2"] {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.editorial-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(26, 27, 31, 0.34);
  content: "";
}

.editorial-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.editorial-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  width: min(100%, 1280px);
  min-height: inherit;
  margin-bottom: 0;
  text-align: left;
}

.editorial-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, 1160px);
  min-height: inherit;
  padding: clamp(24px, 2.8vw, 50px) 0 clamp(54px, 7vw, 88px);
  margin-left: var(--editorial-left-rail);
  margin-right: 0;
  text-align: left;
}

.editorial-welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(242, 242, 242, 0.94);
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 520;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: none;
}

.editorial-welcome-badge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f2f2f2;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.editorial-welcome-badge__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.38em;
  flex-wrap: wrap;
}

.editorial-welcome-badge__brand {
  color: rgba(255, 244, 246, 0.98);
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08px;
}

.editorial-hero__title {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  margin: 0;
  color: #f2f2f2;
  max-width: min(100%, 974px);
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(40px, 4.55vw, 66px);
  line-height: clamp(48px, 5.15vw, 72px);
  font-weight: 500;
  letter-spacing: -0.032em;
}

.editorial-hero__lede {
  font-family: "IBM Plex Sans", sans-serif;
  max-width: min(100%, 674px);
  margin: 18px 0 0;
  color: rgba(242, 242, 242, 0.88);
  font-size: clamp(13px, 1.22vw, 16.5px);
  line-height: clamp(23px, 1.96vw, 28px);
  font-weight: 400;
}

.editorial-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 24px;
}

.editorial-hero__action,
.editorial-hero__action:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(188px, 15.5vw, 220px);
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #121316;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.editorial-hero__action:hover,
.editorial-hero__action:focus-visible {
  transform: translateY(-1px);
}

.editorial-hero__action--primary,
.editorial-hero__action--primary:visited {
  background: #d92525;
  color: #f2f2f2;
}

.page--home .editorial-hero__action--primary,
.page--home .editorial-hero__action--primary:visited {
  color: #f2f2f2;
}

.page--home .editorial-hero__action--secondary,
.page--home .editorial-hero__action--secondary:visited {
  color: #121316;
}

.editorial-hero__capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  width: min(100%, 560px);
  margin-top: auto;
  padding-top: clamp(42px, 5.4vw, 60px);
  transform: translateY(clamp(27px, 2.1vw, 31px));
}

.editorial-clients-band {
  padding-left: var(--editorial-edge-space);
  padding-right: var(--editorial-edge-space);
  padding-bottom: 0;
}

.editorial-clients-band .editorial-shell {
  width: min(100%, 1280px);
}

.editorial-clients-band__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 1160px);
  margin-left: var(--editorial-left-rail);
  margin-right: 0;
  color: #1a1b1f;
}

.editorial-clients-band__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.editorial-clients-band__label,
.editorial-clients-band__year {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.editorial-clients-band__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1a1b1f;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 520;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: none;
}

.editorial-clients-band__label-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #1a1b1f;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.editorial-clients-band__label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.38em;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.editorial-clients-band__year {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.72;
}

.editorial-clients-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: 18px;
}

.editorial-clients-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: clamp(190px, 19vw, 278px);
  padding: clamp(22px, 2vw, 28px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #1f2024;
  box-shadow: none;
}

.editorial-clients-card,
.editorial-clients-card:visited {
  color: inherit;
  text-decoration: none;
}

.editorial-clients-card--link {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

[data-placeholder-ref="image3"] {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.editorial-clients-card--link:hover,
.editorial-clients-card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

[data-placeholder-ref="image3"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.editorial-clients-card--brand {
  flex-direction: column;
  gap: 12px;
}

.editorial-clients-card__logo {
  display: block;
  width: min(100%, 196px);
  max-height: 100%;
  object-fit: contain;
}

.editorial-clients-band__projects {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 3vw, 52px);
  margin-top: clamp(88px, 7vw, 98px);
}

.editorial-projects-mosaic-stack {
  display: grid;
  gap: clamp(30px, 2.5vw, 38px);
  justify-self: end;
  width: min(100%, 86%);
  min-width: clamp(484px, 41.4vw, 622px);
}

.editorial-projects-mosaic-item {
  display: grid;
  gap: 12px;
}

.editorial-clients-band__project-title {
  margin: 18px 0 0;
  width: 100%;
  max-width: 100%;
  color: #1f2024;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  line-height: clamp(42px, 4.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.editorial-clients-band__project-copy {
  max-width: min(100%, 430px);
  margin: 18px 0 0;
  color: rgba(31, 32, 36, 0.76);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: clamp(26px, 2.1vw, 30px);
  font-weight: 400;
}

.editorial-projects-mosaic {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.78 / 1;
  min-height: 0;
  overflow: hidden;
  background: #dfe4e0;
  text-decoration: none;
  isolation: isolate;
  border-radius: 18px;
}

.editorial-projects-mosaic::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  content: "";
  pointer-events: none;
}

.editorial-projects-mosaic--secondary::after {
  background: transparent;
}

.editorial-projects-mosaic img,
.editorial-projects-mosaic__video {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) translateZ(0);
  filter: blur(0);
  transform-origin: center;
  transition: transform 260ms ease, filter 260ms ease;
  will-change: transform, filter;
  border-radius: inherit;
}

.editorial-projects-mosaic__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(86%, 420px);
  text-align: center;
}

.editorial-projects-mosaic__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(176px, 18vw, 236px);
  padding: 10px 20px;
  background: rgba(242, 242, 242, 0.52);
  color: #044040;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08px;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease;
  border-radius: 12px;
}

.editorial-projects-mosaic__description {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  color: #044040;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.46;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: pretty;
  text-align: left;
  transition: background-color 220ms ease, color 220ms ease;
  border-radius: 0;
}

.editorial-projects-mosaic__brand--secondary {
  min-width: clamp(176px, 18vw, 236px);
  max-width: none;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.02;
  white-space: nowrap;
}

.editorial-projects-mosaic__brand--stockhandle {
  min-width: clamp(176px, 18vw, 236px);
  max-width: none;
  color: #8C1F28;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.02;
  white-space: nowrap;
}

[data-placeholder-ref="text202"] {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600;
  letter-spacing: -0.03em;
}

[data-placeholder-ref="text203"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(176px, 18vw, 236px);
  max-width: none;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(242, 242, 242, 0.52);
  font-family: "Aspekta", "IBM Plex Sans", sans-serif !important;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #8C1F28 !important;
  text-align: center;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease;
}

.editorial-projects-mosaic:hover img,
.editorial-projects-mosaic:hover .editorial-projects-mosaic__video,
.editorial-projects-mosaic:focus-visible img,
.editorial-projects-mosaic:focus-visible .editorial-projects-mosaic__video {
  transform: scale(1.09) translateZ(0);
  filter: blur(10px);
}

.editorial-projects-mosaic:hover .editorial-projects-mosaic__brand,
.editorial-projects-mosaic:focus-visible .editorial-projects-mosaic__brand {
  background: #044040;
  color: #f2f2f2;
}

.editorial-projects-mosaic--secondary:hover .editorial-projects-mosaic__brand,
.editorial-projects-mosaic--secondary:focus-visible .editorial-projects-mosaic__brand {
  background: #044040;
  color: #f2f2f2;
}

.editorial-projects-mosaic--stockhandle:hover .editorial-projects-mosaic__brand,
.editorial-projects-mosaic--stockhandle:focus-visible .editorial-projects-mosaic__brand {
  background: #8C1F28;
  color: #f2f2f2;
}

.editorial-projects-mosaic--stockhandle:hover [data-placeholder-ref="text203"],
.editorial-projects-mosaic--stockhandle:focus-visible [data-placeholder-ref="text203"] {
  color: #f2f2f2 !important;
}

.editorial-projects-mosaic:focus-visible {
  outline: none;
}

.services-showcase {
  position: relative;
  margin-top: clamp(94px, 9vw, 118px);
  padding: clamp(48px, 5.2vw, 72px) 0 clamp(84px, 8vw, 118px);
  overflow: hidden;
  background: var(--dark-editorial-panel-bg);
  isolation: isolate;
}

.services-showcase::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.18);
  content: "";
  pointer-events: none;
}

.services-showcase .editorial-shell {
  width: min(100%, 1280px);
  padding-left: var(--editorial-edge-space);
  padding-right: var(--editorial-edge-space);
}

.services-showcase__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 0.64fr) minmax(0, 3.36fr);
  gap: 34px 12px;
  padding: 0;
}

.services-showcase__eyebrow {
  margin: 3px 0 0;
  color: rgba(242, 242, 242, 0.84);
}

.services-showcase__eyebrow .editorial-clients-band__label-mark,
.services-showcase__eyebrow .editorial-clients-band__label-text {
  color: rgba(242, 242, 242, 0.84);
}

.services-showcase__heading {
  width: min(100%, 58ch);
}

.services-showcase__heading h2 {
  margin: 0;
  color: #f2f2f2;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.services-showcase__heading p {
  max-width: 58ch;
  margin: 12px 0 0;
  color: rgba(242, 242, 242, 0.72);
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.52;
  font-weight: 500;
}

[data-placeholder-ref="text8"],
[data-placeholder-ref="text11"],
[data-placeholder-ref="text18"],
[data-placeholder-ref="text24"],
[data-placeholder-ref="text30"],
[data-placeholder-ref="text69"],
[data-placeholder-ref="text70"],
[data-placeholder-ref="element12"],
[data-placeholder-ref="element14"],
[data-placeholder-ref="element16"],
[data-placeholder-ref="element18"],
[data-placeholder-ref="element22"],
[data-placeholder-ref="element25"],
[data-placeholder-ref="element29"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="element12"] *,
[data-placeholder-ref="element14"] *,
[data-placeholder-ref="element16"] *,
[data-placeholder-ref="element18"] *,
[data-placeholder-ref="element22"] *,
[data-placeholder-ref="element25"] * {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

.services-showcase__cards,
.services-showcase__panels {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.services-showcase__cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(292px, 31vw, 386px);
  padding: clamp(22px, 2.2vw, 28px);
  border: 1px solid #1e1e1e;
  border-radius: 18px;
  background: #050505;
  color: #f2f2f2;
  isolation: isolate;
}

.service-card__surface,
.metric-card__surface {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.metric-card__surface {
  pointer-events: auto;
}

.service-card > :not(.service-card__surface),
.metric-card > :not(.metric-card__surface) {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 999px;
  background: #1e1e1e;
  color: rgba(242, 242, 242, 0.86);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-card h3 {
  margin: 22px 0 0;
  max-width: 16ch;
  color: #f2f2f2;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(18px, 1.72vw, 23px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 18px 0 0;
  color: rgba(242, 242, 242, 0.62);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5;
  font-weight: 500;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.service-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid #2c2c2c;
  border-radius: 999px;
  background: #202020;
  color: #e8e8e8;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.services-showcase__panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-panel {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid rgba(196, 193, 182, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 82% 74%, rgba(90, 84, 70, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(105deg, rgba(68, 61, 46, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #f7f5ee 0%, #ebe8dc 48%, #f5f2e8 100%);
  color: #151515;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services-panel::after {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(28, 24, 18, 0.06) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.36) 0 0.8px, transparent 0.9px);
  background-size: 9px 9px, 13px 13px;
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.services-panel__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 24px;
  border-bottom: 1px solid #d7d7d2;
}

.services-panel__header h3 {
  margin: 0;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.services-panel__header span {
  color: #1b1b1b;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.services-panel__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px 24px;
}

.services-panel__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(231, 229, 220, 0.86);
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  white-space: nowrap;
}

.services-panel__chips i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    var(--tool-color, #8c1f28);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tool-color, #8c1f28) 18%, transparent);
}

.services-panel__chips i::after {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}

.services-panel__chips--capability span {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(15, 15, 14, 0.08);
}

.services-panel__chip-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: #111111;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.metrics-section {
  position: relative;
  margin-top: clamp(76px, 6.6vw, 95px);
  padding: 0 0 0;
  overflow: visible;
  background: #f2f2f2;
  color: #050505;
}

.metrics-section .editorial-shell {
  width: min(100%, 1280px);
  padding-left: var(--editorial-edge-space);
  padding-right: var(--editorial-edge-space);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(238px, 296px) minmax(190px, 1fr) minmax(480px, 595px);
  grid-template-areas:
    "eyebrow heading heading"
    "portrait empty cluster";
  gap: 38px 9px;
  align-items: start;
}

.metrics-section__inner {
  display: contents;
}

.metrics-section__eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: #111;
}

.metrics-section__eyebrow .editorial-clients-band__label-mark,
.metrics-section__eyebrow .editorial-clients-band__label-text {
  color: #111;
}

.metrics-section__heading {
  grid-area: heading;
  width: min(100%, 58ch);
  max-width: 100%;
}

.metrics-section__heading h2 {
  max-width: 100%;
  margin: 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.metrics-section__heading p {
  width: 100%;
  max-width: 58ch;
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.52;
  font-weight: 500;
}

.metrics-section__project-preview {
  width: min(100%, 420px);
  margin-top: 1cm;
}

.metrics-section__project-preview .editorial-projects-mosaic {
  min-height: clamp(240px, 28vw, 340px);
}

.metrics-section.projects-metrics-section {
  width: 100%;
  margin-top: var(--header-first-section-gap);
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  padding-right: var(--editorial-edge-space);
  padding-left: var(--editorial-edge-space);
  display: grid;
  grid-template-columns: calc(660px - var(--editorial-edge-space) - 24px) minmax(0, calc(58ch + 5cm));
  grid-template-areas:
    "eyebrow title"
    "eyebrow copy"
    "preview preview";
  gap: 0 24px;
  align-items: start;
  box-sizing: border-box;
}

.projects-metrics-section .metrics-section__eyebrow {
  grid-area: eyebrow;
  margin-left: calc(max(0px, (100vw - 1280px) / 2 - var(--editorial-edge-space)) + var(--editorial-left-rail));
}

.projects-metrics-section .metrics-section__title {
  grid-area: title;
  max-width: 100%;
  margin: 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.projects-metrics-section .metrics-section__copy {
  grid-area: copy;
  width: 100%;
  max-width: calc(58ch + 5cm);
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.52;
  font-weight: 500;
}

.projects-metrics-section .metrics-section__project-preview {
  grid-area: preview;
  width: min(100%, 693px);
  margin-top: 1cm;
  margin-left: calc(50vw - var(--editorial-edge-space));
  justify-self: start;
  transform: translateX(-50%);
}

.projects-metrics-section .metrics-section__project-preview .editorial-projects-mosaic {
  min-height: clamp(312px, 36vw, 442px);
}

@media (min-width: 992px) {
  .page--projects .metrics-section.projects-metrics-section {
    grid-template-columns: calc(413px - var(--editorial-edge-space) - 24px) minmax(0, calc(58ch + 5cm));
  }

  .page--projects .projects-metrics-section > [data-placeholder-ref="text52"] {
    width: 81px;
    max-width: 81px;
  }
}

:is(.page--projects, .page--home) .projects-testimonials-section {
  margin-bottom: 2.5cm;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-wall__inner {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 991px) {
  .metrics-section.projects-metrics-section {
    margin-top: var(--header-first-section-gap);
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    grid-template-areas:
      "eyebrow title"
      "eyebrow copy"
      "preview preview";
  }

  .projects-metrics-section .metrics-section__project-preview {
    width: min(100%, 693px);
  }
}

@media (max-width: 767px) {
  .metrics-section.projects-metrics-section {
    margin-top: var(--header-first-section-gap);
    padding-right: 15px;
    padding-left: 15px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "preview";
    gap: 18px;
  }
}

.metrics-section__portrait {
  grid-area: portrait;
  align-self: stretch;
  min-height: clamp(386px, 38vw, 443px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #d8d3cb;
}

.metrics-section__portrait img,
.metrics-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  filter: saturate(0.9) contrast(1.03);
}

.metrics-section__video {
  display: block;
}

.metrics-section__cluster {
  grid-area: cluster;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(112px, auto) minmax(150px, auto) minmax(272px, auto);
  gap: 8px;
  min-height: clamp(478px, 42vw, 544px);
}

.metric-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

.metric-card--coral {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: clamp(20px, 1.8vw, 24px) clamp(18px, 1.8vw, 22px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(145deg, #ef5a43 0%, #e94d39 100%);
}

[data-placeholder-ref="element30"] {
  background: var(--metric-accent-red);
}

.metric-card--coral p {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.38;
  font-weight: 650;
  text-align: center;
}

.metric-card__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  width: 100%;
  text-align: center;
}

.metric-card__stat strong {
  color: #fff;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(38px, 4vw, 46px);
  line-height: 0.92;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.metric-card__stat span {
  max-width: 14ch;
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 650;
}

.metric-card--white {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid #e6e6e4;
  background: #fff;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.metric-card--white p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 450;
  text-align: center;
}

.metric-card--white strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  color: #000;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(40px, 4vw, 46px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: center;
}

.metric-card--white a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ef543f;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

[data-placeholder-ref="text55"] {
  width: 100%;
  font-size: clamp(41px, 4.25vw, 49px);
  text-align: center;
}

[data-placeholder-ref="text58"] {
  font-size: clamp(43px, 4.25vw, 49px);
  text-align: center;
}

[data-placeholder-ref="link2"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #f2f2f2;
  color: var(--metric-accent-red);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

[data-placeholder-ref="link2"]:hover,
[data-placeholder-ref="link2"]:focus-visible {
  transform: translateY(-1px);
}

[data-placeholder-ref="text64"] {
  color: var(--metric-accent-red);
}

.metric-card--black {
  color: #fff;
  background: linear-gradient(100deg, #292929 0%, #0b0b0b 70%, #000 100%);
}

.metric-card--black-top {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 112px;
  padding: 18px 20px;
  text-align: center;
}

.metric-card--black-top strong {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(34px, 3.3vw, 40px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

[data-placeholder-ref="text59"] {
  font-size: clamp(41px, 4.2vw, 47px);
  text-align: center;
}

.metric-card--black-top span {
  margin-left: 0;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 650;
}

.metric-card--black-large {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 100%;
  padding: 24px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(80, 80, 80, 0.32), transparent 42%),
    linear-gradient(110deg, #242424 0%, #111 48%, #000 100%);
}

.metric-card--black-large p {
  max-width: 26ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.4;
  font-weight: 650;
  text-align: center;
}

[data-placeholder-ref="text60"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 112px;
  transform: none;
  color: #f5f5f5;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif !important;
  font-size: clamp(31px, 3.1vw, 38px);
  line-height: 1.02;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  text-align: center;
}

[data-placeholder-ref="element29"],
[data-placeholder-ref="element29"] * {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

.about-studio-section {
  position: relative;
  margin-top: clamp(76px, 6.6vw, 95px);
  padding: 0 var(--editorial-edge-space) 0;
}

.about-studio-section::before {
  content: none;
}

.about-studio-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-right: var(--editorial-left-rail);
  padding-left: var(--editorial-left-rail);
  box-sizing: border-box;
}

.about-studio-section__eyebrow {
  width: min(100%, calc(1280px - 226px));
  margin: 0 auto;
  color: #111;
}

.about-studio-section__heading {
  width: min(100%, 58ch);
  max-width: 100%;
  margin-left: clamp(247px, 22vw, 305px);
}

.about-studio-section__title,
[data-placeholder-ref="title11"] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: clamp(28px, 3vw, 38px) 0 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
}

.about-studio-section__copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 92px);
  margin-top: clamp(22px, 2.8vw, 34px);
}

[data-placeholder-ref="element45"],
[data-placeholder-ref="element53"] {
  width: min(100%, calc(1280px - 226px));
  margin-left: auto;
  margin-right: auto;
}

.about-studio-section__copy-grid p {
  max-width: 44ch;
  margin: 0;
  color: #686868;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.52;
  font-weight: 400;
  text-align: left;
  justify-self: start;
}

.about-studio-section__copy-grid p:nth-child(2) {
  margin-top: -10px;
}

.about-studio-section__people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(38px, 4.4vw, 54px);
}

.about-person-card {
  position: relative;
  min-height: clamp(320px, 30vw, 400px);
  overflow: hidden;
  border-radius: 20px;
  background: #0b1617;
  isolation: isolate;
}

.about-person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.about-person-card--second img {
  object-position: 58% 50%;
}

.about-person-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 56%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
  content: "";
  pointer-events: none;
}

.about-person-card__plus {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.12);
}

.about-person-card__info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
  text-align: left;
}

.about-person-card__info strong {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.1;
  font-weight: 750;
}

.about-person-card__info span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.2;
  font-weight: 500;
}

.about-capability-banner {
  position: relative;
  height: clamp(170px, 16vw, 210px);
  margin-top: clamp(38px, 4.4vw, 54px);
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 14%, #ff3a2d 0%, transparent 38%),
    linear-gradient(135deg, #ff2a1f 0%, #dd0500 52%, #7c0000 100%);
  isolation: isolate;
}

.about-capability-banner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(150deg, transparent 0%, transparent 31%, rgba(0, 0, 0, 0.5) 58%, transparent 75%),
    radial-gradient(circle at 16% -8%, rgba(0, 0, 0, 0.78), transparent 25%),
    radial-gradient(circle at 92% 84%, rgba(255, 92, 58, 0.58), transparent 30%);
  opacity: 0.9;
  content: "";
  pointer-events: none;
}

.about-capability-banner::after {
  position: absolute;
  right: -8%;
  bottom: -46%;
  z-index: 0;
  width: 64%;
  height: 88%;
  border-radius: 50%;
  background: rgba(1, 1, 1, 0.62);
  filter: blur(6px);
  transform: rotate(-10deg);
  content: "";
  pointer-events: none;
}

.about-capability-banner__track {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  min-width: max-content;
  animation: aboutCapabilityMarquee 16s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.about-capability-chip {
  flex: 0 0 auto;
  height: clamp(54px, 5vw, 66px);
  padding: 0 clamp(20px, 2vw, 28px);
  border-radius: 15px;
  background: #fff;
  color: #050505;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.about-capability-chip .editorial-capability__icon {
  width: clamp(20px, 2vw, 26px);
  height: clamp(20px, 2vw, 26px);
  flex: 0 0 auto;
}

.about-capability-chip svg {
  width: clamp(20px, 2vw, 26px);
  height: clamp(20px, 2vw, 26px);
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.about-capability-chip .editorial-capability__label {
  font-size: inherit;
  line-height: 1;
  font-weight: inherit;
  letter-spacing: inherit;
}

@keyframes aboutCapabilityMarquee {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(-50%, -50%, 0);
  }
}

.process-section {
  position: relative;
  margin-top: clamp(76px, 6.6vw, 95px);
  padding: 0 var(--editorial-edge-space) 0;
  background: #f2f2f2;
  color: #050505;
}

.process-section__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-right: var(--editorial-left-rail);
  padding-left: var(--editorial-left-rail);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(238px, 296px) minmax(190px, 1fr) minmax(480px, 595px);
  grid-template-areas:
    "eyebrow heading heading"
    "grid grid grid"
    "showreel showreel showreel";
  gap: 38px 9px;
  align-items: start;
}

.process-section__eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: #151515;
}

.process-section__heading {
  grid-area: heading;
  width: min(100%, 58ch);
  margin-top: 0;
  margin-left: 0;
}

.process-section__heading h2 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-section__heading p {
  width: 100%;
  max-width: 58ch;
  margin: 12px 0 0;
  color: #3f3f3f;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.52;
  font-weight: 500;
}

.process-section__grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.process-card {
  position: relative;
  min-height: clamp(280px, 24vw, 308px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.025);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.process-card__top {
  position: absolute;
  top: 27px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #151515;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.process-card__top span:last-child {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.process-card__divider {
  position: absolute;
  top: 60px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: #e6e6e2;
}

.process-card__copy {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
}

.process-card__copy h3 {
  margin: 0;
  color: #050505;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.process-card__copy p {
  margin: 7px 0 0;
  color: #666;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.process-showreel {
  grid-area: showreel;
  position: relative;
  width: 100vw;
  height: clamp(560px, 52vw, 724px);
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  background: #5d8f97;
  isolation: isolate;
}

.process-showreel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 42% 50%, rgba(217, 37, 37, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.process-showreel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.process-showreel__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.process-showreel__button {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-showreel__button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid currentColor;
}

.pricing-section {
  margin-top: 2.5cm;
  padding: 0 var(--editorial-edge-space);
  background: var(--dark-editorial-panel-bg);
  color: #fff;
  overflow: hidden;
}

.pricing-section.pricing-panel {
  margin-top: 2.5cm;
  background: var(--dark-editorial-panel-bg);
}

.pricing-panel {
  position: relative;
  width: 100%;
  min-height: clamp(600px, 47vw, 648px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  padding: clamp(58px, 5.4vw, 72px) clamp(22px, 3.2vw, 36px) clamp(58px, 6vw, 72px);
  background: transparent;
  isolation: isolate;
}

.pricing-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.34) 0 0.6px, transparent 0.7px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.22) 0 0.7px, transparent 0.8px);
  background-size: 8px 8px, 13px 13px;
  content: none;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.pricing-panel > * {
  position: relative;
  z-index: 1;
}

.pricing-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
  gap: 28px;
  align-items: start;
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

[data-placeholder-ref="element85"] {
  width: 100%;
  max-width: 100%;
}

.pricing-panel__eyebrow {
  margin: 0;
  color: #f1f1f1;
}

.pricing-panel__eyebrow .editorial-clients-band__label-mark,
.pricing-panel__eyebrow .editorial-clients-band__label-text {
  color: #f1f1f1;
}

.pricing-panel__title {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 0;
  color: #fff;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(38px, 3.8vw, 52px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.pricing-panel__helper {
  max-width: 270px;
  margin: 14px 0 0 auto;
  color: #bdbdbd;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.pricing-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
  margin-top: clamp(32px, 3vw, 38px);
}

.pricing-card {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px 23px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.035), transparent 38%),
    #050505;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-card:nth-child(-n + 3) {
  min-height: 462px;
}

@media (min-width: 1101px) {
  [data-placeholder-ref="card23"],
  [data-placeholder-ref="card24"] {
    min-height: 462px;
  }
}

.pricing-card--support {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(160deg, #f35a44 0%, #e94835 100%);
}

.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #f3f3f3;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card__divider {
  display: block;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.pricing-card--support .pricing-card__divider {
  background: rgba(255, 255, 255, 0.24);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 34px 0 0;
  color: #fff;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(34px, 3.2vw, 38px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.pricing-card__price-unit {
  color: #bdbdbd;
  font-size: calc(0.55em - 2px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-card__price-unit--monthly {
  color: inherit;
}

.pricing-card__description {
  max-width: 38ch;
  margin: 24px 0 0;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.pricing-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 5px;
  margin-top: 20px;
  padding-bottom: 66px;
}

.pricing-card__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card__features b {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  opacity: 0.85;
}

.pricing-card__button {
  position: absolute;
  right: 23px;
  bottom: 23px;
  left: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus-visible {
  transform: translateY(-1px);
}

.pricing-card__button--primary {
  background: linear-gradient(180deg, #f65a45 0%, #e94734 100%);
}

.pricing-card__button--secondary {
  background: #f4f4f2;
  color: #050505 !important;
}

[data-placeholder-ref="text118"] {
  color: #050505;
}

[data-placeholder-ref="element95"] {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(160deg, #f35a44 0%, #e94835 100%);
}

.pricing-card--support .pricing-card__price {
  position: static;
  margin: 34px 0 0;
  font-size: clamp(34px, 3.2vw, 38px);
}

.pricing-card--support .pricing-card__description {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-card--support .pricing-card__description {
  position: static;
  margin: 24px 0 0;
}

.results-wall {
  margin-top: 2.5cm;
  padding: 0 var(--editorial-edge-space) 0;
  background: #f2f2f2;
  color: #111;
}

.results-wall__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.results-wall__header {
  display: grid;
  gap: 10px;
  width: min(100%, 720px);
  margin-bottom: 34px;
}

.results-wall__eyebrow {
  margin: 0;
  color: #151515;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: 15px;
  line-height: 1.12;
  font-weight: 520;
  letter-spacing: 0.02em;
  text-transform: none;
}

.results-wall__eyebrow .editorial-clients-band__label-text {
  text-transform: none;
}

.results-wall__title {
  margin: 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.results-wall__support {
  max-width: 60ch;
  margin: 0;
  color: #555;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 400;
}

.results-wall__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(250px, 0.95fr) minmax(250px, 1fr) 78px;
  grid-template-rows: 108px minmax(220px, auto) 108px;
  gap: 10px;
  align-items: stretch;
}

.results-card {
  border-radius: 22px;
  overflow: hidden;
}

.results-card--featured,
.results-card--quote,
.results-card--profile {
  position: relative;
  display: flex;
  flex-direction: column;
}

.results-card--featured {
  grid-column: 1;
  grid-row: 1 / span 3;
  min-height: 378px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 32%),
    #111;
  color: #fff;
}

.results-card--profile {
  grid-column: 2;
  grid-row: 1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #f7f7f6;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.results-card--profile-bottom {
  grid-column: 3;
  grid-row: 3;
}

.results-card--quote {
  grid-column: 2;
  grid-row: 2 / span 2;
  padding: 24px 22px 18px;
  background: #fbfbfa;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.results-card--tall {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.results-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.results-card__avatar {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.results-card__avatar--compact {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.1), rgba(18, 18, 18, 0.03)),
    #ececeb;
  border-color: rgba(0, 0, 0, 0.06);
}

.results-card__person-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.results-card__person-copy strong,
.results-card__person-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.results-card__person-copy strong {
  color: inherit;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
}

.results-card__person-copy span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
}

.results-card--featured .results-card__person-copy span {
  color: rgba(255, 255, 255, 0.6);
}

.results-card__stars {
  margin-top: 20px;
  color: #ff9f1c;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.results-card__stars--orange {
  margin-top: auto;
  font-size: 22px;
}

.results-card__quote {
  margin: 16px 0 0;
  max-width: 26ch;
  overflow: hidden;
  color: inherit;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.results-card__quote--light {
  max-width: 100%;
  margin-top: 0;
  color: #0f0f0f;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.03em;
  -webkit-line-clamp: 8;
}

.results-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
  padding-top: 30px;
}

.results-card__stat {
  display: grid;
  gap: 8px;
}

.results-card__stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.results-card__stat strong {
  color: #fff;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.results-wall__rail {
  grid-column: 4;
  grid-row: 1 / span 3;
  display: grid;
  justify-items: center;
  align-content: space-between;
  padding: 14px 0;
  border-radius: 22px;
  background: #0d9fda;
}

.results-wall__rail span {
  width: 22px;
  height: 112px;
  border: 1.6px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-wall__header {
  width: 100%;
  grid-template-columns: calc(660px - var(--editorial-edge-space) - 24px) minmax(0, calc(58ch + 5cm));
  grid-template-areas:
    "eyebrow title"
    ". support";
  gap: 10px 24px;
  align-items: start;
  box-sizing: border-box;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text168"] {
  grid-area: eyebrow;
  margin-left: calc(max(0px, (100vw - 1280px) / 2 - var(--editorial-edge-space)) + var(--editorial-left-rail));
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="title21"] {
  grid-area: title;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text170"] {
  grid-area: support;
}

.blog-section {
  margin-top: 2.5cm;
  padding: 0 var(--editorial-edge-space);
  background: #f2f2f2;
  color: #050505;
}

.blog-section__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.blog-section__header {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-bottom: 34px;
  text-align: center;
}

.blog-section__eyebrow {
  margin: 0;
  color: #121212;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-section__title {
  display: block;
  width: min(100%, 760px);
  box-sizing: border-box;
  margin: 0;
  color: #030303;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.blog-section__support {
  display: block;
  width: min(100%, 760px);
  box-sizing: border-box;
  margin: 0;
  color: #383838;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

[data-placeholder-ref="section8"] .blog-section__grid,
[data-placeholder-ref="section13"] .blog-section__grid {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

[data-placeholder-ref="section8"] .blog-card:first-child,
[data-placeholder-ref="section8"] .blog-card:last-child,
[data-placeholder-ref="section13"] .blog-card:first-child,
[data-placeholder-ref="section13"] .blog-card:last-child {
  display: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 396px;
  padding: 24px 25px 24px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.blog-card--linked {
  padding: 0;
}

.blog-card__link,
.blog-card__link:visited {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-height: 396px;
  padding: 24px 25px 24px;
  color: inherit;
  text-decoration: none;
}

.blog-card__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  isolation: isolate;
}

.blog-card__top > :not(.blog-card__surface) {
  position: relative;
  z-index: 1;
}

.blog-card__surface {
  position: absolute;
  inset: -12px -12px auto -12px;
  z-index: 0;
  height: 146px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(140, 31, 40, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(140, 31, 40, 0.14), rgba(242, 242, 242, 0.12));
  opacity: 0.74;
  transition: opacity 220ms ease, transform 220ms ease;
}

[data-placeholder-ref="element142"] {
  display: none;
}

.blog-card--linked:hover .blog-card__surface,
.blog-card--linked:focus-within .blog-card__surface {
  opacity: 1;
  transform: scale(1.02);
}

.blog-card__image {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #020202;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 240ms ease;
}

.blog-card:hover .blog-card__image,
.blog-card:focus-within .blog-card__image {
  transform: translateZ(0) scale(1.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  filter: saturate(1.05) contrast(1.12);
}

.blog-card__category {
  margin-top: 5px;
  color: #161616;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-card__body {
  margin-top: 74px;
}

.blog-card__date {
  display: block;
  margin-bottom: 6px;
  color: #626262;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.blog-card__title {
  max-width: 34ch;
  margin: 0;
  color: #080808;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.blog-card__excerpt {
  max-width: 40ch;
  margin: 3px 0 0;
  color: #5b5b5b;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 500;
}

.contact-direct-section {
  margin-top: 2.5cm;
  padding: 0 var(--editorial-edge-space);
  background: #f2f2f2;
  color: #050505;
}

.contact-direct-section__inner {
  width: min(100%, 1206px);
  margin: 0 auto;
}

.contact-direct-section__header {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 560px) minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  margin-bottom: 34px;
}

.contact-direct-section__eyebrow {
  margin: 0;
  color: #101010;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct-section__eyebrow .editorial-clients-band__label-mark,
.contact-direct-section__eyebrow .editorial-clients-band__label-text {
  color: #101010;
}

.contact-direct-section__copy {
  display: grid;
  gap: 10px;
}

.contact-direct-section__title {
  max-width: 640px;
}

.contact-direct-section__support {
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.45;
}

.contact-direct-section__grid {
  display: grid;
  grid-template-columns: minmax(250px, 296px) repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.contact-direct-section__image-wrap {
  height: clamp(360px, 29vw, 394px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
}

.contact-direct-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.contact-direct-card {
  display: flex;
  flex-direction: column;
  height: clamp(360px, 29vw, 394px);
  min-height: 0;
  padding: 25px 24px 24px;
  border-radius: 14px;
  box-sizing: border-box;
  background: #fff;
  color: #050505;
}

.contact-direct-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-direct-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #050505;
}

.contact-direct-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-direct-card__plus {
  color: #050505;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.contact-direct-card__line {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.09);
}

.contact-direct-card__body {
  margin-top: auto;
}

.contact-direct-card h3 {
  margin: 0;
  color: #050505;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.contact-direct-card p {
  max-width: 24ch;
  margin: 6px 0 0;
  color: #6a6a6a;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .contact-direct-section__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-direct-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-direct-section__image-wrap {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .contact-direct-section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .contact-direct-section__grid {
    grid-template-columns: 1fr;
  }

  .contact-direct-section__image-wrap,
  .contact-direct-card {
    height: auto;
    min-height: 320px;
  }
}

.redsights-hero {
  margin-top: var(--header-first-section-gap);
  padding: 0 var(--editorial-edge-space);
  color: #f2f2f2;
}

.redsights-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.52fr);
  gap: 8px;
  width: min(100%, 1200px);
  min-height: clamp(560px, 54vw, 680px);
  margin: 0 auto;
  padding: clamp(34px, 5.2vw, 68px);
  overflow: hidden;
  background: #090909;
  border-radius: 18px;
  isolation: isolate;
}

.redsights-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.04);
}

.redsights-hero__inner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.62) 56%, rgba(5, 5, 5, 0.32) 100%),
    radial-gradient(circle at 84% 18%, rgba(140, 31, 40, 0.34), transparent 34%);
  content: "";
}

.redsights-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 760px;
}

.redsights-hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(242, 242, 242, 0.82);
}

.redsights-hero__eyebrow .editorial-clients-band__label-mark,
.redsights-hero__eyebrow .editorial-clients-band__label-text {
  color: rgba(242, 242, 242, 0.82);
}

.redsights-hero__title {
  margin: 0;
  color: #f2f2f2;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(50px, 7.6vw, 104px);
  line-height: 0.9;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.redsights-hero__lede {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(242, 242, 242, 0.76);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.48;
  font-weight: 500;
}

.redsights-newsletter {
  display: grid;
  gap: 12px;
  width: 100%;
  min-height: 153px;
  padding: 34px 24px 28px;
  background: linear-gradient(135deg, #262626 0%, #050505 100%);
  color: #f2f2f2;
  border-radius: 14px;
  box-shadow: none;
}

.redsights-newsletter__title {
  margin: 0;
  color: #f2f2f2;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.redsights-newsletter__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.redsights-newsletter__input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: #f7f7f5;
  color: #101010;
  font-family: "Montserrat", "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  outline: none;
}

.redsights-newsletter__input::placeholder {
  color: rgba(16, 16, 16, 0.48);
  opacity: 1;
}

.redsights-newsletter__input:focus-visible {
  box-shadow: 0 0 0 3px rgba(140, 31, 40, 0.34);
}

.redsights-newsletter__button {
  min-width: 76px;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff765f 0%, #e23721 100%);
  color: #f2f2f2;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.redsights-newsletter__button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.redsights-newsletter__success {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.redsights-newsletter__success[hidden] {
  display: none;
}

.redsights-newsletter--submitted .redsights-newsletter__controls {
  display: none;
}

.redsights-index {
  margin-top: 2.5cm;
}

.redsights-index__filters {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 28px;
}

.redsights-index__filters,
.redsights-index__filters * {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
}

.redsights-filter {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(4, 64, 64, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #044040;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.redsights-filter--active {
  background: #044040;
  color: #f2f2f2;
  text-decoration: none;
}

.redsights-index .blog-section__grid {
  gap: 8px;
  justify-content: start;
  min-height: 396px;
}

.redsights-index .blog-card[hidden] {
  display: none !important;
}

.redsights-index__empty {
  grid-column: 1 / -1;
  display: grid;
  width: 100%;
  place-items: center;
  min-height: 396px;
  margin: 0;
  border: 1px solid rgba(4, 64, 64, 0.12);
  border-radius: 18px;
  color: #044040;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 560;
  text-align: center;
}

.redsights-index__empty[hidden] {
  display: none;
}

.redsights-projects-hero {
  margin-top: var(--header-first-section-gap);
  overflow: hidden;
  background: var(--dark-editorial-panel-bg);
  color: #f2f2f2;
  isolation: isolate;
}

.redsights-projects-hero .editorial-clients-band__projects {
  width: min(100%, 1280px);
  min-height: clamp(123px, calc(18.2vw - 3cm), 139px);
  grid-template-columns: minmax(0, 680px) minmax(360px, 1fr);
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.7cm;
  padding-right: var(--editorial-left-rail);
  padding-left: var(--editorial-left-rail);
  transform: translateY(-0.8cm);
  will-change: transform;
  box-sizing: border-box;
}

.redsights-projects-hero .editorial-clients-band__project-title,
.redsights-projects-hero .editorial-clients-band__project-copy {
  max-width: none;
}

.greenscale-construction-hero .editorial-clients-band__project-copy {
  max-width: 58ch;
}

.greenscale-construction-hero .editorial-projects-summary,
.greenscale-construction-hero .editorial-projects-mosaic-stack,
.greenscale-construction-hero .redsights-newsletter {
  min-width: 0;
  max-width: 100%;
}

.greenscale-construction-hero .redsights-newsletter {
  box-sizing: border-box;
}

.greenscale-construction-hero [data-placeholder-ref="element162"] {
  justify-self: end;
  width: calc(100% + 2.3cm);
  max-width: calc(100% + 2.3cm);
}

.redsights-projects-hero .editorial-clients-band__label,
.redsights-projects-hero .editorial-clients-band__label-mark,
.redsights-projects-hero .editorial-clients-band__label-text,
.redsights-projects-hero .editorial-clients-band__project-title,
.redsights-projects-hero .editorial-clients-band__project-copy {
  color: #f2f2f2;
}

.redsights-projects-hero .redsights-newsletter {
  background: #f2f2f2;
  color: #044040;
}

.redsights-projects-hero .redsights-newsletter__title {
  color: #044040;
}

.redsights-projects-hero .redsights-newsletter__input {
  background: rgba(4, 64, 64, 0.1);
  color: #044040;
}

.redsights-projects-hero .redsights-newsletter__input::placeholder {
  color: rgba(4, 64, 64, 0.62);
}

.redsights-projects-hero .redsights-newsletter__input:focus-visible {
  box-shadow: 0 0 0 3px rgba(4, 64, 64, 0.2);
}

.redsights-projects-hero .redsights-newsletter__button {
  background: #044040;
  color: #f2f2f2;
}

.redsights-projects-hero .redsights-newsletter__success {
  color: #044040;
}

@media (max-width: 767px) {
  .greenscale-construction-hero {
    padding-right: 20px;
    padding-left: 20px;
    overflow-x: hidden;
  }

  .greenscale-construction-hero .editorial-clients-band__projects,
  .greenscale-construction-hero .editorial-projects-summary,
  .greenscale-construction-hero .editorial-projects-mosaic-stack {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .greenscale-construction-hero .editorial-clients-band__project-title,
  .greenscale-construction-hero .editorial-clients-band__project-copy {
    overflow-wrap: break-word;
  }

  .greenscale-construction-hero .redsights-newsletter {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .greenscale-construction-hero .redsights-newsletter__controls {
    grid-template-columns: 1fr;
  }

  .greenscale-construction-hero .redsights-newsletter__button {
    width: 100%;
  }

  body.page--greenscale.page--home .editorial-footer__mega-brand,
  body.page--greenscale.page--home .editorial-footer__mega-brand:visited,
  body.page--numbear.page--home .editorial-footer__mega-brand,
  body.page--numbear.page--home .editorial-footer__mega-brand:visited,
  body.page--stockhandle.page--home .editorial-footer__mega-brand,
  body.page--stockhandle.page--home .editorial-footer__mega-brand:visited {
    font-size: clamp(46px, 14vw, 58px);
  }
}

.contact-section.redsights-contact-section {
  position: relative;
  isolation: isolate;
  margin-top: 2.5cm;
  margin-bottom: 2.5cm;
  min-height: clamp(calc(560px + 5cm), calc(52vw + 5cm), calc(724px + 5cm));
  overflow: hidden;
  background: #050505;
}

.redsights-contact-section::before {
  content: "";
  display: none;
  pointer-events: none;
}

.redsights-contact-section__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.redsights-contact-section .contact-section__inner {
  position: relative;
  z-index: 1;
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  gap: 0.1cm;
  width: min(100%, 980px);
  min-height: clamp(calc(560px + 5cm), calc(52vw + 5cm), calc(724px + 5cm));
  transform: none;
  will-change: auto;
}

.redsights-contact-section .contact-section__panel--form {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}

.redsights-contact-section [data-placeholder-ref="element121"] {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: clamp(520px, 42vw, 572px);
  padding: 38px 34px 34px;
  box-sizing: border-box;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(5, 5, 5, 0.25);
}

.redsights-contact-section [data-placeholder-ref="element121"]::before {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.12) 46%, rgba(10, 10, 10, 0.28) 100%);
}

.redsights-contact-section .contact-section__panel--form::after {
  content: none;
}

.redsights-contact-paper {
  display: block;
  background-color: rgb(255 255 255 / 0);
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.8px),
    radial-gradient(circle at 62% 72%, rgba(0, 0, 0, 0.16) 0 0.8px, transparent 1.6px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 8px 8px, 11px 11px, 26px 26px, 22px 22px;
  opacity: 1;
  filter: none;
  mix-blend-mode: screen;
}

.redsights-contact-section [data-placeholder-ref="element130"].redsights-contact-card {
  z-index: 2;
  opacity: 1;
  background-color: #ffffff;
  background-image: none;
  background-size: auto;
  box-shadow: none;
  backdrop-filter: none;
}

.redsights-contact-section [data-placeholder-ref="field1"],
.redsights-contact-section [data-placeholder-ref="field2"],
.redsights-contact-section [data-placeholder-ref="field3"] {
  background: #fff;
  color: #3f3f3f;
}

.redsights-contact-section [data-placeholder-ref="text127"],
.redsights-contact-section [data-placeholder-ref="text128"],
.redsights-contact-section [data-placeholder-ref="text129"] {
  color: #3f3f3f;
}

.redsights-contact-section [data-placeholder-ref="text129"] {
  transform: translateY(0.1cm);
}

.redsights-contact-section [data-placeholder-ref="element121"] .contact-section__title {
  font-size: clamp(34px, 3vw, 39px);
}

.redsights-contact-section [data-placeholder-ref="element121"] .contact-section__lede {
  font-size: 15px;
  line-height: 1.42;
}

.redsights-contact-section [data-placeholder-ref="element121"] .contact-section__features {
  gap: 32px;
  margin-top: 28px;
}

.redsights-contact-section [data-placeholder-ref="element140"] {
  grid-column: 1 / -1;
  grid-row: 2;
  width: min(100%, calc((100% - 0.1cm) / 2 + 0.1cm + 518px));
  min-height: 136px;
  margin-top: 0;
  padding: 16px 22px;
  opacity: 1;
  background: var(--dark-editorial-panel-bg);
  box-sizing: border-box;
}

.redsights-contact-section [data-placeholder-ref="element140"] .contact-person__surface {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--dark-editorial-panel-bg);
}

.redsights-contact-section [data-placeholder-ref="element140"] .contact-person__avatar {
  width: 92px;
  height: 122px;
}

.contact-section {
  margin-top: 2.5cm;
  padding: 0 var(--editorial-edge-space);
  background: #f2f2f2;
  color: #f7f7f5;
}

.page--contact .contact-section {
  margin-top: 0;
}

.page--contact #contact-form-section11 {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 104px);
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.page--contact #contact-form-section11 .contact-section__inner {
  transform: none;
  will-change: auto;
}

.page--contact [data-placeholder-ref="element121"].contact-section__panel--dark {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 616px;
  padding: 42px 38px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(135deg, #303030 0%, #111 58%, #050505 100%);
  color: #f2f2f2;
}

.page--contact [data-placeholder-ref="element121"].contact-section__panel--dark::before {
  z-index: 0;
  background:
    repeating-radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08) 0 0.8px, transparent 1px 3px),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  opacity: 0.22;
}

.page--contact [data-placeholder-ref="element121"] .contact-section__eyebrow {
  align-self: start;
  width: min(100%, 420px);
  max-width: 100%;
  margin: 0;
  color: rgba(242, 242, 242, 0.92);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.page--contact [data-placeholder-ref="element121"] .contact-section__eyebrow .editorial-clients-band__label-mark,
.page--contact [data-placeholder-ref="element121"] .contact-section__eyebrow .editorial-clients-band__label-text {
  color: rgba(242, 242, 242, 0.92);
}

.page--contact [data-placeholder-ref="element121"] .contact-person {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: auto;
  left: auto;
  z-index: 1;
  display: block;
  width: clamp(92px, 10vw, 128px);
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  opacity: 1;
}

.page--contact [data-placeholder-ref="element121"] .contact-person:empty {
  display: none;
}

.page--contact [data-placeholder-ref="element121"] .contact-person:not(:has(.contact-person__avatar)) {
  display: none;
}

.page--contact [data-placeholder-ref="element121"] .contact-person__avatar {
  display: block;
  width: 100%;
  height: clamp(112px, 13vw, 154px);
  border-radius: 16px;
  background: none;
  filter: none;
  object-fit: cover;
  object-position: center;
}

.page--contact [data-placeholder-ref="element121"] [data-placeholder-ref="element140"] {
  display: none;
}

.page--contact [data-placeholder-ref="element121"] .contact-person__copy {
  transform: none;
}

.page--contact [data-placeholder-ref="element121"] .contact-person__copy span {
  color: rgba(242, 242, 242, 0.58);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.page--contact [data-placeholder-ref="element121"] .contact-person__copy strong {
  color: #f2f2f2;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.page--contact [data-placeholder-ref="element121"] .contact-person__button {
  justify-self: end;
  min-height: 36px;
  padding: 0 18px;
  background: #f2f2f2;
  color: #050505;
  font-size: 14px;
}

.page--contact [data-placeholder-ref="element121"] .contact-section__title {
  align-self: end;
  width: min(100%, 480px);
  max-width: 100%;
  margin: 0 0 12px;
  color: #f2f2f2;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(48px, 4.3vw, 58px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: normal;
  overflow-wrap: break-word;
}

.page--contact [data-placeholder-ref="element121"] .contact-section__lede {
  width: min(100%, 480px);
  max-width: 100%;
  margin: 0;
  color: rgba(242, 242, 242, 0.92);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  overflow-wrap: break-word;
}

.page--contact [data-placeholder-ref="element121"] .contact-section__features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 78px;
}

.page--contact [data-placeholder-ref="element121"] .contact-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: 100%;
  padding: 0 15px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #050505;
}

.page--contact [data-placeholder-ref="element121"] .contact-feature__icon {
  width: 17px;
  height: 17px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: #050505;
}

.page--contact [data-placeholder-ref="element121"] .contact-feature__icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.page--contact [data-placeholder-ref="element121"] .contact-feature strong {
  overflow: hidden;
  color: #050505;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.contact-section__panel {
  position: relative;
  min-height: 616px;
  overflow: hidden;
  border-radius: 14px;
}

.contact-section__panel--dark {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 44px 40px 40px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--dark-editorial-panel-bg);
}

.contact-section__panel--dark::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.18) 44%, rgba(10, 10, 10, 0.52) 72%, rgba(10, 10, 10, 0.76) 100%);
  content: "";
  pointer-events: none;
}

.contact-section__panel--dark::after {
  content: none;
}

.contact-section__panel-video {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: clamp(172px, 34%, 278px);
  z-index: 0;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.02);
}

.contact-section__panel--dark > :not(.contact-section__panel-video) {
  position: relative;
  z-index: 1;
}

.contact-section__eyebrow {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section__eyebrow .editorial-clients-band__label-mark,
.contact-section__eyebrow .editorial-clients-band__label-text {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section__title {
  margin: 0;
  max-width: min(10.5em, 100%);
  color: #f4f4f2;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(38px, 3.3vw, 43px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-section__lede {
  max-width: min(42ch, 100%);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 600;
}

.contact-section__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 36px;
}

.contact-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.contact-feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-feature strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.34;
  font-weight: 700;
  padding-bottom: 2px;
  overflow: visible;
}

.contact-feature p {
  max-width: 25ch;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-person {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 166px;
  margin-top: auto;
  padding: 16px 16px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.contact-person__surface {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.contact-person > :not(.contact-person__surface) {
  position: relative;
  z-index: 1;
}

.contact-person__avatar {
  width: 100px;
  height: 132px;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    url("./assets/images/raul-image-site.jpeg") center / cover;
  filter: grayscale(0.15) contrast(1.03);
}

.contact-person__copy span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-person__copy {
  transform: translateX(-0.8cm);
  width: calc(100% + 0.5cm);
}

.contact-person__copy strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.contact-person__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #050505;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.page--home .contact-person__button,
.page--home .contact-person__button:visited {
  color: #050505;
}

.contact-person__button:hover,
.contact-person__button:focus-visible {
  transform: translateY(-2px);
}

.contact-section__panel--form {
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #070707;
}

.contact-section__panel--form .contact-section__panel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1) contrast(1.03);
}

.redsights-contact-section .contact-section__panel--form .redsights-contact-paper {
  filter: none;
}

.contact-section__panel--form::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(130deg, rgba(7, 7, 7, 0.1), rgba(162, 25, 14, 0.08) 44%, rgba(6, 6, 6, 0.12));
  content: "";
  pointer-events: none;
}

.contact-section__panel--form > :not(.contact-section__panel-video) {
  position: relative;
  z-index: 1;
}

.contact-form-card {
  position: relative;
  width: min(100%, 518px);
  padding: 25px 24px 26px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  color: #050505;
}

.contact-form-card__surface {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.contact-form-card > :not(.contact-form-card__surface) {
  position: relative;
  z-index: 1;
}

.contact-form-card__brand-wrap {
  margin: 0 0 18px;
}

.contact-form-card h2 {
  margin: 0 0 18px;
  color: #030303;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(29px, 2.35vw, 34px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-form-card label {
  position: relative;
  display: block;
  margin-top: 10px;
}

.contact-form-card label span {
  position: absolute;
  top: 17px;
  left: 18px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.42);
  font-family: "Montserrat", "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.contact-form-card label:has(input:not(:placeholder-shown)) span,
.contact-form-card label:has(textarea:not(:placeholder-shown)) span,
.contact-form-card label:has(select:valid) span {
  opacity: 0;
  visibility: hidden;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 19px;
  background-color: #fff;
  color: #050505;
  font-family: "Montserrat", "IBM Plex Sans", sans-serif;
  outline: none;
}

.contact-form-card input {
  height: 48px;
  padding: 0 18px;
}

.contact-form-card textarea {
  height: 190px;
  resize: vertical;
  padding: 17px 18px 14px;
}

.contact-form-card label.contact-form-card__select-label {
  margin-top: 14px;
}

.contact-form-card label.contact-form-card__select-label span {
  position: static;
  display: block;
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.64);
  line-height: 1.25;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.contact-form-card label.contact-form-card__select-label:has(select:valid) span {
  opacity: 1;
  visibility: visible;
}

.contact-form-card label.contact-form-card__select-label select {
  height: 1cm;
  min-height: 38px;
  padding: 0 44px 0 16px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  border-color: rgba(246, 73, 52, 0.64);
  box-shadow: 0 0 0 4px rgba(246, 73, 52, 0.12);
}

.contact-form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f65a45 0%, #e94734 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.contact-form-card button span {
  line-height: 1.25;
  text-align: center;
}

.contact-form-card button:hover,
.contact-form-card button:focus-visible {
  transform: translateY(-1px);
}

.contact-form-card button:disabled {
  cursor: default;
  opacity: 0.86;
  transform: none;
}

.contact-form-card__legal {
  margin: 13px 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.faq-section {
  margin-top: 2.5cm;
  margin-bottom: 2.5cm;
  padding: 0 var(--editorial-edge-space);
  background: #f2f2f2;
  color: #060606;
}

.faq-section__inner {
  width: min(100%, 896px);
  margin: 0 auto;
}

.faq-section__header {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.faq-section__eyebrow {
  margin: 0;
  color: #111;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section__eyebrow .editorial-clients-band__label-mark,
.faq-section__eyebrow .editorial-clients-band__label-text {
  color: #111;
}

.faq-section__title {
  margin: 0;
  color: #030303;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(36px, 3.2vw, 43px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.faq-section__support {
  max-width: 58ch;
  margin: 0;
  color: #3e3e3e;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.faq-section__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.faq-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 0;
  border-radius: 16px;
  padding: 0 17px;
  background: transparent;
  color: #a9a9a9;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.faq-tab:hover,
.faq-tab:focus-visible {
  opacity: 0.82;
}

.faq-tab--active {
  background: #030303;
  color: #fff;
}

.faq-tab svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.faq-section__list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.faq-item {
  border-radius: 16px;
  background: #fff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 0 24px;
  color: #111;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.faq-item summary i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fbfbfb;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  content: "";
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: -12px 24px 24px;
  max-width: 72ch;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.55;
  overflow: hidden;
}

.page--construction .editorial-home {
  padding-bottom: clamp(32px, 4vw, 56px);
}

.page--construction .editorial-hero {
  min-height: clamp(700px, 73vw, 860px);
  margin-bottom: 0;
}

.page--construction .editorial-hero::after {
  background: rgba(18, 21, 24, 0.44);
}

.page--construction .editorial-hero__title {
  max-width: min(100%, 840px);
}

.page--construction .editorial-hero__lede {
  max-width: min(100%, 640px);
}

.editorial-capability {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #121316;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.editorial-capability__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #111111;
}

.editorial-capability__icon svg {
  width: 100%;
  height: 100%;
}

.editorial-capability__label {
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.about-capability-banner .about-capability-chip {
  gap: 12px;
  height: clamp(54px, 5vw, 66px);
  min-height: 0;
  padding: 0 clamp(20px, 2vw, 28px);
  border-radius: 15px;
  background: #fff;
  color: #050505;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
}

.about-capability-banner .editorial-capability__label {
  font-size: inherit;
  line-height: 1;
  font-weight: inherit;
  letter-spacing: inherit;
}

.editorial-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: #fff;
  color: #202020;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    opacity 220ms ease;
}

.editorial-hero__cta:hover,
.editorial-hero__cta:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.space-story__heading {
  max-width: 1100px;
  margin-bottom: 60px;
}

.space-story__title {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  margin: 0 0 12px;
  color: #1f2024;
  font-size: clamp(34px, 4vw, 44px);
  line-height: clamp(46px, 5.6vw, 62px);
  font-weight: 700;
}

.space-story__support {
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0;
  color: #1f2024;
  font-size: clamp(18px, 2vw, 20px);
  line-height: clamp(30px, 3.2vw, 34px);
  font-weight: 400;
}

.editorial-divider {
  height: 1px;
  margin: 0;
  border: 0;
  background: #eee;
}

.space-story__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 50px;
  row-gap: 50px;
  margin-top: 60px;
  margin-bottom: 150px;
}

.space-story__grid p {
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0;
  color: #1f2024;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.idea-belt {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  transform: translateY(-94px);
}

.idea-belt__viewport {
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000000 6%,
    #000000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000000 6%,
    #000000 94%,
    transparent 100%
  );
}

.idea-belt__track {
  --idea-belt-gap: 18px;
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--idea-belt-gap);
  animation: idea-belt-scroll 30s linear infinite;
}

.idea-belt__group {
  display: flex;
  align-items: center;
  gap: var(--idea-belt-gap);
  flex: 0 0 auto;
}

.idea-belt__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 205px;
  padding: 0 40px;
  border: 1.5px solid #d9d9d9;
  border-radius: 24px;
  background: #ffffff;
  color: #1f2024;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.section-heading {
  width: min(100%, 900px);
  margin: 0 auto 80px;
}

.section-heading--center {
  text-align: center;
}

.section-heading__title {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  margin: 0 0 12px;
  color: #1f2024;
  font-size: 30px;
  line-height: 46px;
  font-weight: 700;
}

.section-heading__support {
  margin: 0;
  color: #1f2024;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(28px, 3vw, 34px);
  font-weight: 400;
}

.featured-products {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.featured-products__item {
  width: 100%;
  max-width: min(760px, 100%);
  margin-bottom: 30px;
}

.featured-product {
  display: grid;
  gap: 22px;
  width: 100%;
  align-items: start;
}

.featured-products__item:hover .featured-product__media,
.featured-products__item:focus-within .featured-product__media {
  opacity: 0.9;
}

.featured-product__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.22 / 1;
  padding: 18px;
  border: 1.5px solid #d9d9d9;
  background: #f4f4f4;
  transition: opacity 600ms ease;
}

.featured-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.featured-product__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.featured-product__name {
  display: block;
  color: #044040;
  font-size: clamp(22px, 3vw, 26px);
  line-height: clamp(30px, 4vw, 34px);
  font-weight: 700;
  text-transform: none;
}

.featured-product__subtitle,
.featured-product__price {
  display: block;
  color: #044040;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: clamp(22px, 2.4vw, 26px);
  font-weight: 400;
}

.featured-product__subtitle {
  max-width: 100%;
  white-space: normal;
}

.editorial-section--products {
  padding-top: 60px;
  padding-bottom: 120px;
}

.contact-band {
  margin-top: 20px;
  background: #8c1f28;
  padding-left: var(--editorial-edge-space);
  padding-right: var(--editorial-edge-space);
}

.contact-band .editorial-shell {
  width: min(100%, var(--editorial-contact-shell-width));
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 50px;
  align-items: start;
  padding-top: clamp(90px, 10vw, 130px);
  padding-bottom: clamp(96px, 11vw, 140px);
}

.contact-band__copy {
  max-width: 420px;
}

.contact-band__title {
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 36px);
  line-height: clamp(42px, 5vw, 50px);
  font-weight: 700;
}

.contact-band__support {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.contact-band__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.contact-band__field {
  display: grid;
  gap: 10px;
}

.contact-band__field--full {
  grid-column: 1 / -1;
}

.contact-band__field label {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-band__field input,
.contact-band__field textarea,
.editorial-footer__form input {
  width: 100%;
  padding: 21px 20px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  background: #fff;
  color: #1a1b1f;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  text-align: left;
}

.contact-band__field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-band__field input:focus,
.contact-band__field textarea:focus,
.editorial-footer__form input:focus {
  border-color: rgba(26, 27, 31, 0.24);
}

.contact-band__submit,
.editorial-footer__form button {
  border: 0;
  border-radius: 0;
  padding: 12px 25px;
  background: #1a1b1f;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.contact-band__submit {
  justify-self: start;
}

.contact-band__submit:hover,
.contact-band__submit:focus-visible,
.editorial-footer__form button:hover,
.editorial-footer__form button:focus-visible {
  background: rgba(26, 27, 31, 0.92);
}

.site-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-height: 58px;
  padding: 0 18px 0 68px;
  border-radius: 14px;
  background: rgba(140, 31, 40, 0.08);
  color: #8c1f28;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  transition: color 240ms ease;
}

.site-cta__fill {
  position: absolute;
  top: 6px;
  left: 8px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 50px;
  height: calc(100% - 12px);
  padding-left: 17px;
  border-radius: 12px;
  background: #8c1f28;
  transition:
    left 560ms cubic-bezier(0.22, 1, 0.36, 1),
    width 560ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-cta__arrow-track,
.site-cta__label-track {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.site-cta__arrow-track {
  width: 16px;
  height: 16px;
}

.site-cta__label-track {
  position: relative;
  z-index: 1;
  height: 20px;
}

.site-cta__arrow,
.site-cta__label {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-cta__arrow {
  color: #ffffff;
  transition-duration: 210ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.site-cta__arrow--base {
  transition-delay: 210ms;
}

.site-cta__arrow-icon {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-cta__arrow--hover {
  transform: translateX(-150%);
}

.site-cta__label--hover {
  transform: translateY(140%);
}

.site-cta--raise .site-cta__arrow--base {
  transform: translateX(150%);
  transition-delay: 0ms;
}

.site-cta--raise .site-cta__label--base {
  transform: translateY(-140%);
}

.site-cta--raise .site-cta__arrow--hover {
  transform: translateX(0);
  transition-delay: 210ms;
}

.site-cta--raise .site-cta__label--hover {
  transform: translateY(0);
}

.site-cta:hover,
.site-cta:focus-visible {
  color: #f2f2f2;
}

.site-cta:hover .site-cta__fill,
.site-cta:focus-visible .site-cta__fill {
  left: 8px;
  width: calc(100% - 16px);
  border-radius: 12px;
}

.featured-product__cta {
  margin-top: 10px;
  background: rgba(4, 64, 64, 0.08);
  color: #044040;
}

.featured-product__cta .site-cta__fill {
  background: #044040;
}

.editorial-footer__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.page--home .editorial-footer__inner {
  padding-top: 0;
}

.editorial-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0 24px;
  border-bottom: 1px solid rgba(26, 27, 31, 0.08);
  text-align: left;
}

.editorial-footer__top p {
  margin: 0;
  color: #050505;
  font-size: 13px;
  line-height: 1.35;
}

.editorial-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.editorial-footer__social a,
.editorial-footer__social a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  width: 18px;
  height: 18px;
  text-decoration: none;
}

.editorial-footer__social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #050505;
}

.editorial-footer__legal {
  max-width: 1180px;
  margin: 18px auto 0;
  color: rgba(26, 27, 31, 0.42);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.editorial-footer__hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: end;
  margin-top: 30px;
  text-align: center;
}

.editorial-footer__mega-brand,
.editorial-footer__mega-brand:visited {
  display: block;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  color: #050505;
  font-size: clamp(129px, 19vw, 309px);
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.page--home .editorial-footer__mega-brand,
.page--home .editorial-footer__mega-brand:visited {
  justify-self: center;
  color: #8c1f28;
  font-size: clamp(129px, 19vw, 309px);
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.editorial-footer__mega-brand::after {
  content: "TM";
  display: inline-block;
  margin-left: 0.06em;
  vertical-align: top;
  font-size: 0.15em;
  line-height: 1;
  letter-spacing: 0;
}

.editorial-footer__actions {
  display: grid;
  gap: 12px;
  padding-bottom: 6px;
}

.editorial-footer__cta,
.editorial-footer__cta:visited {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  min-height: 49px;
  padding: 7px 10px 7px 13px;
  border-radius: 9px;
  color: #050505;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-footer__cta--light {
  background: rgba(255, 255, 255, 0.78);
}

.editorial-footer__cta--dark,
.editorial-footer__cta--dark:visited {
  background: #050505;
  color: #fff;
}

.page--home .editorial-footer__cta--dark,
.page--home .editorial-footer__cta--dark:visited {
  color: #fff;
}

.editorial-footer__cta span,
.editorial-footer__cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.editorial-footer__cta span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.editorial-footer__cta--dark span {
  color: #050505;
}

.editorial-footer__cta i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #050505;
  font-style: normal;
  font-size: 18px;
  transition: transform 180ms ease;
}

.editorial-footer__cta:hover i,
.editorial-footer__cta:focus-visible i {
  transform: translate(2px, -2px);
}

@keyframes idea-belt-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--idea-belt-gap) / 2)));
  }
}

.editorial-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: auto;
  margin-bottom: 0;
  padding: 12px 18px;
  border: 1px solid rgba(26, 27, 31, 0.16);
  background: #fff;
  color: #1a1b1f;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-top-link__arrow {
  color: #2c6662;
  font-size: 18px;
  line-height: 1;
}

.editorial-top-link:hover,
.editorial-top-link:focus-visible {
  border-color: rgba(26, 27, 31, 0.28);
}

@media (max-width: 991px) {
  .editorial-header {
    padding: 25px var(--editorial-edge-space);
    background: transparent;
  }

  .editorial-header__inner {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px clamp(16px, 2.8vw, 28px);
    width: fit-content;
    max-width: min(100%, 1080px);
    padding: 11px clamp(15px, 2.4vw, 22px);
  }

  .editorial-header__actions {
    gap: 0;
    margin-left: 0;
    justify-content: center;
  }

  .page--home .editorial-header__inner,
  .page--home .editorial-header__actions,
  .page--home .editorial-nav {
    justify-content: center;
  }

  .page--home .editorial-header__inner {
    width: fit-content;
    max-width: min(100%, 1080px);
    padding-left: var(--editorial-left-rail-tablet);
    padding-right: var(--editorial-left-rail-tablet);
  }

  .editorial-nav {
    gap: 10px clamp(16px, 2.8vw, 22px);
  }

  .editorial-hero__content {
    width: min(100%, 940px);
    justify-content: flex-start;
  }

  .editorial-hero__text {
    width: min(100%, 900px);
    padding: clamp(32px, 5.2vw, 58px) 0 clamp(44px, 8vw, 74px);
    margin-left: var(--editorial-left-rail-tablet);
  }

  .editorial-hero__title {
    max-width: min(100%, 814px);
  }

  .editorial-hero__lede {
    max-width: min(100%, 634px);
  }

  .editorial-hero__actions {
    margin-top: 22px;
  }

  .editorial-hero__action,
  .editorial-hero__action:visited {
    width: clamp(178px, 23vw, 206px);
    font-size: 15px;
  }

  .editorial-hero__capabilities {
    width: min(100%, 540px);
    gap: 8px 10px;
  }

  .editorial-clients-band .editorial-shell {
    width: min(100%, 1080px);
  }

  .editorial-clients-band__inner {
    width: min(100%, 900px);
    margin-left: var(--editorial-left-rail-tablet);
  }

  .editorial-clients-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .editorial-clients-card {
    width: 100%;
    min-height: 0;
  }

  .editorial-clients-band__project-title {
    font-size: clamp(30px, 4vw, 38px);
    line-height: clamp(38px, 4.8vw, 46px);
  }

  .editorial-clients-band__projects {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .redsights-projects-hero .editorial-clients-band__projects {
    grid-template-columns: 1fr;
  }

  .editorial-projects-mosaic-stack {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    gap: 28px;
  }

  .editorial-projects-mosaic {
    min-height: clamp(220px, 38vw, 300px);
    aspect-ratio: auto;
  }

  .services-showcase__inner {
    grid-template-columns: 1fr;
  }

  .services-showcase__heading {
    width: min(100%, 680px);
  }

  .services-showcase__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 310px;
  }

  .metrics-section .editorial-shell {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "eyebrow heading"
      "portrait cluster";
    gap: 34px 12px;
  }

  .metrics-section__cluster {
    min-height: 410px;
  }

  .about-studio-section__title {
    font-size: clamp(32px, 4.6vw, 46px);
  }

  .about-capability-banner {
    height: 176px;
  }

  .process-section__inner {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "eyebrow heading"
      "grid grid"
      "showreel showreel";
    gap: 34px 12px;
  }

  .process-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-showreel {
    height: 520px;
  }

  .pricing-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card--support {
    min-height: 260px;
  }

  .pricing-card--support .pricing-card__price,
  .pricing-card--support .pricing-card__description {
    position: static;
    margin-top: 34px;
  }

  .pricing-card--support .pricing-card__description {
    max-width: 36ch;
    margin-top: 24px;
  }

  .featured-products__item {
    max-width: 380px;
  }

  .editorial-section--products {
    padding-top: 44px;
  }

  .idea-belt {
    margin-top: 56px;
    transform: translateY(-64px);
  }

  .idea-belt__item {
    min-width: 190px;
    min-height: 176px;
    padding: 0 30px;
    font-size: 20px;
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-band__copy {
    max-width: 620px;
  }

  .editorial-footer__form {
    width: min(100%, 320px);
  }

  .editorial-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-footer__brand-block,
  .editorial-footer__group--follow {
    grid-column: 1 / -1;
  }

  .editorial-footer__group--follow {
    align-items: flex-start;
    text-align: left;
  }

  .editorial-footer__utility {
    justify-content: flex-start;
  }

  .editorial-footer__form input {
    width: min(100%, 330px);
  }

  .redsights-hero__inner {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .redsights-newsletter {
    align-self: stretch;
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .editorial-hero-section,
  .editorial-section,
  .editorial-footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .editorial-shell {
    text-align: center;
  }

  .editorial-header {
    padding: 25px 15px;
  }

  .editorial-header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 9px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .editorial-header__actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    align-items: center;
  }

  .editorial-nav {
    flex-wrap: wrap;
    gap: 6px clamp(10px, 3.8vw, 16px);
    justify-content: center;
  }

  [data-placeholder-ref="logo1"],
  [data-placeholder-ref="logo1"]:visited {
    font-size: clamp(21px, 6.2vw, 25px);
  }

  .editorial-nav__link {
    padding: 5px 0;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  .editorial-hero {
    min-height: clamp(724px, 100svh - 152px, 884px);
  }

  .editorial-hero__content,
  .editorial-hero__text,
  .contact-band__copy {
    width: 100%;
  }

  .editorial-hero__content {
    justify-content: center;
    text-align: center;
  }

  .editorial-hero__text {
    min-height: auto;
    padding: 48px 0 48px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .editorial-welcome-badge {
    justify-content: center;
  }

  .editorial-welcome-badge__text {
    justify-content: center;
  }

  .editorial-hero__actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .editorial-hero__action,
  .editorial-hero__action:visited {
    width: min(100%, 220px);
    min-width: 188px;
    max-width: none;
    font-size: 14px;
  }

  .editorial-hero__title,
  .editorial-hero__lede {
    margin-left: auto;
    margin-right: auto;
  }

  .editorial-hero__capabilities {
    width: min(100%, 500px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 44px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .space-story__heading,
  .space-story__grid {
    text-align: center;
  }

  .space-story__grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
    margin-bottom: 112px;
  }

  .featured-product__media {
    padding: 16px;
  }

  .featured-product__name {
    font-size: 22px;
    line-height: 30px;
  }

  .featured-product__body {
    align-items: center;
    text-align: center;
  }

  .featured-product__cta {
    align-self: center;
  }

  .idea-belt {
    margin-top: 40px;
    transform: translateY(-36px);
  }

  .idea-belt__item {
    min-width: 180px;
    min-height: 164px;
    padding: 0 28px;
    font-size: 19px;
  }

  .editorial-section--products {
    padding-top: 28px;
  }

  .services-showcase {
    margin-top: 80px;
    padding-top: 34px;
  }

  .services-showcase__inner {
    gap: 24px;
  }

  .services-showcase__eyebrow,
  .services-showcase__heading {
    text-align: left;
  }

  .services-showcase__cards,
  .services-showcase__panels {
    grid-template-columns: 1fr;
  }

  .metrics-section {
    margin-top: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .metrics-section .editorial-shell {
    padding-left: 15px;
    padding-right: 15px;
  }

  .metrics-section .editorial-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "portrait"
      "cluster";
    gap: 24px;
    text-align: left;
  }

  .metrics-section__cluster {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .metric-card--coral,
  .metric-card--white,
  .metric-card--black-top,
  .metric-card--black-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
  }

  .metric-card--black-top {
    min-height: 108px;
  }

  .metrics-section__portrait {
    min-height: 340px;
  }

  .about-studio-section {
    margin-top: 72px;
    padding: 64px 15px 74px;
  }

  .about-studio-section__inner {
    text-align: left;
  }

  .about-studio-section__heading {
    width: 100%;
    margin-left: 0;
  }

  .about-studio-section__title {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.04;
  }

  .about-studio-section__copy-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .about-studio-section__copy-grid p,
  .about-studio-section__copy-grid p:nth-child(2) {
    max-width: 100%;
    margin-top: 0;
    font-size: 16px;
  }

  .about-capability-banner {
    height: 144px;
    border-radius: 18px;
  }

  .about-capability-banner__track {
    gap: 16px;
    animation-duration: 15s;
  }

  .about-capability-chip {
    height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 18px;
  }

  .about-capability-chip svg {
    width: 18px;
    height: 18px;
  }

  .process-section {
    margin-top: 72px;
    padding: 54px 15px 74px;
  }

  .process-section__inner {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  .process-section__heading {
    margin-top: 24px;
    margin-left: 0;
  }

  .process-section__heading h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .process-section__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-card {
    min-height: 230px;
  }

  .process-showreel {
    height: 390px;
    border-radius: 18px;
  }

  .process-showreel__cta {
    gap: 14px;
    font-size: 15px;
  }

  .process-showreel__button {
    width: 56px;
    height: 56px;
  }

  .pricing-section {
    margin-top: 2.5cm;
    padding: 0 15px;
  }

  .pricing-panel {
    padding: 44px 18px 54px;
    border-radius: 0;
  }

  .blog-section {
    margin-top: 2.5cm;
    padding: 0 15px;
  }

  .blog-section__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-card {
    min-height: 340px;
    padding: 22px 20px;
  }

  .blog-card--linked {
    padding: 0;
  }

  .blog-card__link {
    min-height: 340px;
    padding: 22px 20px;
  }

  .blog-card__body {
    margin-top: 42px;
  }

  .redsights-hero {
    padding: 0 15px;
  }

  .redsights-hero__inner {
    min-height: 640px;
    padding: 34px 22px;
    border-radius: 0;
  }

  .redsights-hero__title {
    font-size: clamp(46px, 16vw, 72px);
  }

  .redsights-newsletter {
    padding: 20px;
  }

  .contact-section {
    margin-top: 2.5cm;
    padding: 0 15px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section__panel {
    min-height: 0;
    border-radius: 18px;
  }

  .contact-section__panel--dark {
    padding: 36px 24px 24px;
  }

  .contact-section__panel--dark::after,
  .contact-section__panel--dark .contact-section__panel-video {
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: min(42%, 196px);
    border-radius: 16px;
  }

  .contact-section__features {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .contact-person {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    margin-top: 52px;
  }

  .contact-person__copy {
    transform: none;
  }

  .contact-person__avatar {
    width: 82px;
    height: 104px;
  }

  .contact-person__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .contact-section__panel--form {
    padding: 26px 18px;
  }

  .contact-section__panel--form .contact-section__panel-video {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .page--contact {
    overflow-x: hidden;
  }

  .page--contact #contact-form-section11 .contact-section__inner {
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    min-width: 0;
  }

  .page--contact #contact-form-section11 .contact-section__panel {
    min-width: 0;
  }

  .page--contact [data-placeholder-ref="element121"].contact-section__panel--dark {
    padding: 36px 22px 30px;
  }

  .page--contact [data-placeholder-ref="element121"] .contact-person {
    top: 18px;
    right: 14px;
    width: 76px;
  }

  .page--contact [data-placeholder-ref="element121"] .contact-person__avatar {
    height: 96px;
  }

  .page--contact [data-placeholder-ref="element121"] .contact-section__title {
    width: calc(100vw - 74px);
    max-width: calc(100vw - 74px);
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.05;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .page--contact [data-placeholder-ref="element121"] .contact-section__lede {
    width: min(30ch, calc(100vw - 74px));
    max-width: min(30ch, calc(100vw - 74px));
    overflow-wrap: break-word;
  }

  .contact-form-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-form-card textarea {
    height: 170px;
  }

  .faq-section {
    margin-top: 2.5cm;
    margin-bottom: 2.5cm;
    padding: 0 15px;
  }

  .faq-section__tabs {
    gap: 8px;
  }

  .faq-tab {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .faq-item summary {
    min-height: 74px;
    padding: 0 14px 0 18px;
  }

  .faq-item summary span {
    font-size: 15px;
  }

  .faq-item p {
    margin: -8px 18px 22px;
    font-size: 14px;
  }

  .pricing-panel__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-panel__helper {
    max-width: 100%;
    margin: 0;
  }

  .pricing-panel__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-card,
  .pricing-card--support {
    min-height: 0;
  }

  .pricing-card {
    padding: 24px 18px 86px;
  }

  .pricing-card--support {
    padding-bottom: 92px;
  }

  .pricing-card__button {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }

  .pricing-card__features {
    padding-bottom: 0;
  }

  .pricing-card__features span {
    white-space: normal;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .service-card h3 {
    max-width: none;
  }

  .services-panel__header {
    padding: 0 18px;
  }

  .services-panel__chips {
    padding: 18px;
  }

  .contact-band__inner {
    padding-top: 84px;
    padding-bottom: 92px;
    text-align: center;
  }

  .contact-band__form {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-band__field--full {
    grid-column: auto;
  }

  .contact-band__submit {
    justify-self: center;
    width: min(100%, 420px);
  }

  .editorial-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .editorial-footer__brand-block {
    margin-bottom: 70px;
  }

  .editorial-footer__group {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .editorial-footer__group--follow {
    align-items: center;
    text-align: center;
  }

  .editorial-footer__utility {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }

  .editorial-footer__form {
    width: min(100%, 320px);
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .editorial-footer__form input {
    width: 100%;
  }

  .editorial-footer__form button {
    width: 100%;
    align-self: stretch;
  }

  .editorial-footer__links {
    margin-top: 20px;
  }

  .editorial-footer__top {
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .editorial-footer__social {
    margin-left: 0;
  }

  .editorial-footer__hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-top: 34px;
  }

  .editorial-footer__mega-brand,
  .editorial-footer__mega-brand:visited {
    font-size: clamp(79px, 21.5vw, 95px);
    line-height: 0.86;
    letter-spacing: -0.07em;
    white-space: nowrap;
  }

  .page--home .editorial-footer__mega-brand,
  .page--home .editorial-footer__mega-brand:visited {
    font-size: clamp(79px, 21.5vw, 95px);
    line-height: 0.86;
    letter-spacing: -0.07em;
  }

  .editorial-footer__actions {
    width: 100%;
    padding-bottom: 0;
  }

  .editorial-footer__cta,
  .editorial-footer__cta:visited {
    min-height: 48px;
    font-size: 12px;
  }

}

@media (max-width: 479px) {
  .editorial-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .editorial-hero {
    min-height: 724px;
  }

  .editorial-hero__title {
    max-width: none;
    font-size: 30px;
    line-height: 36px;
  }

  .about-studio-section__title {
    font-size: 34px;
  }

  .about-capability-banner {
    height: 132px;
  }

  .process-card__copy p {
    font-size: 15px;
  }

  .process-showreel {
    height: 340px;
  }

  .pricing-panel__title {
    font-size: 34px;
  }

  [data-placeholder-ref="title14"],
  [data-placeholder-ref="faq2"] {
    font-size: 34px;
  }

  .pricing-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .editorial-welcome-badge {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .editorial-welcome-badge__mark {
    font-size: 17px;
  }

  .editorial-welcome-badge__brand {
    font-size: 16px;
  }

  .editorial-hero__lede {
    max-width: 372px;
    font-size: 13px;
    line-height: 23px;
  }

  .editorial-hero__capabilities {
    gap: 8px;
  }

  .editorial-capability {
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .editorial-capability__label {
    font-size: 12px;
    line-height: 16px;
  }

  .editorial-clients-band {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .editorial-clients-band__inner {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .editorial-clients-band__topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .editorial-clients-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .editorial-clients-card {
    width: 100%;
    min-height: 0;
  }

  .editorial-clients-band__projects {
    margin-top: 72px;
    text-align: left;
  }

  .editorial-projects-summary {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }

  .editorial-projects-summary [data-placeholder-ref="text3"],
  .editorial-projects-summary [data-placeholder-ref="title2"],
  .editorial-projects-summary [data-placeholder-ref="text4"] {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .editorial-projects-mosaic-stack {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    gap: 24px;
  }

  .editorial-clients-band__project-title {
    font-size: 30px;
    line-height: 38px;
  }

  .editorial-clients-band__project-copy {
    font-size: 15px;
    line-height: 28px;
  }

  .editorial-projects-mosaic {
    min-height: 220px;
    aspect-ratio: auto;
  }

  .editorial-projects-mosaic__brand {
    font-size: 24px;
    padding: 8px 12px;
  }

  .editorial-projects-mosaic__brand--secondary {
    min-width: 0;
    max-width: calc(100% - 24px);
    font-size: 24px;
  }

  .editorial-projects-mosaic__brand--stockhandle {
    min-width: 0;
    max-width: calc(100% - 24px);
    font-size: 24px;
  }

  .space-story__title {
    font-size: 30px;
    line-height: 40px;
  }

  .space-story__support {
    font-size: 16px;
    line-height: 28px;
  }

  .idea-belt {
    transform: translateY(-20px);
  }

  .idea-belt__item {
    min-width: 150px;
    min-height: 138px;
    padding: 0 22px;
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading__title {
    font-size: 26px;
    line-height: 36px;
  }

  .section-heading__support {
    font-size: 15px;
    line-height: 26px;
  }

  .featured-products__item {
    max-width: 100%;
  }

  .featured-product__media {
    padding: 14px;
  }

  .featured-product__name {
    font-size: 18px;
    line-height: 24px;
  }

  .featured-product__subtitle,
  .featured-product__price {
    font-size: 11px;
    line-height: 20px;
  }

  .contact-band__title {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-band__support {
    font-size: 15px;
    line-height: 26px;
  }

  .contact-band__field input,
  .contact-band__field textarea,
  .editorial-footer__form input {
    padding: 18px 16px;
  }

  .site-cta {
    min-height: 52px;
    padding: 0 16px 0 62px;
    font-size: 14px;
  }

  .site-cta__fill {
    width: 46px;
    padding-left: 15px;
  }

  .editorial-cart.site-cta {
    min-height: 52px;
  }
}

@media (max-width: 1100px) {
  .results-wall__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .results-card--featured,
  .results-card--profile,
  .results-card--quote,
  .results-card--tall,
  .results-card--profile-bottom,
  .results-wall__rail {
    grid-column: auto;
    grid-row: auto;
  }

  .results-card--featured {
    min-height: 0;
  }

  .results-wall__rail {
    display: none;
  }
}

@media (max-width: 960px) {
  [data-placeholder-ref="element45"],
  [data-placeholder-ref="element53"] {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .results-wall {
    margin-top: 72px;
    padding: 0 15px;
  }

  .results-wall__header {
    margin-bottom: 24px;
  }

  .results-wall__eyebrow {
    font-size: 15px;
  }

  .results-wall__support {
    font-size: 16px;
  }

  .results-wall__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .results-card--featured,
  .results-card--quote,
  .results-card--profile {
    padding: 18px;
  }

  .results-card--profile {
    gap: 12px;
  }

  .results-card__avatar {
    width: 54px;
    height: 54px;
  }

  .results-card__quote {
    max-width: 100%;
    font-size: 24px;
  }

  .results-card__quote--light {
    font-size: 18px;
    -webkit-line-clamp: 7;
  }

  .results-card__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

[data-placeholder-ref="text4"],
[data-placeholder-ref="text9"],
[data-placeholder-ref="text10"],
[data-placeholder-ref="text11"],
[data-placeholder-ref="text18"],
[data-placeholder-ref="text24"],
[data-placeholder-ref="text30"] {
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
}

[data-placeholder-ref="text55"],
[data-placeholder-ref="text56"],
[data-placeholder-ref="text58"],
[data-placeholder-ref="text59"],
[data-placeholder-ref="text60"],
[data-placeholder-ref="text64"] {
  font-weight: 700 !important;
}

.page--article .article-header {
  position: sticky;
  top: 3px;
  z-index: 40;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(247, 247, 242, 0.88);
  backdrop-filter: blur(16px);
}

.page--article .article-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.page--article .article-header__actions {
  display: contents;
}

.page--article .article-header__nav {
  grid-column: 2;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 28px);
}

.page--article .article-header__cta {
  grid-column: 3;
  justify-self: end;
  margin-left: 0;
}

@media (max-width: 1100px) {
  .page--article .article-header {
    padding: 14px 16px;
  }

  .page--article .article-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page--article .article-menu-toggle {
    grid-column: 2;
    display: inline-grid;
  }

  .page--article .article-header__actions {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 4vw, 48px);
    left: clamp(18px, 4vw, 48px);
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
  }

  .page--article.nav-open .article-header__actions {
    display: grid;
  }

  .page--article .article-header__nav {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .page--article .article-header__cta {
    grid-column: auto;
    justify-self: stretch;
  }
}

.page--redsights-article-split {
  background: #f2f2f2;
  color: #101010;
}

.page--redsights-article-split .editorial-nav__link {
  text-transform: uppercase;
}

.split-article-page {
  display: flow-root;
}

.split-article-hero {
  margin-top: var(--header-first-section-gap);
  padding: 0 var(--editorial-edge-space) 2.5cm;
}

.split-article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.96fr);
  gap: clamp(30px, 3.2vw, 44px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-right: var(--editorial-left-rail);
  padding-left: var(--editorial-left-rail);
  box-sizing: border-box;
}

.split-article-hero__media {
  position: sticky;
  top: clamp(92px, 8vw, 116px);
  align-self: start;
  height: calc(100vh - clamp(132px, 13vw, 168px));
  min-height: 430px;
  max-height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #050505;
}

.split-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.split-article-copy {
  min-width: 0;
  padding-bottom: 32vh;
}

.split-article-copy__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  color: rgba(16, 16, 16, 0.66);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.split-article-copy__meta span {
  color: #101010;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-article-copy__title {
  max-width: none;
  margin-top: 0;
  color: #050505;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.split-article-copy__lede {
  max-width: 58ch;
  margin-top: 26px;
  color: #161616;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  font-weight: 400;
}

.split-article-copy__divider {
  height: 1px;
  margin: 34px 0 48px;
  background: rgba(0, 0, 0, 0.1);
}

.split-article-copy__section {
  display: grid;
  gap: 12px;
  padding: 0 0 clamp(58px, 7vw, 92px);
}

.split-article-copy__section h2 {
  max-width: 24ch;
  margin: 0;
  color: #101010;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.03;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.split-article-copy__section p {
  max-width: 58ch;
  margin: 0;
  color: rgba(16, 16, 16, 0.7);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 400;
}

@media (max-width: 991px) {
  .split-article-hero__inner {
    grid-template-columns: 1fr;
    padding-right: var(--editorial-left-rail-tablet);
    padding-left: var(--editorial-left-rail-tablet);
  }

  .split-article-hero__media {
    position: relative;
    top: auto;
    height: clamp(320px, 62vw, 520px);
    min-height: 0;
  }

  .split-article-copy {
    padding-bottom: 0;
  }

  .split-article-copy__title {
    font-size: clamp(42px, 9vw, 60px);
  }
}

@media (max-width: 767px) {
  .split-article-hero {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .split-article-hero__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .split-article-copy {
    max-width: 100%;
    min-width: 0;
  }

  .split-article-copy__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .split-article-copy__title {
    width: min(18ch, calc(100vw - 30px));
    max-width: min(18ch, calc(100vw - 30px));
    font-size: clamp(30px, 8vw, 32px);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .split-article-copy__lede {
    width: min(34ch, calc(100vw - 30px));
    max-width: min(34ch, calc(100vw - 30px));
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .split-article-copy__section p {
    font-size: 17px;
  }
}

:is(.page--projects, .page--home) .projects-testimonials-section {
  display: grid;
  grid-template-columns: calc(410px - var(--editorial-edge-space) - 24px) minmax(0, calc(58ch + 5cm));
  grid-template-areas:
    "eyebrow title"
    ". support"
    "grid grid";
  gap: 10px 24px;
  margin-top: 2.5cm;
  margin-bottom: 2.5cm;
  align-items: start;
  box-sizing: border-box;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text168"] {
  grid-area: eyebrow;
  margin-left: calc(max(0px, (100vw - 1280px) / 2 - var(--editorial-edge-space)) + var(--editorial-left-rail));
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="title21"] {
  grid-area: title;
  max-width: 100%;
  margin: 0;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text170"] {
  grid-area: support;
  width: 100%;
  max-width: calc(58ch + 5cm);
  margin: 12px 0 0;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-wall__grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 108px 356px 132px;
  gap: 6px;
  align-items: stretch;
  justify-self: start;
  width: min(calc(100vw - (2 * var(--editorial-edge-space))), 1200px);
  margin-left: max(0px, calc(50vw - var(--editorial-edge-space) - 600px));
  margin-top: 1.2cm;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  color: #030303;
  box-shadow: none;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__surface {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: #fbfbfb;
  box-shadow: none;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__surface--dark {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, #1c1c1c 0%, #111 58%, #070707 100%);
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card > :not(.results-card__surface) {
  position: relative;
  z-index: 1;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--reference-quote {
  flex-direction: column;
  padding: 24px 24px 22px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-left {
  grid-column: 1;
  grid-row: 3;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-top {
  grid-column: 2;
  grid-row: 1;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-center {
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-content: space-between;
  gap: 12px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-right {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding-top: 20px;
  padding-bottom: 18px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-right {
  grid-column: 3;
  grid-row: 3;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--rating {
  grid-column: 4;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  padding: 23px 25px;
  color: #f7f7f7;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--proof {
  grid-column: 4;
  grid-row: 2 / span 2;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 24px 29px;
  color: #f7f7f7;
  box-shadow: 0 38px 72px rgba(0, 0, 0, 0.2);
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card--reference-profile {
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 23px 24px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__quote {
  max-width: none;
  margin: 0;
  overflow: visible;
  color: #050505;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(21px, 1.32vw, 24px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
  display: block;
  -webkit-line-clamp: unset;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__stars {
  margin-top: 18px;
  color: #ff8a12;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.08em;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__avatar {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 18px;
  background-color: #111;
  background-size: cover;
  background-position: center;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__avatar--compact {
  width: 60px;
  height: 60px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__avatar--james {
  background-image: url("./assets/images/pexels-cottonbro-6803517.jpg");
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__avatar--daniel {
  background-image: url("./assets/images/raul-image-site.jpeg");
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__avatar--emily {
  background-image: url("./assets/images/pexels-minan1398-771319.jpg");
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="image39"] {
  background-image: url("./assets/images/foto-depoimento-1.jpeg");
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="image40"] {
  background-image: url("./assets/images/1689199615218.jfif");
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="image41"] {
  background-color: #fff;
  background-image: url("./assets/images/mr-belga-2145.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text173"],
:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text182"],
:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text183"] {
  overflow-wrap: normal;
  font-weight: 400;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-break: normal;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text173"] {
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.18;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text182"] {
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.18;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text183"] {
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.18;
  text-wrap: balance;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__person-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__person-copy strong,
:is(.page--projects, .page--home) .projects-testimonials-section .results-card__person-copy span {
  overflow: hidden;
  font-family: "IBM Plex Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__person-copy strong {
  color: #111;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 500;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__person-copy span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 16px;
  line-height: 1.08;
  font-weight: 400;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  text-align: center;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__rating-line strong {
  display: block;
  width: 100%;
  color: #f7f7f7;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__rating-line span {
  color: #f7f7f7;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__rating-line .results-card__stars {
  flex-basis: 100%;
  margin-top: 0;
  margin-left: 0;
  color: #ff8a12;
  font-size: 16px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__proof-copy {
  max-width: 24ch;
  margin: 0;
  color: #f7f7f7;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.02em;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatars {
  display: flex;
  align-items: center;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatar {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: -5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background-color: #333;
  background-size: cover;
  background-position: center;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatar:first-child {
  margin-left: 0;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatar--one {
  background-image: url("./assets/images/foto-depoimento-1.jpeg");
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatar--two {
  background-image: url("./assets/images/1689199615218.jfif");
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-avatar--three {
  background-image: url("./assets/images/mr-belga-2145.png");
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-row strong {
  color: #f7f7f7;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

:is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text189"] {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #f7f7f7;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1;
  font-weight: 700;
  text-overflow: clip;
  white-space: nowrap;
}

:is(.page--projects, .page--home) .projects-testimonials-section .results-card__review-row [data-placeholder-ref="text189"] {
  font-size: clamp(13px, 1vw, 15px);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  :is(.page--projects, .page--home) .projects-testimonials-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "support"
      "grid";
    gap: 10px;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section [data-placeholder-ref="text168"] {
    margin-left: 0;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 118px;
    transform: none;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-left {
    order: 1;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-left {
    order: 2;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-center {
    order: 3;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-top {
    order: 4;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--quote-right {
    order: 5;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--profile-right {
    order: 6;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--rating {
    order: 7;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--proof {
    order: 8;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--reference-quote,
  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--proof {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  :is(.page--projects, .page--home) .projects-testimonials-section .results-wall__grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--reference-quote,
  :is(.page--projects, .page--home) .projects-testimonials-section .results-card--proof {
    min-height: 360px;
  }
}

.editorial-home > section:first-child,
.split-article-page > section:first-child {
  margin-top: var(--header-first-section-gap);
}

#projetos {
  scroll-margin-top: var(--nav-section-scroll-offset);
}

[data-placeholder-ref="text52"],
[data-placeholder-ref="text68"],
[data-placeholder-ref="text80"],
[data-placeholder-ref="text168"] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  color: #111;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: 15px;
  line-height: 1.12;
  font-weight: 520;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: none;
}

[data-placeholder-ref="text52"] .editorial-clients-band__label-mark,
[data-placeholder-ref="text68"] .editorial-clients-band__label-mark,
[data-placeholder-ref="text80"] .editorial-clients-band__label-mark,
[data-placeholder-ref="text168"] .editorial-clients-band__label-mark {
  color: #111;
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
}

[data-placeholder-ref="text52"] .editorial-clients-band__label-text,
[data-placeholder-ref="text68"] .editorial-clients-band__label-text,
[data-placeholder-ref="text80"] .editorial-clients-band__label-text,
[data-placeholder-ref="text168"] .editorial-clients-band__label-text {
  color: #111;
  text-transform: uppercase;
}

[data-placeholder-ref="title10"],
[data-placeholder-ref="title11"],
[data-placeholder-ref="title12"],
[data-placeholder-ref="title21"] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #050505;
  font-family: "Aspekta", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
}

[data-placeholder-ref="text53"],
[data-placeholder-ref="text82"],
[data-placeholder-ref="text170"] {
  display: block;
  width: 100%;
  max-width: 58ch;
  height: auto;
  min-height: 0;
  margin: 12px 0 0;
  padding: 0;
  color: #3f3f3f;
  font-family: "Montserrat", "IBM Plex Sans", sans-serif !important;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.52;
  font-weight: 400 !important;
  letter-spacing: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .page--home [data-placeholder-ref="section4"] [data-placeholder-ref="title11"] {
    position: relative;
    top: -9px;
  }
}

@media (min-width: 992px) {
  .page--home .about-studio-section__title,
  .page--home [data-placeholder-ref="title11"],
  .page--home .process-section__heading h2,
  .page--home [data-placeholder-ref="title12"] {
    margin-top: 0;
  }

  .page--home [data-placeholder-ref="section4"] [data-placeholder-ref="title11"] {
    top: -21px;
  }
}

@media (min-width: 1101px) {
  .page--home .projects-testimonials-section {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    grid-template-columns: minmax(0, 1fr) minmax(238px, 296px) minmax(190px, 291px) minmax(480px, 595px) minmax(0, 1fr);
    grid-template-areas:
      ". eyebrow title title ."
      ". . support support ."
      ". grid grid grid .";
    gap: 10px 9px;
  }

  .page--home .projects-testimonials-section [data-placeholder-ref="text168"] {
    margin-left: 0;
  }

  .page--home .projects-testimonials-section .results-wall__grid {
    justify-self: center;
    width: min(100%, 1200px);
    margin-left: 0;
  }

  .page--home .projects-testimonials-section [data-placeholder-ref="title21"] {
    width: min(100%, 840px);
    max-width: 840px;
    margin-left: -12px;
  }

  .page--home .projects-testimonials-section [data-placeholder-ref="text170"] {
    width: min(100%, 605.5px);
    max-width: 605.5px;
    margin-left: -12px;
  }

  .page--home .services-showcase__heading {
    width: min(100%, calc(58ch + 10.1cm));
  }

  .page--home .metrics-section__heading {
    width: min(100%, calc(58ch + 7.5cm));
  }

  .page--home .about-studio-section__heading {
    width: min(100%, calc(58ch + 7.5cm));
    margin-left: calc(clamp(247px, 22vw, 305px) + 14px);
  }

  .page--home .process-section__heading {
    width: min(100%, calc(58ch + 7.5cm));
    margin-left: 14px;
  }
}

@media (max-width: 767px) {
  .page--home .blog-section__title,
  .page--home .blog-section__support {
    width: min(100%, calc(100vw - 30px));
  }

  .page--home .blog-section__title {
    font-size: clamp(25px, 6.7vw, 34px);
    white-space: nowrap;
  }

  [data-placeholder-ref="text52"],
  [data-placeholder-ref="text68"],
  [data-placeholder-ref="text80"],
  [data-placeholder-ref="text168"] {
    font-size: 14px;
  }

  [data-placeholder-ref="title10"],
  [data-placeholder-ref="title11"],
  [data-placeholder-ref="title12"],
  [data-placeholder-ref="title21"] {
    font-size: clamp(32px, 10vw, 42px);
  }

  [data-placeholder-ref="text53"],
  [data-placeholder-ref="text82"],
  [data-placeholder-ref="text170"] {
    max-width: 100%;
    font-size: 16px;
  }
}

.page--project-numbear [data-placeholder-ref="title10"] {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  font-size: 46px;
  white-space: nowrap;
}

.page--project-numbear .metrics-section__since {
  flex: 0 0 auto;
  color: #8b8b8b;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.page--project-numbear .metrics-section__project-preview.editorial-projects-mosaic {
  min-height: clamp(312px, 36vw, 442px);
}

@media (max-width: 991px) {
  .page--project-numbear [data-placeholder-ref="title10"] {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .page--project-numbear [data-placeholder-ref="title10"] {
    gap: 8px;
    font-size: 28px;
  }

  .page--project-numbear .metrics-section__since {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .page--project-numbear [data-placeholder-ref="title10"] {
    font-size: 24px;
  }
}

.project-gallery-section {
  --project-gallery-edge: max(15px, 1cm);
  margin-top: 2.5cm;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  background: #f2f2f2;
}

.project-gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  width: calc(100vw - (2 * var(--project-gallery-edge)));
  margin: 0 auto;
}

.project-gallery-section__item {
  display: block;
  width: 100%;
  aspect-ratio: 693 / 458;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.project-gallery-section__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease, filter 240ms ease;
}

.project-gallery-section__item:hover img,
.project-gallery-section__item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

.project-gallery-section__item:focus-visible {
  outline: 3px solid rgba(140, 31, 40, 0.52);
  outline-offset: 3px;
}

body.project-gallery-lightbox-open {
  overflow: hidden;
}

.project-gallery-lightbox[hidden] {
  display: none;
}

.project-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: max(20px, 1cm);
  background: rgba(0, 0, 0, 0.84);
}

.project-gallery-lightbox__image {
  display: block;
  max-width: calc(100vw - 2cm);
  max-height: calc(100svh - 2cm);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.project-gallery-lightbox__close {
  position: fixed;
  top: max(16px, 0.7cm);
  right: max(16px, 0.7cm);
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #050505;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .project-gallery-section__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


.contact-form-card select {
  appearance: none;
  cursor: pointer;
  color: #111;
  background-image: linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.7) 50%), linear-gradient(135deg, rgba(17, 17, 17, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form-card input[type="hidden"] {
  display: none;
}

.faq-section__cta,
.faq-section__cta:visited,
.construction-actions a,
.construction-actions a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.faq-section__cta,
.faq-section__cta:visited,
[data-placeholder-ref="faq4"],
[data-placeholder-ref="faq4"]:visited {
  display: flex;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  color: #F2F2F2 !important;
}

.redsights-newsletter--home {
  width: min(100%, 760px);
  margin: 34px auto 0;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.construction-actions .editorial-hero__action--secondary,
.construction-actions .editorial-hero__action--secondary:visited {
  background: rgba(17, 17, 17, 0.08);
  color: #111;
}

.construction-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 560px);
}

.construction-mini-grid span {
  min-height: 72px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.article-action-card {
  margin: 48px 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.article-action-card h2,
.article-action-card p {
  color: inherit;
}

.article-action-card a,
.article-action-card a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 720px) {
  .construction-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page--home .editorial-hero__content {
    justify-content: flex-start;
    text-align: left;
  }

  .page--home .editorial-hero__text {
    align-items: flex-start;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }

  .page--home [data-placeholder-ref="hero3"],
  .page--home [data-placeholder-ref="hero4"],
  .page--home [data-placeholder-ref="hero5"] {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }

  .page--home .editorial-welcome-badge,
  .page--home .editorial-welcome-badge__text {
    justify-content: flex-start;
  }

  .page--home .editorial-hero__actions {
    justify-content: flex-start;
    width: 100%;
  }

  .page--home [data-placeholder-ref="element6"] {
    justify-self: start;
    align-self: start;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .page--home [data-placeholder-ref="element6"] > [data-placeholder-ref="text3"],
  .page--home [data-placeholder-ref="element6"] > [data-placeholder-ref="title2"],
  .page--home [data-placeholder-ref="element6"] > [data-placeholder-ref="text4"] {
    display: block;
    width: 100%;
    max-width: 430px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }

  .page--home [data-placeholder-ref="element6"] > [data-placeholder-ref="text3"] {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .page--home [data-placeholder-ref="card5"],
  .page--home [data-placeholder-ref="card6"],
  .page--home [data-placeholder-ref="card7"] {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .page--home [data-placeholder-ref="image2"],
  .page--home [data-placeholder-ref="image49"],
  .page--home [data-placeholder-ref="image50"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page--home [data-placeholder-ref="image2"],
.page--home [data-placeholder-ref="image49"],
.page--home [data-placeholder-ref="image50"] {
  transform: scale(1.3) translateZ(0);
}

.page--home [data-placeholder-ref="card5"]:hover [data-placeholder-ref="image2"],
.page--home [data-placeholder-ref="card5"]:focus-visible [data-placeholder-ref="image2"],
.page--home [data-placeholder-ref="card6"]:hover [data-placeholder-ref="image49"],
.page--home [data-placeholder-ref="card6"]:focus-visible [data-placeholder-ref="image49"],
.page--home [data-placeholder-ref="card7"]:hover [data-placeholder-ref="image50"],
.page--home [data-placeholder-ref="card7"]:focus-visible [data-placeholder-ref="image50"] {
  transform: scale(1.42) translateZ(0);
}

@media (max-width: 767px) {
  .page--home [data-placeholder-ref="image2"],
  .page--home [data-placeholder-ref="image49"],
  .page--home [data-placeholder-ref="image50"],
  .page--home [data-placeholder-ref="card5"]:hover [data-placeholder-ref="image2"],
  .page--home [data-placeholder-ref="card5"]:focus-visible [data-placeholder-ref="image2"],
  .page--home [data-placeholder-ref="card6"]:hover [data-placeholder-ref="image49"],
  .page--home [data-placeholder-ref="card6"]:focus-visible [data-placeholder-ref="image49"],
  .page--home [data-placeholder-ref="card7"]:hover [data-placeholder-ref="image50"],
  .page--home [data-placeholder-ref="card7"]:focus-visible [data-placeholder-ref="image50"] {
    transform: none;
  }
}
