@font-face {
  font-family: "Rubrika Helvetica Neue";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/helvetica-neue-regular-37e8794310cd.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rubrika Helvetica Neue";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/helvetica-neue-medium-923b41b95dda.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rubrika Helvetica Neue";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/helvetica-neue-bold-6632cb82b8a9.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Rubrika Haas Display";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/neue-haas-55-roman-0d832a247449.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rubrika Haas Display";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/neue-haas-65-medium-4ab89854514f.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rubrika Haas Display";
  src: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/fonts/reference/neue-haas-75-bold-2fda89457066.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #faf8f5;
  --ink: #1c1d19;
  --rubrika-font-display: "Rubrika Haas Display", "Neue Haas Grotesk Display Pro", sans-serif;
  --rubrika-font-sans: "Rubrika Helvetica Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --rubrika-font-medium: var(--rubrika-font-display);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--rubrika-font-display);
  font-weight: 600;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 1200px;
  background: var(--paper);
  scroll-behavior: smooth;
  scrollbar-color: #ff4aff #fff;
  scrollbar-width: thin;
}

body {
  min-width: 1200px;
  margin: 0;
  background: var(--paper);
  font-family: var(--rubrika-font-display);
  font-weight: 600;
}

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

html.rubrika-motion-boot body {
  visibility: hidden !important;
}

.desktop-gate {
  display: none;
}

::selection {
  color: var(--ink);
  background: #ff4aff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 3px solid #fff;
  border-radius: 0;
  background: #ff4aff;
}

::-webkit-scrollbar-thumb:hover {
  background: #e83fe8;
}

.is-loading .hero__ruler {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.is-loading .hero__grid span {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.is-loading .logo,
.is-loading .navigation a,
.is-loading .availability,
.is-loading h1 > span,
.is-loading .hero__meta > span {
  opacity: 0;
  transform: translateY(18px);
}

.is-loading .logo,
.is-loading .navigation a,
.is-loading .availability {
  transform: translateY(-14px);
}

.is-loading .availability {
  transform: translateY(-14px) scale(0.96);
}

.is-loading .hero__video {
  clip-path: inset(0 0 100% 0);
}

.has-crosshair-cursor,
.has-crosshair-cursor * {
  cursor: none;
}

.crosshair-cursor {
  --cursor-x: 0px;
  --cursor-y: 0px;
  --cursor-mark-size: 20px;
  position: fixed;
  z-index: 1000;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.crosshair-cursor--visible {
  visibility: visible;
}

.crosshair-cursor--hidden {
  visibility: hidden;
}

.crosshair-cursor__line {
  position: absolute;
  display: block;
  background: rgb(51 51 51 / 10%);
  transition: background 220ms ease, opacity 180ms ease;
}

.crosshair-cursor--on-dark .crosshair-cursor__line {
  background: rgb(240 237 228 / 18%);
}

.crosshair-cursor__line--horizontal {
  top: var(--cursor-y);
  left: 0;
  width: 100%;
  height: 1px;
}

.crosshair-cursor__line--vertical {
  top: 0;
  left: var(--cursor-x);
  width: 1px;
  height: 100%;
}

.crosshair-cursor__mark {
  position: absolute;
  top: calc(var(--cursor-y) - (var(--cursor-mark-size) / 2));
  left: calc(var(--cursor-x) - (var(--cursor-mark-size) / 2));
  width: var(--cursor-mark-size);
  height: var(--cursor-mark-size);
  background:
    linear-gradient(#333333, #333333) center / 1px 20px no-repeat,
    linear-gradient(#333333, #333333) center / 20px 1px no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.crosshair-cursor--on-dark .crosshair-cursor__mark {
  background:
    linear-gradient(#f0ede4, #f0ede4) center / 1px 20px no-repeat,
    linear-gradient(#f0ede4, #f0ede4) center / 20px 1px no-repeat;
}

.crosshair-cursor--interactive .crosshair-cursor__mark {
  transform: scale(1.5);
}

.crosshair-cursor--faq {
  --cursor-mark-size: 30px;
}

.crosshair-cursor--faq .crosshair-cursor__line {
  background: rgb(141 205 184 / 15%);
}

.crosshair-cursor--faq .crosshair-cursor__mark {
  border: 1px solid rgb(141 205 184 / 70%);
  border-radius: 50%;
  background:
    linear-gradient(#1c1d19, #1c1d19) center / 1px 12px no-repeat,
    linear-gradient(#1c1d19, #1c1d19) center / 12px 1px no-repeat,
    rgb(141 205 184 / 28%);
  box-shadow: 0 0 0 3px rgb(141 205 184 / 8%);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.crosshair-cursor--faq.crosshair-cursor--interactive .crosshair-cursor__mark {
  border-color: #8dcdb8;
  background:
    linear-gradient(#1c1d19, #1c1d19) center / 1px 12px no-repeat,
    linear-gradient(#1c1d19, #1c1d19) center / 12px 1px no-repeat,
    rgb(141 205 184 / 48%);
  box-shadow: 0 0 0 5px rgb(141 205 184 / 12%);
  transform: scale(1.08);
}

.crosshair-cursor--faq-open .crosshair-cursor__mark,
.crosshair-cursor--faq-open.crosshair-cursor--interactive .crosshair-cursor__mark {
  background:
    linear-gradient(#1c1d19, #1c1d19) center / 0 0 no-repeat,
    linear-gradient(#1c1d19, #1c1d19) center / 12px 1px no-repeat,
    rgb(141 205 184 / 48%);
}

.crosshair-cursor--faq.crosshair-cursor--pressed .crosshair-cursor__mark {
  background:
    linear-gradient(#1c1d19, #1c1d19) center / 1px 10px no-repeat,
    linear-gradient(#1c1d19, #1c1d19) center / 10px 1px no-repeat,
    rgb(141 205 184 / 72%);
  box-shadow: 0 0 0 2px rgb(141 205 184 / 12%);
  transform: scale(0.9);
}

.crosshair-cursor--faq-open.crosshair-cursor--pressed .crosshair-cursor__mark {
  background:
    linear-gradient(#1c1d19, #1c1d19) center / 0 0 no-repeat,
    linear-gradient(#1c1d19, #1c1d19) center / 10px 1px no-repeat,
    rgb(141 205 184 / 72%);
}

.crosshair-cursor--loading {
  --cursor-mark-size: 48px;
  z-index: 30001;
}

.crosshair-cursor--loading .crosshair-cursor__line {
  opacity: 0;
}

.crosshair-cursor--loading .crosshair-cursor__mark,
.crosshair-cursor--loading.crosshair-cursor--interactive .crosshair-cursor__mark,
.crosshair-cursor--loading.crosshair-cursor--on-dark .crosshair-cursor__mark {
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  transform: scale(1);
  transition: none;
}

.crosshair-cursor--loading .crosshair-cursor__mark::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 62%, rgb(28 29 25 / 28%) 78%, #ff4aff 100%);
  content: "";
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  animation: case-cursor-loading 920ms linear infinite;
}

.crosshair-cursor--loading .crosshair-cursor__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

@keyframes case-cursor-loading {
  to { transform: rotate(360deg); }
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 1455px;
  padding-top: 23px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  background: var(--paper);
}

.hero__ruler {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
  z-index: 1;
}

.side-ruler {
  width: 22px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.side-ruler__svg {
  display: block;
  width: 100%;
}

.side-ruler__svg line {
  stroke: #333333;
  stroke-width: 1;
  stroke-opacity: 0.5;
  vector-effect: non-scaling-stroke;
}

.hero__top {
  position: relative;
  z-index: 3;
  width: calc(100% - 100px);
  max-width: 1821px;
  height: 457px;
  flex: 0 0 457px;
}

.hero__grid {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 19px;
  width: calc(100% - 100px);
  max-width: 1821px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__grid span {
  border-right: 1px solid rgb(225 224 221 / 80%);
  border-left: 1px solid rgb(225 224 221 / 80%);
}

.header {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 28px;
  font-family: var(--rubrika-font-medium);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.logo > span {
  color: rgb(28 29 25 / 50%);
}

.logo img {
  display: block;
  width: 80px;
  height: 80px;
  will-change: transform;
}

.logo sup {
  position: relative;
  top: -0.3em;
  font-size: 0.55em;
}

.navigation {
  display: flex;
  margin-left: 70px;
  align-items: center;
  gap: 32px;
  font-family: var(--rubrika-font-medium);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.availability {
  transition:
    opacity 180ms ease,
    scale 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navigation a {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  line-height: 1;
}

.nav-link__layer {
  grid-area: 1 / 1;
  display: inline-flex;
}

.nav-link__layer--bottom {
  color: rgba(28, 29, 25, 0.52);
}

.nav-link__char {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  transition:
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 360ms ease;
  transition-delay: calc(var(--i) * 13ms);
  will-change: transform;
}

.nav-link__layer--bottom .nav-link__char {
  opacity: 0;
  transform: translate3d(0, 105%, 0) rotate(3deg);
}

.navigation a:hover .nav-link__layer--top .nav-link__char,
.navigation a:focus-visible .nav-link__layer--top .nav-link__char {
  opacity: 0;
  transform: translate3d(0, -105%, 0) rotate(-3deg);
}

.navigation a:hover .nav-link__layer--bottom .nav-link__char,
.navigation a:focus-visible .nav-link__layer--bottom .nav-link__char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.availability {
  position: relative;
  display: flex;
  width: 239px;
  height: 56px;
  padding: 8px;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.availability__avatar,
.availability__arrow {
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  place-items: center;
  border-radius: 50%;
}

.availability__avatar {
  flex: 0 0 40px;
  object-fit: cover;
  object-position: center;
}

.availability__copy {
  display: grid;
  width: 111px;
  min-width: 111px;
  gap: 1px;
  font-family: var(--rubrika-font-medium);
  font-weight: 600;
  line-height: 1;
  transition: translate 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.availability__copy strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  background-image: linear-gradient(
    105deg,
    #1c1d19 0%,
    #1c1d19 27%,
    #8a8a84 37%,
    #f1f0eb 50%,
    #8a8a84 63%,
    #1c1d19 73%,
    #1c1d19 100%
  );
  background-position: 135% 50%;
  background-size: 280% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.availability__copy small {
  color: #9a9a98;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.availability__arrow {
  position: relative;
  flex: 0 0 40px;
  margin-left: 8px;
  color: #fff;
  background: var(--ink);
  transition: translate 420ms cubic-bezier(0.16, 1, 0.3, 1), scale 180ms ease;
}

.availability__arrow::before {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateX(-2px) rotate(-45deg);
  transition: transform 180ms ease;
}

.availability:is(:hover, :focus-visible) {
  opacity: 1;
}

.availability:is(:hover, :focus-visible) .availability__copy {
  translate: 2px 0;
}

.availability:is(:hover, :focus-visible) .availability__arrow {
  translate: 2px 0;
}

.availability:is(:hover, :focus-visible) .availability__copy strong {
  background-position: -135% 50%;
}

.availability:is(:hover, :focus-visible) .availability__arrow::before {
  transform: translateX(1px) rotate(-45deg);
}

.availability:active {
  scale: 0.985;
  transition-duration: 100ms;
}

.availability:active .availability__arrow {
  translate: 1px 0;
}

h1 {
  position: absolute;
  z-index: 1;
  top: 171px;
  left: 0;
  width: 1022px;
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-title__muted {
  color: rgba(28, 29, 25, 0.5);
}

.hero__meta {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: var(--ink);
  line-height: 1.1;
}

.hero__coordinates {
  color: rgba(28, 29, 25, 0.5);
  font-family: var(--rubrika-font-medium);
  font-size: 12px;
  font-weight: 600;
}

.hero__coordinates span {
  display: inline-block;
  min-width: 4ch;
  color: inherit;
}

.hero__scroll,
.hero__sign {
  font-family: var(--rubrika-font-medium);
  font-size: 14px;
  font-weight: 600;
}

.hero__scroll-arrow {
  display: inline-block;
  width: 9px;
  height: 5px;
  margin-left: 3px;
  vertical-align: middle;
}

.hero__sign {
  justify-self: end;
}

.hero__video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 966px;
  flex: 0 0 966px;
  overflow: hidden;
  background: #ffe81b;
}

.hero__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, -64px, 0) scale(1.1);
  transform-origin: center;
  will-change: transform;
}

.introduction {
  position: relative;
  width: 100%;
  height: 970px;
  overflow: hidden;
  background: var(--paper);
}

.introduction__ruler {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
}

.introduction__grid {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 19px;
  width: calc(100% - 100px);
  max-width: 1921px;
  height: calc(75% + 10px);
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.introduction__grid span {
  background: #e4ccea26;
}

.introduction__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 100px);
  max-width: 1921px;
  height: 100%;
  margin: 0 auto;
}

.introduction__axis,
.introduction__axis-trigger {
  position: absolute;
  top: 75%;
  left: 50%;
  width: calc(100% - 100px);
  max-width: 1921px;
  height: 22px;
  transform: translateX(-50%);
  pointer-events: none;
}

.introduction__axis-trigger {
  z-index: 0;
  opacity: 0;
}

.introduction__axis {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 19px;
}

.introduction__axis .introduction__axis-line {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff4aff;
  transform-origin: center;
}

.introduction__axis span,
.introduction__axis-gap::before,
.introduction__axis-gap::after {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 1px;
  height: 22px;
  background: #ff4aff;
  content: "";
}

.introduction__axis-start {
  left: 0;
}

.introduction__axis-end {
  right: 0;
}

.introduction__axis-gap {
  position: relative !important;
  height: 22px;
}

.introduction__axis-gap::before {
  left: -19px;
}

.introduction__axis-gap::after {
  left: 0;
}

.introduction__axis-gap--first {
  grid-column: 4;
}

.introduction__axis-gap--second {
  grid-column: 7;
}

.introduction__axis-gap--third {
  grid-column: 11;
}

.introduction h2 {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, calc((100vw - 100px) * 0.0335), 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.01;
}

.introduction h2 > span,
.introduction h2 > em {
  display: block;
  font-style: normal;
  white-space: nowrap;
}

.introduction h2 em {
  color: rgb(28 29 25 / 50%);
}

.introduction--animated h2 em {
  color: var(--ink);
}

.introduction h2 span em {
  display: inline;
}

.introduction__word {
  display: inline-block;
  will-change: opacity, transform;
}

.introduction__footer {
  position: absolute;
  right: 0;
  top: calc(75% + 50px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 19px;
  align-items: start;
}

.introduction__belief {
  grid-column: 1 / span 3;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.introduction__list {
  display: flex;
  flex-direction: column;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-sans);
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.introduction__list strong {
  margin-bottom: 9px;
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 700;
}

.introduction__services {
  grid-column: 7 / span 2;
}

.introduction__sectors {
  grid-column: 10 / span 3;
  justify-self: end;
  white-space: nowrap;
}

/* ==========================================================================
   Case study — seção "project-1" (Figma 286:6030)
   Escala proporcional: valores em rem (1rem = 16px na referência de 1920px),
   idêntico ao restante do site quando proportional-rem.css está ativo.
   ========================================================================== */
.case-study {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Variante do meio: sem fundo branco, deixa aparecer o papel (--paper) do site. */
.case-study--transparent {
  background: transparent;
}

.case-study__ruler {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 1.375rem; /* 22 */
  height: 100%;
}

.case-study__inner {
  position: relative;
  width: calc(100% - 6.25rem); /* gutter 100 */
  max-width: 113.8125rem; /* 1821 */
  height: 100%;
  margin: 0 auto;
}

.case-study[role="link"] {
  cursor: pointer;
}

.case-study[role="link"]:focus-visible {
  outline: 2px solid #ff4aff;
  outline-offset: -2px;
}

.case-navigation-active,
.case-navigation-active body {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.case-navigation-active .crosshair-cursor {
  opacity: 1;
  visibility: visible;
}

.case-study__info {
  position: absolute;
  z-index: 3;
  top: 3.125rem; /* 50 */
  left: 0;
  display: flex;
  width: 33.4375rem; /* 535 */
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem; /* 36 */
}

.case-study__title {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 3.75rem; /* 60 */
  font-weight: 600;
  letter-spacing: -0.075rem; /* -1.2px */
  line-height: 0.95;
  white-space: nowrap; /* quebras de linha controladas via <br>, iguais ao design */
}

.case-study__title-muted {
  color: rgb(28 29 25 / 50%);
  font-style: normal;
}

.case-study__arrow {
  display: block;
  width: 2.3125rem; /* 37 */
  height: 2.3125rem;
}

.case-study__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.case-study__description,
.case-study__date {
  margin: 0;
  font-family: var(--rubrika-font-sans);
  font-size: 1.25rem; /* 20 */
  font-weight: 500;
  letter-spacing: -0.025rem; /* -0.4px */
  line-height: 1;
}

.case-study__description {
  display: -webkit-box;
  width: 25.875rem; /* 414 */
  height: 3em;
  overflow: hidden;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.case-study__date {
  color: rgb(28 29 25 / 30%);
}

.case-study__thumbnail {
  position: absolute;
  z-index: 1;
  top: 3.125rem; /* 50 */
  bottom: 3.125rem; /* 50 */
  left: 38.75rem; /* 620 */
  width: 75rem; /* 1200 */
  overflow: hidden;
  background: #c9c4b9;
}

.case-study__thumbnail img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.case-study__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  /* O overlay continua usando as coordenadas do inner, mas tudo que ele
     desenha é rigidamente recortado pelo mesmo retângulo do thumbnail. */
  clip-path: inset(3.125rem 0 3.125rem 38.75rem);
  contain: paint;
  pointer-events: none;
}

/* Grupo que reage magneticamente ao mouse (label + preview + handles).
   As guias (crosshair) ficam fixas marcando a posição inicial. */
.case-study__magnet {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.case-study__guide {
  position: absolute;
  background: #ff4aff;
  transform: translateZ(0);
}

.case-study__guide--h-left {
  top: 29.3125rem; /* 469 */
  left: 38.75rem; /* 620 */
  width: 8.8125rem; /* 141 */
  height: 1px;
}

.case-study__guide--h-right {
  top: 29.3125rem; /* 469 */
  left: 69.4375rem; /* 1111 */
  width: 44.3125rem; /* 709 */
  height: 1px;
}

.case-study__guide--v-top {
  top: 3.125rem; /* 50 */
  left: 58.5rem; /* 936 */
  width: 1px;
  height: 13.5rem; /* 216 */
}

.case-study__guide--v-bottom {
  top: 44.125rem; /* 706 */
  left: 58.5rem; /* 936 */
  width: 1px;
  height: 13.375rem; /* 214 */
}

.case-study__label {
  position: absolute;
  top: 14rem; /* 224 */
  left: 47.5625rem; /* 761 */
  padding: 0.375rem 0.75rem; /* 6 12 */
  margin: 0;
  color: #fff;
  font-size: 0.75rem; /* 12 */
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: #ff4aff;
}

.case-study__preview {
  position: absolute;
  top: 16.625rem; /* 266 */
  left: 47.5625rem; /* 761 */
  width: 21.875rem; /* 350 */
  height: 27.5rem; /* 440 */
  overflow: hidden;
  border: 1px solid #ff4aff;
}

.case-study__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  will-change: transform;
}

.case-study__preview-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #7b1115 url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/case-video-fallback-b7cfb2612308.png") center / cover no-repeat;
  transform-origin: 50% 50%;
  will-change: transform;
}

.case-study__preview-video :is(iframe, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
  will-change: opacity;
}

.case-study__preview-video.is-playing :is(iframe, video) {
  opacity: 1;
}

.case-study__preview-transition-poster {
  display: none !important;
}

.case-study__handle {
  position: absolute;
  width: 0.4375rem; /* 7 */
  height: 0.4375rem;
  background: #fff;
  border: 1px solid #ff4aff;
}

.case-study__handle--tl {
  top: 16.4375rem; /* 263 */
  left: 47.375rem; /* 758 */
}

.case-study__handle--tr {
  top: 16.4375rem; /* 263 */
  left: 69.1875rem; /* 1107 */
}

.case-study__handle--bl {
  top: 43.875rem; /* 702 */
  left: 47.375rem; /* 758 */
}

.case-study__handle--br {
  top: 43.875rem; /* 702 */
  left: 69.1875rem; /* 1107 */
}

/* ==========================================================================
   Approach / process — seção "approuch" (Figma 286:6840)
   Escala proporcional em rem (1rem = 16px na referência de 1920px), igual
   ao restante do site. Container com gutter apenas à esquerda (50px): o
   conteúdo da lista de processo encosta na borda direita real, como no
   design original.
   ========================================================================== */
.approach-process {
  position: relative;
  width: 100%;
  height: 72.875rem; /* 1166 */
  overflow: hidden;
  background: var(--paper);
}

.approach-process__ruler {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 1.375rem; /* 22 */
  height: 100%;
}

.approach-process__inner {
  position: relative;
  width: calc(100% - 3.125rem); /* gutter único à esquerda: 50 */
  height: 100%;
  margin-left: auto;
}

.approach-process__heading {
  position: absolute;
  top: 3.125rem; /* 50 */
  left: 0;
  width: 65.6875rem; /* 1051 */
  margin: 0;
  color: var(--ink);
  font-size: 3.75rem; /* 60 */
  font-weight: 600;
  letter-spacing: -0.075rem; /* -1.2px */
  line-height: 0.95;
}

.approach-process__heading span {
  display: inline;
}

.approach-process__heading-muted {
  color: rgb(28 29 25 / 50%);
}

.approach-process__column {
  position: absolute;
  top: 14.375rem; /* 230 */
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-process__lede {
  width: 31.3125rem; /* 501 */
  margin: 0;
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-size: 1.625rem; /* 26 */
  font-weight: 600;
  letter-spacing: -0.0325rem; /* -0.52px */
  line-height: 0.95;
}

.approach-process__body {
  width: 28.8125rem; /* 461 */
  margin-top: 1.875rem; /* 30 */
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem; /* 20 */
  font-weight: 600;
  letter-spacing: -0.025rem; /* -0.4px */
  line-height: 1;
}

.approach-process__body p {
  margin: 0;
}

.approach-process__body p + p {
  margin-top: 1em;
}

.approach-process__body strong {
  color: inherit;
  font-weight: inherit;
}

.approach-process__astrolabe {
  position: relative;
  width: 31.3125rem; /* 501 */
  height: 31.3125rem; /* 501 */
  margin-top: 3.6875rem; /* 59 */
}

.approach-process__astrolabe-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.approach-process__list {
  position: absolute;
  top: 14.375rem; /* 230 */
  left: 41.8125rem; /* 669 */
  display: flex;
  width: 75.0625rem; /* 1201 */
  flex-direction: column;
  gap: 4.9375rem; /* 79 */
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-process__topic {
  display: flex;
  flex-direction: column;
  gap: 3.125rem; /* 50 */
}

.approach-process__topic-row {
  position: relative;
  min-height: 2.125rem; /* 34 — altura mínima do título de 48px */
}

.approach-process__topic:nth-child(1) .approach-process__topic-row {
  min-height: 12.0625rem; /* 193 */
}

.approach-process__topic:nth-child(2) .approach-process__topic-row {
  min-height: 6.4375rem; /* 103 */
}

.approach-process__topic:nth-child(3) .approach-process__topic-row,
.approach-process__topic:nth-child(4) .approach-process__topic-row {
  min-height: 5.3125rem; /* 85 */
}

.approach-process__topic-title {
  margin: 0;
  color: var(--ink);
  font-size: 3rem; /* 48 */
  font-weight: 600;
  letter-spacing: -0.06rem; /* -0.96px */
  line-height: 0.9;
  white-space: nowrap;
}

.approach-process__num {
  color: rgb(28 29 25 / 50%);
}

.approach-process__topic-body {
  position: absolute;
  top: 0;
  left: 39.5625rem; /* 633 */
  width: 31.3125rem; /* 501 */
  margin: 0;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem; /* 18 */
  font-weight: 600;
  letter-spacing: -0.0225rem; /* -0.36px */
  line-height: 1;
}

.approach-process__line {
  display: block;
  width: 100%;
  height: 1px;
  background: #8b8a87;
}

/* ========================================================================== 
   Comparison — timeline e matriz de diferenciais (Figma 1234:2427).
   ========================================================================== */
.comparison {
  position: relative;
  width: 100%;
  height: 69.1875rem; /* 1107 */
  overflow: hidden;
  background: #fff;
}

.comparison__ruler {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 1.375rem;
}

.comparison__inner {
  position: relative;
  width: calc(100% - 6.25rem);
  max-width: 113.8125rem; /* 1821 */
  height: 100%;
  margin: 0 auto;
}

.comparison__title {
  position: absolute;
  top: 5rem; /* 80 */
  left: 0;
  width: 113.75rem; /* 1820 */
  margin: 0;
  color: var(--ink);
  font-size: 4rem; /* 64 */
  font-weight: 600;
  letter-spacing: -0.08rem; /* -1.28 */
  line-height: 0.95;
}

.comparison__title em {
  color: rgb(28 29 25 / 50%);
  font-style: normal;
}

.comparison__timeline {
  position: absolute;
  top: 14.8125rem; /* 237 */
  left: 0;
  width: 100%;
  height: 11.1875rem; /* 179 */
}

.comparison__scale {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 2.5625rem; /* 41 */
  margin: 0;
  padding: 2.125rem 0 0; /* labels at y 34 */
  justify-content: space-between;
  color: rgb(28 29 25 / 20%);
  font-family: var(--rubrika-font-display);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  list-style: none;
}

.comparison__scale-ruler {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2.625rem; /* 42 */
  overflow: visible;
  pointer-events: none;
}

.comparison__scale-baseline,
.comparison__scale-tick {
  stroke: #d0d0cd;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  shape-rendering: crispEdges;
}

.comparison__scale-baseline {
  stroke: rgb(28 29 25 / 20%);
}

.comparison__track {
  --track-progress: 0%;
  --tag-position: 0%;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.4375rem; /* 39 */
}

.comparison__track--rubrika { top: 3rem; /* 48 */ }
.comparison__track--freelancer { top: 5.875rem; /* 94 */ }
.comparison__track--agency { top: 8.75rem; /* 140 */ }

.comparison__track-line {
  position: absolute;
  top: 1rem; /* 16 */
  left: 0;
  width: var(--track-progress);
  height: 0.4375rem; /* 7 */
  color: #6d1414;
  background: linear-gradient(#6d1414, #6d1414) 0 0.1875rem / 100% 1px no-repeat;
  overflow: visible;
}

.comparison__track--freelancer .comparison__track-line {
  color: #8b8a87;
  background:
    linear-gradient(#8b8a87, #8b8a87) 23.8125rem 0.1875rem / calc(100% - 23.8125rem) 1px no-repeat,
    repeating-linear-gradient(90deg, #8b8a87 0 0.1875rem, transparent 0.1875rem 0.375rem) 0 0.1875rem / 23.8125rem 1px no-repeat;
}

.comparison__track--agency .comparison__track-line {
  color: #8b8a87;
  background:
    linear-gradient(#8b8a87, #8b8a87) 16.9375rem 0.1875rem / calc(100% - 16.9375rem) 1px no-repeat,
    repeating-linear-gradient(90deg, #8b8a87 0 0.1875rem, transparent 0.1875rem 0.375rem) 7.1875rem 0.1875rem / 9.75rem 1px no-repeat,
    linear-gradient(#8b8a87, #8b8a87) 0 0.1875rem / 7.25rem 1px no-repeat;
}

.comparison__track-line::before {
  position: absolute;
  top: 0;
  left: 0.0625rem;
  width: 1px;
  height: 0.4375rem;
  background: currentColor;
  content: "";
}

.comparison__track-line::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.comparison__tag {
  position: absolute;
  top: 0;
  left: var(--tag-position);
  display: flex;
  width: 7.3125rem; /* 117 */
  height: 2.4375rem; /* 39 */
  padding: 0 0.4375rem;
  align-items: center;
  gap: 0.625rem;
  border-radius: 5rem;
  color: #8b8a87;
  font-family: var(--rubrika-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  background: rgb(139 138 135 / 25%);
  will-change: left;
}

.comparison__tag--rubrika {
  width: 6.3125rem; /* 101 */
  color: #f0ede4;
  background: #6d1414;
}

.comparison__track--agency .comparison__tag {
  width: 9.875rem; /* 158 */
  background: #e1dfdd;
}

.comparison__tag p {
  margin: 0;
}

.comparison__tag-icon {
  display: block;
  width: 1.5625rem; /* 25 */
  height: 1.5625rem;
  flex: 0 0 1.5625rem;
}

.comparison__content {
  position: absolute;
  top: 30.8125rem; /* 493 */
  left: 0;
  display: grid;
  grid-template-columns: 20.9375rem 88rem; /* 335 + 1408 */
  column-gap: 4.875rem; /* 78 */
  width: 100%;
  height: 33.375rem; /* 534 */
}

.comparison__intro {
  position: relative;
  width: 20.9375rem; /* 335 */
  height: 33.375rem;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025rem;
  line-height: 0.95;
}

.comparison__intro p { margin: 0; }
.comparison__intro p + p { margin-top: 1.25rem; }

.comparison__intro > p:not(.comparison__question) {
  font-family: var(--rubrika-font-display);
  font-weight: 600;
}

.comparison__question {
  width: 16.125rem; /* 258 */
  margin-bottom: 1.875rem !important; /* 30 */
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.0325rem;
}

.comparison__seal {
  position: absolute;
  top: 29.125rem; /* 466 */
  left: 0;
  width: 4.25rem;
  height: 4.25rem;
}

.comparison__matrix {
  width: 88rem; /* 1408 */
  min-width: 0;
}

.comparison__matrix-head,
.comparison__matrix-row {
  display: grid;
  grid-template-columns: repeat(3, 28.6875rem); /* 459 */
  column-gap: 1.875rem; /* 30 */
}

.comparison__matrix-head {
  height: 3.375rem; /* 54 */
  border-bottom: 1px solid var(--ink);
}

.comparison__matrix-head p,
.comparison__matrix-row p { margin: 0; }

.comparison__matrix-head p {
  padding-left: 2.25rem; /* 36 */
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025rem;
  line-height: 1;
}

.comparison__matrix-head p:first-child { color: var(--ink); }

.comparison__matrix-row {
  height: 6rem; /* 96 */
  align-items: center;
}

.comparison__matrix-row:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.comparison__matrix-row p {
  position: relative;
  font-family: var(--rubrika-font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025rem;
  line-height: 1;
}

.comparison__yes {
  padding-left: 6rem; /* text x 96 */
  color: var(--ink);
}

.comparison__no {
  padding-left: 6.25rem; /* text x 100 */
  color: rgb(28 29 25 / 50%);
}

.comparison__yes::before,
.comparison__no::before {
  position: absolute;
  top: 50%;
  left: 2.375rem; /* 38 */
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.comparison__yes::before {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/comparison-check-a5cd912d927e.svg");
}

.comparison__no::before {
  background-image: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/comparison-cross-f3673e8303b9.svg");
}

.comparison__timeline::after {
  position: absolute;
  top: 13.5625rem; /* 217 */
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgb(28 29 25 / 10%);
  content: "";
  transform: translateX(-50%);
}

/* ==========================================================================
   Testimonials — carrossel "testimunials-1/2/3" (Figma 286:7277, 401:1072,
   401:1099). Fundo e barra de progresso são full-bleed (0 a 1920); o resto
   do conteúdo respeita o gutter simétrico de 50px de cada lado, igual ao
   hero/case-study.
   ========================================================================== */
.testimonials {
  position: relative;
  width: 100%;
  height: 60.625rem; /* 970 */
  overflow: hidden;
  background: #1c1d19;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: transform, opacity;
}

.testimonials__bg-img.is-active {
  opacity: 1;
}

.testimonials__bg::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgb(0 0 0 / 35%), rgb(0 0 0 / 0%) 40%);
  content: "";
}

.testimonials__progress {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.testimonials__progress-track,
.testimonials__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.testimonials__progress-track {
  width: 100%;
  background: rgb(240 237 228 / 50%);
}

.testimonials__progress-fill {
  width: 100%;
  background: #f0ede4;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  will-change: transform;
}

.testimonials__inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 6.25rem); /* gutter 100 */
  max-width: 113.75rem; /* 1820 */
  height: 100%;
  margin: 0 auto;
}

.testimonials__content {
  position: absolute;
  top: 3.125rem; /* 50 */
  left: 0;
  display: flex;
  width: 34.8125rem; /* 557 */
  flex-direction: column;
  align-items: flex-start;
  gap: 7.3125rem; /* 117 */
}

.testimonials__quote {
  display: grid;
  width: 100%;
}

.testimonials__quote-block {
  grid-area: 1 / 1;
  margin: 0;
  color: #f0ede4;
  font-size: 2.5rem; /* 40 */
  font-weight: 600;
  letter-spacing: -0.05rem; /* -0.8px */
  line-height: 0.9;
  opacity: 0;
  transform: translateY(0.625rem);
  will-change: transform, opacity;
}

.testimonials__quote-block.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.testimonials__quote-muted {
  color: rgb(240 237 228 / 50%);
}

.testimonials__logo {
  position: relative;
  height: 3.6625rem; /* 58.6 */
}

.testimonials__logo-img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  opacity: 0;
  transform: translateY(0.625rem);
  will-change: transform, opacity;
}

.testimonials__logo-img.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.testimonials__logo-img[data-slide="0"] { width: 9.626rem; }
.testimonials__logo-img[data-slide="1"] { width: 10.25rem; }
.testimonials__logo-img[data-slide="2"] { width: 15.875rem; }

.testimonials__slider {
  position: absolute;
  top: 3.125rem; /* 50 */
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.875rem; /* 30 */
}

.testimonials__arrow {
  display: block;
  width: 2rem; /* 32 */
  height: 2rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.testimonials__arrow:hover {
  opacity: 0.72;
}

.testimonials__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonials__counter {
  position: relative;
  margin: 0;
  color: #f0ede4;
  font-size: 4rem; /* 64 */
  font-weight: 600;
  letter-spacing: -0.08rem; /* -1.28px */
  line-height: 0.95;
  text-align: center;
  white-space: nowrap;
}

.testimonials__counter-muted {
  color: rgb(240 237 228 / 50%);
}

.testimonials__counter [data-counter-current] {
  display: inline-block;
  transform-origin: 50% 50%;
  will-change: transform;
}

.testimonials__name-photos {
  position: absolute;
  top: 50.25rem; /* 804 */
  left: 0;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

.testimonials__author {
  position: relative;
  width: 24.5625rem; /* 393 */
  height: 2.75rem; /* 44 */
}

.testimonials__author-block {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #f0ede4;
  font-size: 1.625rem; /* 26 */
  font-weight: 600;
  letter-spacing: -0.0325rem; /* -0.52px */
  line-height: 0.95;
  opacity: 0;
  transform: translateY(0.625rem);
  will-change: transform, opacity;
}

.testimonials__author-block.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.testimonials__author-role {
  color: rgb(240 237 228 / 50%);
}

.testimonials__photos {
  display: flex;
  align-items: center;
  gap: 1.125rem; /* 18 */
}

.testimonials__photo {
  position: relative;
  display: block;
  width: 7.25rem; /* 116 */
  height: 7.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 220ms ease;
}

.testimonials__photo.is-active {
  opacity: 1;
}

.testimonials__photo:hover {
  opacity: 0.7;
}

.testimonials__photo.is-active:hover {
  opacity: 1;
}

.testimonials__photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials__photo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.625rem; /* 122 — bem rente à foto (116), só o espaço do stroke */
  height: 7.625rem;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
  transition: opacity 180ms ease;
}

.testimonials__photo.is-active .testimonials__photo-ring {
  opacity: 1;
}

.testimonials__photo-ring-track {
  fill: none;
  stroke: rgb(240 237 228 / 25%);
  stroke-width: 2;
}

.testimonials__photo-ring-fill {
  fill: none;
  stroke: #f0ede4;
  stroke-width: 2;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  will-change: stroke-dashoffset;
}

/* ========================================================================== 
   About — equipe + ticker de clientes (Figma 1234:4526)
   ========================================================================== */
.about-studio {
  position: relative;
  width: 100%;
  height: 60.625rem; /* 970 */
  overflow: hidden;
  background: #fff;
  display: none;
}

.about-studio__ruler {
  position: absolute;
  z-index: 5;
  inset: 0 auto 0 0;
  width: 1.375rem;
}

.about-studio__inner {
  position: relative;
  width: calc(100% - 6.25rem);
  max-width: 113.8125rem;
  height: 100%;
  margin: 0 auto;
}

.about-studio__visual {
  position: absolute;
  top: 3.125rem;
  left: 0;
  width: 52.1875rem; /* 835 */
  height: 54.375rem; /* 870 */
  overflow: hidden;
  background: #300b0b;
}

.about-studio__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.06);
  will-change: transform, opacity, mask-position, -webkit-mask-position;
}

.about-studio__portrait.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-studio__portrait > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-studio__tabs {
  position: absolute;
  z-index: 3;
  bottom: 1.5625rem;
  left: 1.5625rem;
  display: flex;
  gap: 0.75rem;
}

.about-studio__tab {
  position: relative;
  width: 4.875rem;
  height: 4.875rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-studio__tab:hover,
.about-studio__tab.is-active {
  opacity: 1;
}

.about-studio__tab:active { transform: scale(0.95); }

.about-studio__tab > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.about-studio__tab svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 5.25rem;
  height: 5.25rem;
  overflow: visible;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
}

.about-studio__ring-track,
.about-studio__ring-fill {
  fill: none;
  stroke-width: 1.5;
}

.about-studio__ring-track { stroke: rgb(255 74 255 / 20%); }
.about-studio__ring-fill { stroke: #ff4aff; stroke-linecap: round; }

.about-studio__profile {
  position: absolute;
  top: 0;
  left: 55.375rem; /* absolute x 936 */
  width: 36.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(1.5rem, 0, 0);
  will-change: transform, opacity;
}

.about-studio__profile.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.about-studio__profile h2 {
  position: absolute;
  top: 3.125rem;
  left: 0;
  width: 36.25rem;
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.08rem;
  line-height: 0.95;
}

.about-studio__profile h2 em {
  color: rgb(28 29 25 / 50%);
  font-style: normal;
}

.about-studio__bio {
  position: absolute;
  top: 17.375rem;
  left: 0;
  width: 40.75rem;
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1;
}

.about-studio__bio p { margin: 0; }
.about-studio__bio p + p { margin-top: 1.25rem; }

.about-studio__profile:not([data-about-profile="0"]) .about-studio__bio {
  font-size: 1.125rem;
  letter-spacing: -0.035rem;
  line-height: 1.05;
}

.about-studio__profile:not([data-about-profile="0"]) .about-studio__bio p + p {
  margin-top: 1rem;
}

.about-studio__controls {
  position: absolute;
  z-index: 4;
  top: 3.125rem;
  right: 0;
  display: grid;
  width: 13rem;
  height: 2.875rem;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  column-gap: 1rem;
}

.about-studio__controls button {
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.about-studio__controls button:hover { transform: scale(1.08); }
.about-studio__controls button:active { transform: scale(0.92); }
.about-studio__controls img { display: block; width: 100%; height: 100%; }

.about-studio__controls p {
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.08rem;
  line-height: 0.72;
  text-align: center;
}

.about-studio__controls strong { font-weight: 600; }
.about-studio__controls span { color: rgb(28 29 25 / 50%); }

.about-studio__clients-title {
  position: absolute;
  top: 37.4375rem;
  left: 55.3125rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.0325rem;
  line-height: 0.95;
}

.about-studio__clients {
  position: absolute;
  top: 41.25rem;
  right: 0;
  width: 58.5rem;
  height: 15.6875rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

/* Moldura lateral fixa do ticker. As duas linhas usam o mesmo acabamento
   das divisórias dos cards, mas permanecem presas ao viewport enquanto o
   track infinito se move por baixo. */
.about-studio__clients::before,
.about-studio__clients::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgb(28 29 25 / 15%);
  content: "";
  pointer-events: none;
}

.about-studio__clients::before { left: 0; }
.about-studio__clients::after { right: 0; }

.about-studio__clients.is-dragging { cursor: grabbing; }

.about-studio__client-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.about-studio__client {
  position: relative;
  width: 11.7rem;
  height: 100%;
  flex: 0 0 11.7rem;
  border-left: 1px solid rgb(28 29 25 / 15%);
  color: var(--ink);
}

.about-studio__client:last-child { border-right: 1px solid rgb(28 29 25 / 15%); }

.about-studio__client small,
.about-studio__client p {
  position: absolute;
  left: 1.25rem;
  margin: 0;
  font-family: var(--rubrika-font-sans);
  font-size: 0.625rem;
  letter-spacing: -0.0125rem;
  line-height: 1;
}

.about-studio__client small {
  top: 0;
  color: rgb(28 29 25 / 50%);
  font-weight: 500;
}

.about-studio__client p {
  bottom: 0.0625rem;
  max-width: 6rem;
  font-weight: 500;
}

.about-studio__client img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  max-width: 9.25rem;
  max-height: 6.125rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ========================================================================== 
   Awards — lista interativa + vídeos (Figma 1256:997)
   ========================================================================== */
.awards {
  position: relative;
  width: 100%;
  height: 60.625rem; /* 970 */
  overflow: hidden;
  background: var(--paper);
}

.awards__ruler {
  position: absolute;
  z-index: 5;
  inset: 0 auto 0 0;
  width: 1.375rem;
}

.awards__list {
  position: absolute;
  z-index: 3;
  top: 3.125rem;
  left: 3.125rem;
  width: 40rem;
  height: 29rem;
}

.awards__item {
  position: absolute;
  left: 0;
  display: flex;
  padding: 0;
  align-items: baseline;
  gap: 1.25rem;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
  line-height: 0.9;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.awards__item:nth-child(1) { top: 0; }
.awards__item:nth-child(2) { top: 5.875rem; }
.awards__item:nth-child(3) { top: 11.75rem; }
.awards__item:nth-child(4) { top: 18.5625rem; }
.awards__item:nth-child(5) { top: 24.4375rem; }

.awards__item:is(:hover, :focus-visible) {
  opacity: 0.48;
  outline: none;
}

.awards__item.is-active,
.awards__item.is-active:is(:hover, :focus-visible) {
  opacity: 1;
}

.awards__counts {
  display: inline-flex;
  gap: 1.5rem;
  letter-spacing: 0;
}

.awards__counts i {
  font-style: normal;
}

.awards__gold { color: #f1d170; }
.awards__silver { color: #bbb; }
.awards__bronze { color: #bca084; }
.awards__gray-dark { color: #7d7d7d; }
.awards__blue { color: #1d56fd; }
.awards__ochre { color: #ab8f59; }

.awards__media {
  position: absolute;
  z-index: 1;
  top: 3.125rem;
  right: 3.125rem;
  width: 61.625rem; /* 986 */
  height: 54.375rem; /* 870 */
  overflow: hidden;
  background: #741216 url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/awards-video-fallback-8b393b5ed289.png") center / cover no-repeat;
}

.awards__video {
  --video-width: 100%;
  --video-height: 100%;

  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #741216 url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/awards-video-fallback-8b393b5ed289.png") center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  will-change: opacity, transform, clip-path;
}

.awards__video::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #741216 url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/awards-video-fallback-8b393b5ed289.png") center / cover no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

.awards__video[data-awards-video="3"] { --video-height: 121.83%; }
.awards__video[data-awards-video="4"] { --video-height: 113.34%; }

.awards__video.is-active {
  opacity: 1;
  visibility: visible;
}

.awards__player-frame {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 986px;
  height: 870px;
  transform: translate(-50%, -50%) scale(var(--awards-player-scale, 1));
  transform-origin: 50% 50%;
  pointer-events: none;
}

.awards__video :is(iframe, video) {
  position: absolute;
  inset: 50% auto auto 50%;
  width: var(--video-width, 100%);
  height: var(--video-height, 100%);
  border: 0;
  object-fit: cover;
  /* Safari/iOS pode bloquear autoplay quando o player nasce invisível. */
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.awards__video.is-playing::after {
  opacity: 0;
}

.awards__video-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  color: #fff;
  opacity: 0;
  transition: opacity 260ms ease-out 80ms;
  pointer-events: none;
}

.awards__video.is-playing .awards__video-copy {
  opacity: 1;
}

.awards__credit,
.awards__result {
  position: absolute;
  margin: 0;
  font-weight: 600;
}

.awards__credit {
  top: 1.5625rem;
  right: 1.5625rem;
  width: 15.0625rem;
  font-size: 1.25rem;
  letter-spacing: -0.025rem;
  line-height: 1;
  text-align: right;
}

.awards__credit em {
  color: rgb(255 255 255 / 80%);
  font-style: normal;
}

.awards__credit span {
  color: rgb(255 255 255 / 50%);
}

.awards__credit > .awards__copy-line,
.awards__result > .awards__copy-line {
  display: block;
  will-change: transform, opacity, clip-path;
}

.awards__credit > .awards__copy-line:first-child {
  color: #fff;
}

.awards__credit > .awards__copy-line:nth-child(2) {
  color: rgb(255 255 255 / 80%);
}

.awards__credit > .awards__copy-line:nth-child(3) {
  color: rgb(255 255 255 / 50%);
}

.awards__result {
  bottom: 1.5625rem;
  left: 1.5625rem;
  font-size: 2.5rem;
  letter-spacing: -0.05rem;
  line-height: 0.9;
}

.awards__result strong {
  color: #f1d170;
}

.awards__result span {
  color: #bbb;
}

.awards__result i {
  color: #bca084;
  font-style: normal;
}

.awards__result--behance strong { color: #1d56fd; }
.awards__result--behance span { color: #ab8f59; }
.awards__result--behance i { color: #bbb; }

.awards__result--top {
  top: 1.5625rem;
  bottom: auto;
}

.incode-header-1.incode-header-1.incode-header-1 {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  background-color: #c1c1c1;
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  cursor: help;
  height: fit-content;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .about-studio__portrait,
  .about-studio__profile,
  .about-studio__tab,
  .awards__item,
  .awards__video,
  .awards__video iframe,
  .awards__video-copy {
    transition: none;
  }
}

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

  .hero__video img {
    transform: scale(1.1) !important;
  }

  .availability__copy strong {
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
  }

  .nav-link__char {
    transition: none;
  }

  .navigation a:hover .nav-link__layer--top .nav-link__char,
    .navigation a:focus-visible .nav-link__layer--top .nav-link__char {
    opacity: 1;
    transform: none;
  }

  .navigation a:hover .nav-link__layer--bottom .nav-link__char,
    .navigation a:focus-visible .nav-link__layer--bottom .nav-link__char {
    opacity: 0;
    transform: translate3d(0, 105%, 0);
  }
}

/* Pricing plans — Figma node 71:14586 */
.pricing-plans {
  position: relative;
  width: 100%;
  height: 64.75rem;
  overflow: hidden;
  background: var(--paper);
}

.pricing-plans__ruler {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 1.25rem;
  pointer-events: none;
}

.pricing-plans__title {
  position: absolute;
  top: 3.125rem;
  left: 3.125rem;
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.pricing-plans__title em {
  color: rgb(28 29 25 / 50%);
  font-style: normal;
}

.pricing-plans__grid {
  position: absolute;
  top: 12.9375rem;
  left: 3.1875rem;
  display: grid;
  grid-template-columns: repeat(4, 26.75rem);
  gap: 2.25rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  display: grid;
  width: 26.75rem;
  height: 44.75rem;
  grid-template-rows: 5.25rem 11.375rem minmax(0, 1fr) 3.75rem;
  overflow: visible;
  background: #fff;
  color: var(--ink);
  font-family: var(--rubrika-font-sans);
}

.pricing-card--professional {
  height: 42.6875rem;
  margin-top: 2.0625rem;
  border: 0.125rem solid #8eccb7;
}

.pricing-card__recommended {
  position: absolute;
  bottom: 100%;
  left: -0.125rem;
  width: calc(100% + 0.25rem);
  height: 2.0625rem;
  margin: 0;
  padding: 0.6875rem 1.375rem 0;
  background: transparent;
  color: #6caa94;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 1.375rem;
  border-bottom: 1px solid rgb(28 29 25 / 12%);
}

.pricing-card__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card__identity h3,
.pricing-card__identity p,
.pricing-card__price,
.pricing-card h4,
.pricing-card h5,
.pricing-card ul,
.pricing-card__personalized-copy p {
  margin: 0;
}

.pricing-card__identity h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.pricing-card__identity p {
  margin-top: 0.1875rem;
  color: rgb(28 29 25 / 48%);
  font-family: var(--rubrika-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-card__price {
  flex: 0 0 auto;
  font-family: var(--rubrika-font-display);
  font-size: 2.8125rem;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-card__symbol {
  position: relative;
  display: grid;
  width: 2.625rem;
  height: 2.625rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.pricing-card__symbol--essential {
  background: #d9d5ee;
}

.pricing-card__symbol--essential::after,
.pricing-card__symbol--personalized::after {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #761418;
  content: "";
}

.pricing-card__symbol--professional {
  background: #8eccb7;
}

.pricing-card__symbol--professional img {
  width: 1.4375rem;
  height: 0.5625rem;
}

.pricing-card__symbol--enterprise {
  background: #ff4aff;
}

.pricing-card__symbol--enterprise::before,
.pricing-card__symbol--enterprise::after {
  position: absolute;
  width: 1rem;
  height: 0.125rem;
  background: #fff;
  content: "";
}

.pricing-card__symbol--enterprise::after {
  transform: rotate(90deg);
}

.pricing-card__symbol--personalized {
  background: #ececec;
}

.pricing-card__symbol--personalized::after {
  background: #a2a2a0;
}

.pricing-card__sprint {
  padding: 1.375rem;
  border-bottom: 1px solid rgb(28 29 25 / 12%);
  background: rgb(204 232 224 / 8%);
}

.pricing-card__section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-card h4 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.pricing-card__section-title span {
  padding: 0.375rem 0.6875rem;
  border-radius: 999px;
  background: #cce8e0;
  color: #367a65;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-card ul {
  padding: 0;
  list-style: none;
}

.pricing-card__sprint ul {
  display: grid;
  margin-top: 1.125rem;
  gap: 0.625rem;
}

.pricing-card__sprint li {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card__after {
  min-height: 0;
  padding: 1.375rem;
}

.pricing-card__after ul {
  display: grid;
  margin-top: 1.125rem;
  gap: 0.6875rem;
}

.pricing-card__after li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1;
}

.pricing-card__after li img {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.pricing-card__after li.is-disabled {
  color: rgb(28 29 25 / 32%);
}

.pricing-card__cta {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #ededed;
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
}

.pricing-card__cta::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #8dcdb8;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card__cta-track {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1.125rem;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.125rem;
  text-align: center;
}

.pricing-card__cta-track > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__cta-char {
  display: inline-block;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition:
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 360ms ease;
  transition-delay: calc(var(--i) * 13ms);
  will-change: transform;
}

.pricing-card__cta-track > span:last-child .pricing-card__cta-char {
  opacity: 0;
  transform: translate3d(0, 105%, 0) rotate(3deg);
}

.pricing-card__cta:hover,
.pricing-card__cta:focus-visible {
  background: #ededed;
}

.pricing-card__cta:hover::before,
.pricing-card__cta:focus-visible::before {
  transform: scaleX(1);
}

.pricing-card__cta:hover .pricing-card__cta-track > span:first-child .pricing-card__cta-char,
.pricing-card__cta:focus-visible .pricing-card__cta-track > span:first-child .pricing-card__cta-char {
  opacity: 0;
  transform: translate3d(0, -105%, 0) rotate(-3deg);
}

.pricing-card__cta:hover .pricing-card__cta-track > span:last-child .pricing-card__cta-char,
.pricing-card__cta:focus-visible .pricing-card__cta-track > span:last-child .pricing-card__cta-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.pricing-card__cta:focus-visible {
  outline: 0.125rem solid var(--ink);
  outline-offset: -0.25rem;
}

.pricing-card__personalized-copy {
  grid-row: 2 / 4;
  padding: 1.375rem;
}

.pricing-card__personalized-copy > p {
  max-width: 21.5rem;
  margin-top: 0.875rem;
  color: rgb(28 29 25 / 50%);
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  line-height: 1.13;
}

.pricing-card__call-graphic {
  position: relative;
  width: 100%;
  height: 7.5rem;
  margin: 1.25rem 0 0.875rem;
}

.pricing-card__call-graphic::before {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  left: 2.5rem;
  height: 1px;
  background: rgb(28 29 25 / 14%);
  content: "";
}

.pricing-card__call-avatar {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  border: 0.25rem solid #fff;
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.pricing-card__call-graphic span,
.pricing-card__call-graphic i,
.pricing-card__call-graphic b {
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border: 0.125rem solid #8eccb7;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.pricing-card__call-graphic span { left: 2.125rem; }
.pricing-card__call-graphic i { right: 4.5rem; width: 1.125rem; height: 1.125rem; }
.pricing-card__call-graphic b { right: 2.125rem; border-color: #ff4aff; }

.pricing-card__personalized-copy h5 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.pricing-card__personalized-copy .pricing-card__email {
  position: absolute;
  right: 1.375rem;
  bottom: 5rem;
  left: 1.375rem;
  font-size: 0.75rem;
}

.pricing-card__email a {
  color: var(--ink);
  text-underline-offset: 0.125rem;
}

/* Precision pass — medidas nativas do frame 1920 × 970 (Figma 71:14586). */
.pricing-plans__title {
  left: 3.09375rem;
  width: 33.5625rem;
}

.pricing-plans__grid {
  height: 46.8125rem;
  align-items: end;
}

.pricing-card,
.pricing-card--professional {
  display: block;
  height: 44.75rem;
  margin-top: 0;
}

.pricing-card--professional {
  border-width: 0.125rem;
}

.pricing-card__recommended {
  right: -0.125rem;
  bottom: calc(100% - 0.125rem);
  left: auto;
  display: grid;
  width: 8.9375rem;
  height: 2.1875rem;
  padding: 0;
  place-items: center;
  border: 0.125rem solid #8eccb7;
  background: rgb(142 204 183 / 14%);
  color: var(--ink);
  font-size: 1rem;
}

.pricing-card__header {
  height: 5.25rem;
  padding: 0 1.375rem;
  border-bottom-color: rgb(28 29 25 / 20%);
}

.pricing-card__identity {
  gap: 1.125rem;
}

.pricing-card__identity h3 {
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1.1;
}

.pricing-card__identity p {
  margin-top: 0;
  color: rgb(28 29 25 / 70%);
  font-size: 1rem;
  letter-spacing: -0.02rem;
  line-height: 1.1;
}

.pricing-card__price {
  font-size: 2.8125rem;
  letter-spacing: 0;
  line-height: 0.93;
}

.pricing-card__symbol {
  width: 2.4375rem;
  height: 2.4375rem;
}

.pricing-card__symbol--essential {
  background: #e4ccea;
}

.pricing-card__symbol--essential::after,
.pricing-card__symbol--personalized::after {
  width: 0.5625rem;
  height: 0.5625rem;
  border: 0.125rem solid #6d1414;
  background: transparent;
}

.pricing-card__symbol--personalized::after {
  border-color: #333;
}

.pricing-card__symbol--professional img {
  width: 1.4375rem;
  height: 0.5625rem;
}

.pricing-card__symbol--enterprise::before,
.pricing-card__symbol--enterprise::after {
  display: none;
}

.pricing-card__symbol--enterprise img {
  width: 0.8125rem;
  height: 0.8125rem;
}

.pricing-card__sprint {
  position: relative;
  height: 11.375rem;
  padding: 1.375rem;
  border-bottom: 0;
}

.pricing-card__sprint::after,
.pricing-card__after::before,
.pricing-card__personalized-copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/pricing-divider-00e4ffc22c7d.svg") center / 100% 1px no-repeat;
  content: "";
}

.pricing-card__section-title {
  min-height: 2.625rem;
}

.pricing-card h4 {
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1.1;
}

.pricing-card__section-title span {
  padding: 0.75rem 1rem;
  border: 1px solid #8eccb7;
  background: rgb(142 204 183 / 25%);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.02rem;
  line-height: 1.1;
}

.pricing-card__sprint ul {
  margin-top: 0.25rem;
  gap: 0.5rem;
}

.pricing-card__sprint li {
  color: rgb(28 29 25 / 70%);
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1;
}

.pricing-card__after {
  position: absolute;
  top: 16.625rem;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: 1.375rem;
}

.pricing-card__after::before {
  top: 0;
  bottom: auto;
}

.pricing-card__after ul {
  margin-top: 1.375rem;
  gap: 0.75rem;
}

.pricing-card__after li {
  height: 1.5rem;
  gap: 1.24625rem;
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1.1;
}

.pricing-card__after li img {
  width: 1.495625rem;
  height: 1.5rem;
}

.pricing-card__after li.is-disabled {
  color: rgb(28 29 25 / 50%);
}

.pricing-card__cta {
  position: absolute;
  right: 1.40625rem;
  bottom: 1.25rem;
  left: 1.40625rem;
  width: auto;
  height: 4rem;
}

.pricing-card__cta-track {
  height: 1.35rem;
  font-size: 1.125rem;
  letter-spacing: -0.01125rem;
  line-height: 1.35rem;
}

.pricing-card--personalized::before {
  position: absolute;
  top: 5.25rem;
  right: 0;
  left: 0;
  height: 11.375rem;
  background: rgb(237 237 237 / 20%);
  content: "";
}

.pricing-card__personalized-copy {
  position: static;
  padding: 0;
}

.pricing-card__personalized-copy::after {
  top: 16.625rem;
  bottom: auto;
}

.pricing-card__personalized-copy > h4 {
  position: absolute;
  top: 7.5625rem;
  left: 1.375rem;
}

.pricing-card__personalized-copy > p {
  max-width: none;
  color: rgb(28 29 25 / 70%);
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1.09;
}

.pricing-card__personalized-copy > p:first-of-type {
  position: absolute;
  top: 10.1875rem;
  left: 1.375rem;
  width: 19.9375rem;
  margin: 0;
}

.pricing-card__call-graphic {
  position: absolute;
  top: 18.6875rem;
  left: 50%;
  width: 11.75rem;
  height: 3.875rem;
  margin: 0;
  transform: translateX(-50%);
}

.pricing-card__call-graphic::before {
  display: none;
}

.pricing-card__call-shell {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(28 29 25 / 10%);
  border-radius: 1.9375rem;
  background: rgb(237 237 237 / 50%);
}

.pricing-card__call-shell img {
  position: absolute;
  display: block;
  z-index: 3;
}

.pricing-card__call-progress {
  position: absolute;
  z-index: 2;
  top: 1.90625rem;
  left: 3.1875rem;
  width: 5rem;
  height: 0.125rem;
  border-radius: 999px;
  background: #8dcdb8;
  box-shadow: 0 0 0.55rem rgb(141 205 184 / 38%);
  transform: scaleX(0);
  transform-origin: left center;
}

.pricing-card__call-stage {
  position: absolute;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgb(141 205 184 / 0%);
  box-shadow: 0 0 0 0 rgb(141 205 184 / 0%);
  pointer-events: none;
}

.pricing-card__call-stage--avatar {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 3.25rem;
  height: 3.25rem;
}

.pricing-card__call-stage--phone {
  top: 0.875rem;
  left: 4.6875rem;
  width: 2.125rem;
  height: 2.125rem;
}

.pricing-card__call-stage--person {
  top: 0.375rem;
  left: 8.25rem;
  width: 3.125rem;
  height: 3.125rem;
}

.pricing-card__call-line { top: 1.9375rem; left: 3.1875rem; width: 5rem; height: 1px; }
.pricing-card__call-ring { top: 0.4375rem; left: 0.4375rem; width: 3rem; height: 3rem; }
.pricing-card__call-avatar { top: 0.9375rem; left: 0.9375rem; width: 2rem; height: 2rem; border: 0; transform: none; }
.pricing-card__call-person { top: 0.5625rem; left: 8.4375rem; width: 2.75rem; height: 2.75rem; }
.pricing-card__call-person-icon { top: 1.375rem; left: 9.4375rem; width: 0.75rem; height: 1.125rem; }
.pricing-card__call-phone { top: 1.0625rem; left: 4.875rem; width: 1.75rem; height: 1.75rem; }
.pricing-card__call-phone-icon { top: 1.625rem; left: 5.4375rem; width: 0.625rem; height: 0.625rem; }
.pricing-card__call-status { top: 0.8125rem; left: 2.4375rem; width: 0.5rem; height: 0.5rem; }

.pricing-card__call-shell {
  animation: pricing-call-shell 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
}

.pricing-card__call-line {
  animation: pricing-call-line 6.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: clip-path, opacity;
}

.pricing-card__call-progress {
  animation: pricing-call-progress 6.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform, opacity;
}

.pricing-card__call-stage--avatar {
  animation: pricing-call-stage-avatar 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.pricing-card__call-stage--phone {
  animation: pricing-call-stage-phone 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.pricing-card__call-stage--person {
  animation: pricing-call-stage-person 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.pricing-card__call-ring,
.pricing-card__call-avatar {
  animation: pricing-call-avatar 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
  will-change: transform;
}

.pricing-card__call-status {
  animation: pricing-call-status 6.4s ease-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.pricing-card__call-phone,
.pricing-card__call-phone-icon {
  animation: pricing-call-phone 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
  will-change: transform;
}

.pricing-card__call-person,
.pricing-card__call-person-icon {
  animation: pricing-call-person 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes pricing-call-shell {
  0%, 100% { border-color: rgb(28 29 25 / 10%); background: rgb(237 237 237 / 50%); transform: scale(1); }
  48%, 78% { border-color: rgb(141 205 184 / 32%); background: rgb(141 205 184 / 7%); transform: scale(1.012); }
}

@keyframes pricing-call-line {
  0%, 8% { opacity: 0.25; }
  18%, 88% { opacity: 1; }
  100% { opacity: 0.25; }
}

@keyframes pricing-call-progress {
  0%, 12% { opacity: 0; transform: scaleX(0); }
  34% { opacity: 1; transform: scaleX(0.5); }
  66%, 86% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes pricing-call-stage-avatar {
  0%, 6% { border-color: transparent; background: transparent; box-shadow: 0 0 0 0 rgb(141 205 184 / 0%); transform: scale(0.92); }
  14%, 27% { border-color: rgb(141 205 184 / 72%); background: rgb(141 205 184 / 12%); box-shadow: 0 0 0 0.25rem rgb(141 205 184 / 12%); transform: scale(1); }
  38%, 100% { border-color: rgb(141 205 184 / 20%); background: transparent; box-shadow: none; transform: scale(1); }
}

@keyframes pricing-call-stage-phone {
  0%, 27% { border-color: transparent; background: transparent; box-shadow: none; transform: scale(0.82); }
  38%, 52% { border-color: #8dcdb8; background: rgb(141 205 184 / 24%); box-shadow: 0 0 0 0.25rem rgb(141 205 184 / 13%), 0 0 0.75rem rgb(141 205 184 / 28%); transform: scale(1.08); }
  62%, 100% { border-color: rgb(141 205 184 / 20%); background: transparent; box-shadow: none; transform: scale(1); }
}

@keyframes pricing-call-stage-person {
  0%, 57% { border-color: transparent; background: transparent; box-shadow: none; transform: scale(0.86); }
  68%, 84% { border-color: #8dcdb8; background: rgb(141 205 184 / 22%); box-shadow: 0 0 0 0.3rem rgb(141 205 184 / 12%), 0 0 0.9rem rgb(141 205 184 / 25%); transform: scale(1.05); }
  96%, 100% { border-color: transparent; background: transparent; box-shadow: none; transform: scale(1); }
}

@keyframes pricing-call-avatar {
  0%, 8%, 30%, 100% { transform: scale(1); }
  16%, 23% { transform: scale(1.06); }
}

@keyframes pricing-call-status {
  0%, 8%, 100% { transform: scale(0.7); opacity: 0.45; }
  15%, 25% { transform: scale(1.25); opacity: 1; }
  32%, 78% { transform: scale(1); opacity: 1; }
  86% { transform: scale(1.7); opacity: 0.2; }
}

@keyframes pricing-call-phone {
  0%, 31%, 58%, 100% { filter: none; transform: rotate(0deg) scale(1); }
  38% { filter: sepia(0.25) saturate(1.5) hue-rotate(105deg); transform: rotate(-9deg) scale(1.1); }
  44% { filter: sepia(0.25) saturate(1.5) hue-rotate(105deg); transform: rotate(9deg) scale(1.1); }
  51% { filter: sepia(0.25) saturate(1.5) hue-rotate(105deg); transform: rotate(-4deg) scale(1.05); }
}

@keyframes pricing-call-person {
  0%, 58%, 88%, 100% { filter: none; transform: scale(1); }
  68%, 80% { filter: sepia(0.25) saturate(1.7) hue-rotate(105deg); transform: scale(1.08); }
}

.pricing-card__personalized-copy h5 {
  position: absolute;
  top: 24.6875rem;
  left: 50%;
  width: 13.875rem;
  font-size: 1.625rem;
  letter-spacing: -0.0325rem;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

.pricing-card__personalized-copy > p:nth-of-type(2) {
  position: absolute;
  top: 29.375rem;
  left: 50%;
  width: 15.4375rem;
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
}

.pricing-card__personalized-copy .pricing-card__email {
  top: 35.8125rem;
  right: 1.375rem;
  bottom: auto;
  left: 1.375rem;
  width: auto;
  margin: 0;
  color: rgb(28 29 25 / 50%);
  font-size: 1rem;
  letter-spacing: -0.02rem;
  line-height: 1;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card__cta,
  .pricing-card__cta::before,
  .pricing-card__cta-char {
    transition-duration: 0.01ms;
  }

  .pricing-card__call-shell,
  .pricing-card__call-line,
  .pricing-card__call-ring,
  .pricing-card__call-avatar,
  .pricing-card__call-status,
  .pricing-card__call-progress,
  .pricing-card__call-stage,
  .pricing-card__call-phone,
  .pricing-card__call-phone-icon,
  .pricing-card__call-person,
  .pricing-card__call-person-icon {
    animation: none;
  }
}

/* Showreel — Figma node 71:14583 (frame 1920 × 1200). */
.showreel {
  position: relative;
  width: 100%;
  height: 75rem;
  overflow: hidden;
  background: #173e2c url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/showreel-poster-ad0e36541df6.jpg") center / cover no-repeat;
  color: #f0ede4;
}

.showreel__media {
  position: absolute;
  z-index: 0;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  overflow: hidden;
  background: #173e2c url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/showreel-poster-ad0e36541df6.jpg") center / cover no-repeat;
  will-change: transform;
}

.showreel__poster,
.showreel__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.showreel__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel__iframe {
  width: 144.445%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 600ms ease;
}

.showreel__media.is-playing .showreel__iframe {
  opacity: 1;
}

.showreel__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgb(0 0 0 / 66%);
  pointer-events: none;
}

.showreel__launch {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f0ede4;
  font-family: var(--rubrika-font-sans);
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  mix-blend-mode: difference;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

.showreel__launch > span {
  position: relative;
  display: inline-block;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showreel__launch > span::after {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showreel__launch:hover > span,
.showreel__launch:focus-visible > span {
  letter-spacing: 0;
  transform: translateY(-0.25rem);
}

.showreel__launch:hover > span::after,
.showreel__launch:focus-visible > span::after {
  transform: translateX(-50%) scaleX(1);
}

.showreel-overlay {
  position: fixed;
  z-index: 31000;
  inset: 0;
  overflow: hidden;
  color: #f0ede4;
}

.showreel-overlay[hidden] {
  display: none;
}

.showreel-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: #050505;
}

.showreel-overlay__media {
  position: fixed;
  z-index: 1;
  overflow: hidden;
  background: #050505 url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/showreel-poster-ad0e36541df6.jpg") center / cover no-repeat;
  will-change: top, left, width, height;
}

.showreel-overlay__poster,
.showreel-overlay__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: none;
  max-height: none;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.showreel-overlay__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-overlay__iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 180ms ease-out;
}

.showreel-overlay__media.is-loaded .showreel-overlay__iframe,
.showreel-overlay__media.is-playing .showreel-overlay__iframe {
  opacity: 1;
}

.showreel-overlay__chrome {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.showreel-overlay__close {
  position: absolute;
  border: 1px solid rgb(240 237 228 / 38%);
  background: rgb(5 5 5 / 42%);
  color: #f0ede4;
  backdrop-filter: blur(12px);
  pointer-events: auto;
  transition: border-color 300ms ease, background-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showreel-overlay__close {
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border-radius: 50%;
}

.showreel-overlay__close span::before,
.showreel-overlay__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.375rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.showreel-overlay__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.showreel-overlay__close:hover,
.showreel-overlay__close:focus-visible {
  border-color: #8dcdb8;
  background: rgb(5 5 5 / 70%);
  outline: none;
  transform: scale(1.04);
}

.showreel-is-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .showreel__iframe,
  .showreel__launch > span,
  .showreel__launch > span::after,
  .showreel-overlay__close,
  .showreel-overlay__iframe {
    transition-duration: 0.01ms;
  }
}

/* FAQ — Figma node 71:15195 (frame 1920 × 970). */
.faq {
  position: relative;
  width: 100%;
  height: 60.625rem;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.faq__ruler {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 1.25rem;
  pointer-events: none;
}

.faq__title {
  position: absolute;
  top: 3.125rem;
  left: 3.125rem;
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.faq__intro {
  position: absolute;
  top: 11.0625rem;
  left: 3.375rem;
  width: 24.625rem;
}

.faq__intro p {
  margin: 0;
}

.faq__lead {
  width: 24.625rem;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.faq__description {
  width: 21.75rem;
  margin-top: 1.625rem !important;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.faq__intro a {
  display: inline-block;
  margin-top: 1.625rem;
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.faq__intro a:hover,
.faq__intro a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.faq__list {
  position: absolute;
  top: 10.9375rem;
  left: 40.875rem;
  width: 76.0625rem;
}

.faq__item {
  position: relative;
  width: 100%;
  height: 8.1875rem;
}

.faq__item:first-child {
  height: 7.75rem;
}

.faq__item:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: url("https://www.rubrikastudio.com/wp-content/uploads/kodety/assets/faq-divider-fec596984592.svg") center / 100% 1px no-repeat;
  content: "";
  pointer-events: none;
}

.faq__question {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 2.25rem 0 0;
  grid-template-columns: 34rem 3.5rem 32.8125rem 4.5625rem 1.1875rem;
  align-items: start;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.faq__item:first-child .faq__question {
  padding-top: 0;
}

.faq__question-copy {
  display: block;
  grid-column: 1;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.faq__question-copy > span,
.faq__question-copy > strong {
  display: block;
}

.faq__question-copy > span {
  color: rgb(28 29 25 / 50%);
  font-weight: inherit;
  transition: color 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__question-copy strong {
  color: var(--ink);
  font-weight: inherit;
}

.faq__answer {
  grid-column: 3;
  width: 32.8125rem;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0.75rem);
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.faq__icon {
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  grid-column: 5;
  object-fit: contain;
  transition: transform 480ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__question:hover .faq__question-copy > span,
.faq__question:focus-visible .faq__question-copy > span {
  color: rgb(28 29 25 / 72%);
}

.faq__question:hover .faq__icon,
.faq__question:focus-visible .faq__icon {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__question:hover .faq__icon,
.faq__item.is-open .faq__question:focus-visible .faq__icon {
  transform: scaleX(1.25);
}

.faq__question:focus-visible {
  outline: 1px solid #8dcdb8;
  outline-offset: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq__question-copy > span,
  .faq__icon,
  .faq__answer {
    transition-duration: 0.01ms;
  }
}

.closing-cta {
  position: relative;
  width: 100%;
  height: 60.75rem;
  overflow: hidden;
  color: #f0ede4;
  background: #4f1111;
}

.closing-cta__grid {
  position: absolute;
  inset: -0.125rem 3.125rem 0;
  width: calc(100% - 6.25rem);
  height: 60.75rem;
  object-fit: fill;
  opacity: 0.6;
  pointer-events: none;
}

.closing-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.closing-cta__title {
  position: absolute;
  top: 12.6875rem;
  left: calc(50% + 0.5625rem);
  width: 59.9375rem;
  margin-left: -29.96875rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  color: #f0ede4;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-align: center;
}

.closing-cta__intro {
  position: absolute;
  top: 23.5rem;
  left: calc(50% + 0.5625rem);
  display: flex;
  width: 42.1875rem;
  margin: 0 0 0 -21.09375rem;
  flex-direction: column;
  color: rgb(240 237 228 / 50%);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-align: center;
}

.closing-cta__intro strong {
  color: #f0ede4;
  font: inherit;
}

.closing-cta__action {
  position: absolute;
  top: 28.8125rem;
  left: calc(50% + 0.5rem);
  display: flex;
  width: 41.9375rem;
  margin-left: -20.96875rem;
  height: 9.375rem;
  padding: 1.3125rem;
  align-items: center;
  gap: 2.3125rem;
  border-radius: 6.25rem;
  color: #1c1d19;
  background: #f0ede4;
  box-shadow:
    0.9375rem 1rem 1.53125rem rgb(0 0 0 / 10%),
    3.75rem 4.0625rem 2.78125rem rgb(0 0 0 / 9%),
    8.4375rem 9.1875rem 3.75rem rgb(0 0 0 / 5%);
  transform: translateY(0);
  transition:
    background-color 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  overflow: hidden;
}

.closing-cta__action::before {
  position: absolute;
  z-index: 0;
  top: -55%;
  bottom: -55%;
  left: -36%;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(255 255 255 / 8%) 20%,
    rgb(255 255 255 / 62%) 50%,
    rgb(255 255 255 / 10%) 80%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: translateX(0) skewX(-18deg);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-cta__mark,
.closing-cta__arrow-shell {
  position: relative;
  z-index: 1;
  display: block;
  width: 6.723125rem;
  height: 6.723125rem;
  flex: 0 0 6.723125rem;
}

.closing-cta__mark {
  position: relative;
  z-index: 1;
  display: block;
  width: 6.723125rem;
  height: 6.723125rem;
  flex: 0 0 6.723125rem;
}

.closing-cta__action-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 21.25rem;
  min-width: 21.25rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1;
}

.closing-cta__action-copy strong {
  font-family: var(--rubrika-font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.96;
}

.closing-cta__action-copy small {
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.closing-cta__action-copy b {
  color: #1c1d19;
  font-weight: inherit;
}

.closing-cta__action:is(:hover, :focus-visible) {
  background: #faf8f5;
  box-shadow:
    0.9375rem 1rem 1.53125rem rgb(0 0 0 / 12%),
    3.75rem 4.0625rem 2.78125rem rgb(0 0 0 / 11%),
    8.4375rem 9.1875rem 3.75rem rgb(0 0 0 / 7%);
  transform: translateY(-0.25rem);
}

.closing-cta__action:is(:hover, :focus-visible)::before {
  transform: translateX(530%) skewX(-18deg);
}

.closing-cta__arrow-shell {
  overflow: hidden;
  border-radius: 50%;
  background: #8eccb7;
}

.closing-cta__arrow {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-cta__arrow--primary {
  transform: translateX(0);
}

.closing-cta__arrow--incoming {
  transform: translateX(-102%);
}

.closing-cta__action:is(:hover, :focus-visible) .closing-cta__arrow--primary {
  transform: translateX(102%);
}

.closing-cta__action:is(:hover, :focus-visible) .closing-cta__arrow--incoming {
  transform: translateX(0);
}

.closing-cta__action:focus-visible {
  outline: 0.125rem solid #8dcdb8;
  outline-offset: 0.375rem;
}

.closing-cta__proof {
  position: absolute;
  top: 40.625rem;
  left: calc(50% + 0.5rem);
  display: flex;
  width: 38.6875rem;
  height: 3.125rem;
  margin-left: -19.34375rem;
  align-items: center;
  color: #f0ede4;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.closing-cta__proof p {
  width: 15.9375rem;
  margin: 0 1.375rem 0 0;
  white-space: nowrap;
}

.closing-cta__proof p span {
  color: rgb(240 237 228 / 50%);
}

.closing-cta__clients {
  display: flex;
  width: 7.9375rem;
  height: 3.125rem;
  align-items: center;
  margin-right: 1.375rem;
}

.closing-cta__clients img {
  display: block;
  width: 3.108rem;
  height: 3.125rem;
  flex: 0 0 3.108rem;
  border-radius: 50%;
}

.closing-cta__clients img + img {
  margin-left: -0.67rem;
}

.closing-cta__rating {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.closing-cta__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.closing-cta__stars img {
  display: block;
  width: 1.5204rem;
  height: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .closing-cta__action,
  .closing-cta__action::before,
  .closing-cta__arrow {
    transition-duration: 0.01ms;
  }
}

.site-footer {
  position: relative;
  width: 100%;
  height: 60.75rem;
  overflow: hidden;
  color: #f0ede4;
  background: #6d1414;
}

.site-footer__lower {
  position: absolute;
  inset: 25.375rem 0 0;
  background: rgb(79 17 17 / 50%);
}

.site-footer__grid {
  position: absolute;
  z-index: 0;
  top: -0.125rem;
  left: 3.125rem;
  display: grid;
  width: calc(100% - 6.25rem);
  height: 60.75rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1875rem;
  opacity: 0.6;
  pointer-events: none;
}

.site-footer__grid span {
  background: rgb(79 17 17 / 14%);
}

.site-footer__line {
  position: absolute;
  z-index: 4;
  display: block;
  pointer-events: none;
}

.site-footer__line--horizontal {
  left: 0;
  display: flex;
  width: 100%;
  height: 0;
  align-items: center;
  justify-content: center;
}

.site-footer__line--horizontal img {
  display: block;
  width: 0.0625rem;
  height: 120rem;
  flex: 0 0 auto;
  transform: rotate(-90deg);
}

.site-footer__line--top {
  top: 3.125rem;
}

.site-footer__line--middle {
  top: 25.375rem;
}

.site-footer__line--bottom {
  top: 57.5rem;
}

.site-footer__line--vertical {
  top: 0;
  width: 0.0625rem;
  height: 60.625rem;
}

.site-footer__line--left {
  left: 3.125rem;
}

.site-footer__line--right {
  right: 3.0625rem;
}

.site-footer__contact {
  position: absolute;
  z-index: 2;
  top: 3.125rem;
  left: 3.125rem;
  display: flex;
  width: 32.875rem;
  flex-direction: column;
  color: rgb(240 237 228 / 40%);
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-footer__contact h2 {
  margin: 0;
  color: #f0ede4;
  font: inherit;
}

.site-footer__contact a {
  width: fit-content;
  transition:
    color 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__contact a:is(:hover, :focus-visible) {
  color: #f0ede4;
  transform: translateX(0.375rem);
}

.site-footer__navigation {
  position: absolute;
  z-index: 5;
  top: 3.125rem;
  left: 88.4375rem;
  display: grid;
  grid-template-columns: 6.625rem 5.875rem 9.0625rem;
  column-gap: 3.4375rem;
  color: #f0ede4;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25rem;
}

.site-footer__navigation > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__navigation a {
  position: relative;
  width: fit-content;
  white-space: nowrap;
  transition:
    color 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__navigation a::after {
  position: absolute;
  right: 0;
  bottom: -0.1875rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__navigation a:is(:hover, :focus-visible) {
  color: #8dccb7;
  transform: translateX(0.1875rem);
}

.site-footer__navigation a:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-footer__back-top {
  color: rgb(240 237 228 / 50%);
}

.site-footer__signature {
  position: absolute;
  z-index: 2;
  top: 25.375rem;
  left: 50%;
  display: block;
  width: calc(100% - 6.25rem);
  height: 32.125rem;
  object-fit: fill;
  transform: translateX(-50%);
}

.site-footer__copyright {
  position: absolute;
  z-index: 5;
  right: 3.0625rem;
  bottom: 3.125rem;
  width: max-content;
  max-width: calc(100% - 6.25rem);
  margin: 0;
  overflow: hidden;
  color: #f0ede4;
  font-family: var(--rubrika-font-sans);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25rem;
  text-align: right;
  white-space: nowrap;
}

.site-footer a:focus-visible {
  outline: 0.125rem solid #8dccb7;
  outline-offset: 0.25rem;
}

@media (max-width: 1199px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
  }

  body {
    background: #faf8f5;
  }

  body > main,
  .crosshair-cursor {
    visibility: hidden;
    pointer-events: none;
  }

  .desktop-gate {
    --gate-padding: clamp(24px, 4vw, 52px);
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    padding: var(--gate-padding);
    grid-template-rows: auto 1fr auto;
    color: var(--ink);
    background: #faf8f5;
  }

  .desktop-gate::before {
    position: absolute;
    z-index: 0;
    inset: var(--gate-padding);
    border-right: 1px solid rgb(28 29 25 / 5%);
    background: linear-gradient(90deg, rgb(28 29 25 / 5%) 1px, transparent 1px) 0 0 / 25% 100%;
    content: "";
    pointer-events: none;
  }

  .desktop-gate > * {
    position: relative;
    z-index: 1;
  }

  .desktop-gate > img {
    display: block;
    width: clamp(64px, 7vw, 80px);
    height: clamp(64px, 7vw, 80px);
  }

  .desktop-gate__copy {
    width: min(880px, 100%);
    align-self: center;
    justify-self: start;
    transform: translateY(-3vh);
  }

  .desktop-gate__title,
  .desktop-gate p {
    margin: 0;
  }

.desktop-gate__title {
    position: static;
    z-index: auto;
    inset: auto;
    width: 100%;
    max-width: 880px;
    color: var(--ink);
    font-size: clamp(48px, 6.4vw, 72px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.92;
    white-space: normal;
    opacity: 1;
    transform: none;
  }

.desktop-gate__eyebrow {
    margin-bottom: 20px !important;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .desktop-gate__message {
    max-width: 560px;
    margin-top: 32px !important;
    color: rgb(28 29 25 / 50%);
    font-family: var(--rubrika-font-sans);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

.desktop-gate__note {
    align-self: end;
    padding-top: 24px;
    border-top: 1px solid rgb(28 29 25 / 12%);
    font-size: 15px;
    font-weight: 600;
  }
}
/*
 * Experimento de escala proporcional desktop.
 * Para reverter completamente, remova apenas o import deste arquivo em main.js.
 * Base: 1rem = 16px em 1920px, 32px em 3840px e 10px em 1200px.
 * Entre esses limites a escala é linear e exatamente proporcional à viewport.
 */

:root {
  --layout-gutter: 6.25rem;
  --layout-column-gap: 1.1875rem;
  --layout-ruler-width: 1.375rem;
}

html {
  min-width: 75rem;
  font-size: clamp(10px, 0.8333333333vw, 32px);
}

body {
  min-width: 75rem;
}

@media (max-width: 1199px) {
  html,
  body {
    min-width: 0;
  }
}

.is-loading .logo,
.is-loading .navigation a,
.is-loading .availability,
.is-loading h1 > span,
.is-loading .hero__meta > span {
  transform: translateY(1.125rem);
}

.is-loading .logo,
.is-loading .navigation a,
.is-loading .availability {
  transform: translateY(-0.875rem);
}

.is-loading .availability {
  transform: translateY(-0.875rem) scale(0.96);
}

.hero {
  min-height: 90.9375rem;
  padding-top: 1.4375rem;
  gap: 2rem;
}

.hero__ruler,
.side-ruler,
.introduction__ruler {
  width: var(--layout-ruler-width);
}

.hero__top {
  width: calc(100% - var(--layout-gutter));
  max-width: 113.8125rem;
  height: 28.5625rem;
  flex-basis: 28.5625rem;
}

.hero__grid {
  gap: var(--layout-column-gap);
  width: calc(100% - var(--layout-gutter));
  max-width: 113.8125rem;
}

.header {
  height: 5rem;
}

.logo {
  gap: 1.75rem;
  font-size: 1.125rem;
}

.logo img {
  width: 5rem;
  height: 5rem;
}

.navigation {
  margin-left: 4.375rem;
  gap: 2rem;
  font-size: 1.125rem;
}

.availability {
  width: 14.9375rem;
  height: 3.5rem;
  padding: 0.5rem;
  gap: 0.75rem;
  border-radius: 1.75rem;
}

.availability__avatar,
.availability__arrow {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
}

.availability__avatar,
.availability__arrow {
  flex-basis: 2.5rem;
}

.availability__copy {
  width: 6.9375rem;
  min-width: 6.9375rem;
  gap: 0.0625rem;
}

.availability__copy strong {
  font-size: 0.9375rem;
}

.availability__copy small {
  font-size: 0.8125rem;
}

.availability__arrow {
  margin-left: 0.5rem;
}

.availability__arrow::before {
  width: 0.625rem;
  height: 0.625rem;
  transform: translateX(-0.125rem) rotate(-45deg);
}

.availability:is(:hover, :focus-visible) .availability__copy,
.availability:is(:hover, :focus-visible) .availability__arrow {
  translate: 0.125rem 0;
}

.availability:is(:hover, :focus-visible) .availability__arrow::before {
  transform: translateX(0.0625rem) rotate(-45deg);
}

.availability:active .availability__arrow {
  translate: 0.0625rem 0;
}

h1 {
  top: 10.6875rem;
  width: 63.875rem;
  font-size: 4rem;
}

.hero__coordinates {
  font-size: 0.75rem;
}

.hero__scroll,
.hero__sign {
  font-size: 0.875rem;
}

.hero__scroll-arrow {
  width: 0.5625rem;
  height: 0.3125rem;
  margin-left: 0.1875rem;
}

.hero__video {
  height: 60.375rem;
  flex-basis: 60.375rem;
}

.introduction {
  height: 60.625rem;
}

.introduction__grid,
.introduction__inner,
.introduction__axis,
.introduction__axis-trigger {
  width: calc(100% - var(--layout-gutter));
  max-width: 120.0625rem;
}

.introduction__grid {
  gap: var(--layout-column-gap);
  height: calc(75% + 0.625rem);
}

.introduction__axis,
.introduction__axis-trigger {
  height: 1.375rem;
}

.introduction__axis {
  gap: var(--layout-column-gap);
}

.introduction__axis .introduction__axis-line {
  top: 0.625rem;
}

.introduction__axis span,
.introduction__axis-gap::before,
.introduction__axis-gap::after,
.introduction__axis-gap {
  height: 1.375rem;
}

.introduction__axis-gap::before {
  left: -1.1875rem;
}

.introduction h2 {
  top: 3rem;
  font-size: clamp(2.25rem, calc((100vw - 6.25rem) * 0.0335), 4rem);
}

.introduction__footer {
  top: calc(75% + 3.125rem);
  column-gap: var(--layout-column-gap);
}

.introduction__belief {
  font-size: clamp(1.125rem, 1.4vw, 1.75rem);
}

.introduction__list,
.introduction__list strong {
  font-size: clamp(0.9375rem, 1.05vw, 1.3125rem);
}

.introduction__list strong {
  margin-bottom: 0.5625rem;
}
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.approach-process__topic-toggle {
  display: contents;
}

@media (max-width: 1199px) {
  :root {
    --mobile-gutter: clamp(16px, 4vw, 32px);
  }

  html {
    min-width: 0;
    height: auto;
    overflow-x: clip;
    overflow-y: auto;
    font-size: 16px;
    scrollbar-width: thin;
  }

  body {
    min-width: 0;
    height: auto;
    overflow-x: clip;
    overflow-y: auto;
  }

  body > main,
  .site-footer {
    display: block;
    visibility: visible;
    pointer-events: auto;
  }

  .desktop-gate {
    display: none !important;
  }

  .has-crosshair-cursor,
  .has-crosshair-cursor * {
    cursor: auto;
  }

  .crosshair-cursor,
  .hero__ruler,
  .introduction__ruler,
  .case-study__ruler {
    display: none;
  }

  main {
    width: 100%;
    overflow: clip;
  }

  section[id] {
    scroll-margin-top: 16px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero__top {
    position: relative;
    width: 100%;
    max-width: none;
    height: clamp(390px, 99vw, 640px);
    padding-inline: var(--mobile-gutter);
    flex: none;
  }

  .hero__grid {
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
    max-width: none;
    height: clamp(390px, 99vw, 640px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    transform: none;
  }

  .hero__grid span {
    border-right: 0;
    border-left: 1px solid rgb(225 224 221 / 72%);
  }

  .hero__grid span:nth-child(n + 5) {
    display: none;
  }

  .hero__grid span:nth-child(4) {
    border-right: 1px solid rgb(225 224 221 / 72%);
  }

  .header {
    top: 13px;
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
    height: 64px;
  }

  .logo {
    position: absolute;
    left: 0;
    gap: 0;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .logo > span,
  .navigation {
    display: none;
  }

  .availability {
    position: absolute;
    right: 51px;
    width: min(243px, calc(100% - 108px));
    height: 56px;
    padding: 8px;
    margin: 0;
    gap: 10px;
    border-radius: 28px;
    box-shadow: 0 1px 0 rgb(28 29 25 / 3%);
  }

  .availability__copy {
    width: 111px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .availability__copy strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .availability__copy small {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  .availability__arrow {
    margin-left: auto;
  }

  .mobile-menu-toggle {
    position: absolute;
    z-index: 2;
    right: -2px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 8px 2px;
    border: 0;
    appearance: none;
    align-content: center;
    gap: 10px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 38px;
    height: 2px;
    background: currentColor;
  }

  .hero h1 {
    top: clamp(103px, 25.1vw, 168px);
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
    max-width: 760px;
    font-size: clamp(36px, 9.756vw, 64px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .hero h1 span {
    display: inline;
    white-space: normal;
  }

  .hero__meta {
    bottom: 18px;
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
    grid-template-columns: 1fr 1fr;
  }

  .hero__coordinates {
    display: none;
  }

  .hero__scroll,
  .hero__sign {
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .hero__scroll {
    justify-self: start;
  }

  .hero__sign {
    justify-self: end;
  }

  .hero__video {
    width: 100%;
    height: clamp(234px, 64.9vw, 498px);
    flex: none;
    background: #000;
  }

  .hero__video img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  .introduction {
    display: flex;
    height: auto;
    min-height: 0;
    padding: 56px var(--mobile-gutter) 44px;
    flex-direction: column;
    overflow: hidden;
  }

  .introduction__grid {
    top: 0;
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
    max-width: none;
    height: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    transform: none;
  }

  .introduction__grid span {
    background: rgb(228 204 234 / 12%);
    border-left: 1px solid rgb(225 224 221 / 28%);
  }

  .introduction__grid span:nth-child(n + 5) {
    display: none;
  }

  .introduction__inner {
    display: contents;
  }

  .introduction h2 {
    position: relative;
    order: 1;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    font-size: clamp(34px, 8.536vw, 56px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .introduction h2 > span,
  .introduction h2 > em,
  .introduction h2 span em {
    display: inline;
    white-space: normal;
  }

  .introduction__axis-trigger {
    display: none;
  }

  .introduction__axis {
    position: relative;
    order: 2;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    max-width: 960px;
    height: 22px;
    margin: clamp(70px, 20vw, 116px) auto 0;
    transform: none;
  }

  .introduction__axis .introduction__axis-line {
    top: 10px;
  }

  .introduction__axis-gap {
    position: absolute !important;
    width: 1px;
  }

  .introduction__axis-gap--first {
    left: 29%;
  }

  .introduction__axis-gap--second {
    left: 55%;
  }

  .introduction__axis-gap--third {
    left: 81%;
  }

  .introduction__axis-gap::before {
    left: -19px;
  }

  .introduction__footer {
    position: relative;
    order: 3;
    inset: auto;
    display: grid;
    width: 100%;
    max-width: 960px;
    margin: 28px auto 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(24px, 8vw, 80px);
    row-gap: 36px;
  }

  .introduction__belief {
    grid-column: 1 / -1;
    font-size: clamp(22px, 5.854vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .introduction__belief br {
    display: none;
  }

  .introduction__list,
  .introduction__list strong {
    font-size: clamp(17px, 4.41vw, 22px);
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  .introduction__list strong {
    margin-bottom: 14px;
    font-weight: 700;
  }

  .introduction__services,
  .introduction__sectors {
    grid-column: auto;
    justify-self: stretch;
    white-space: normal;
  }

  .case-study,
  .case-study--transparent {
    height: auto;
    min-height: 0;
    padding: 38px var(--mobile-gutter) 29px;
    overflow: visible;
    background: var(--paper);
  }

  .case-study__inner {
    display: flex;
    width: 100%;
    max-width: 960px;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
  }

  .case-study__info {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .case-study__title {
    width: 100%;
    font-size: clamp(34px, 8.293vw, 54px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
    white-space: normal;
  }

  .case-study__title br {
    display: inline;
    content: " ";
  }

  .case-study__title br::after {
    content: " ";
  }

  .case-study__arrow {
    display: none;
  }

  .case-study__description,
  .case-study__date {
    width: 100%;
    font-size: clamp(18px, 4.878vw, 24px);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .case-study__description {
    margin-top: 1px;
  }

  .case-study__date {
    margin-top: 1px;
  }

  .case-study__thumbnail {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 32px;
    aspect-ratio: 377 / 403;
  }

  .case-study__thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
  }

  .case-study__overlay {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 30000;
    inset: 0;
    display: flex;
    min-height: 100dvh;
    padding: var(--mobile-gutter);
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--ink);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition:
      opacity 240ms ease,
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 320ms;
  }

  .mobile-menu--open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  html.mobile-menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .mobile-menu__top {
    display: flex;
    min-height: 62px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .mobile-menu__logo,
  .mobile-menu__logo img {
    display: block;
    width: 58px;
    height: 58px;
  }

  .mobile-menu__close {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    appearance: none;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__close span {
    position: absolute;
    top: 23px;
    left: 7px;
    display: block;
    width: 36px;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu__close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu__close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu__close:focus-visible,
  .mobile-menu__navigation a:focus-visible,
  .mobile-menu__socials a:focus-visible {
    outline: 1px solid rgb(28 29 25 / 42%);
    outline-offset: 3px;
  }

  .mobile-menu__navigation {
    display: flex;
    margin-top: 22px;
    flex-direction: column;
  }

  .mobile-menu__navigation a {
    display: flex;
    min-height: 58px;
    border-bottom: 1px solid rgb(28 29 25 / 18%);
    align-items: center;
    font-size: clamp(26px, 6.341vw, 34px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .mobile-menu__footer {
    margin-top: auto;
    padding-top: 72px;
  }

  .mobile-menu__socials {
    display: grid;
    padding: 19px 0 24px;
    border-bottom: 1px solid rgb(28 29 25 / 10%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .mobile-menu__socials a:nth-child(2) {
    justify-self: center;
  }

  .mobile-menu__socials a:last-child {
    justify-self: end;
  }

  .mobile-menu__signature {
    display: block;
    width: 100%;
    height: auto;
    max-height: 132px;
    margin-top: 18px;
    filter: invert(1);
    object-fit: fill;
    opacity: 0.9;
  }
}

@media (max-width: 380px) {
  .header {
    top: 11px;
  }

  .logo img,
  .mobile-menu__logo,
  .mobile-menu__logo img {
    width: 50px;
    height: 50px;
  }

  .availability {
    right: 49px;
  }

  .availability__avatar,
  .availability__arrow {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    flex-basis: 36px;
  }

  .availability__copy strong {
    font-size: 14px;
  }

  .availability__copy small {
    font-size: 12px;
  }

  .mobile-menu {
    padding: 14px var(--mobile-gutter);
  }

  .mobile-menu__navigation {
    margin-top: 14px;
  }

  .mobile-menu__navigation a {
    min-height: 52px;
  }

  .mobile-menu__footer {
    padding-top: 40px;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .hero__top,
  .hero__grid {
    height: 317px;
  }

  .hero h1 {
    top: 103px;
    font-size: 40px;
  }

  .hero__video {
    height: 266px;
  }

  .introduction {
    min-height: 662px;
  }

  .introduction h2 {
    font-size: 35px;
  }

  .introduction__axis {
    margin-top: 82px;
  }

  .introduction__belief {
    font-size: 24px;
  }

  .introduction__list,
  .introduction__list strong {
    font-size: 18px;
  }

  .case-study__title {
    font-size: 34px;
  }

  .case-study__description,
  .case-study__date {
    font-size: 20px;
  }

  .case-study__thumbnail {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1199px) and (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}
/*
 * Responsive overrides for the lower half of the home page.
 *
 * The desktop composition is intentionally untouched. Mobile spacing is
 * calibrated around a 410px viewport and remains fluid from 320px to 1199px.
 * Keep this stylesheet after style.css and proportional-rem.css in the import
 * order so these flow-based layouts can replace the desktop absolute frames.
 */

@media (max-width: 1199px) {
  :is(
    .approach-process,
    .testimonials,
    [data-comparison],
    [data-awards],
    [data-pricing-plans],
    [data-showreel],
    [data-faq],
    [data-about],
    [data-closing-cta],
    .site-footer
  ) {
    --mobile-section-gutter: var(--mobile-gutter, clamp(16px, 4vw, 48px));
    --mobile-section-space: clamp(64px, 9vw, 112px);
    max-width: 100%;
  }

  :is(
    .approach-process,
    .testimonials,
    [data-comparison],
    [data-awards],
    [data-pricing-plans],
    [data-showreel],
    [data-faq],
    [data-about],
    [data-closing-cta],
    .site-footer
  ) :is(img, svg, video, iframe) {
    max-width: 100%;
  }

  :is(
    .approach-process,
    .testimonials,
    [data-comparison],
    [data-awards],
    [data-pricing-plans],
    [data-showreel],
    [data-faq],
    [data-about],
    [data-closing-cta],
    .site-footer
  ) :is(button, a) {
    -webkit-tap-highlight-color: transparent;
  }

  /* -----------------------------------------------------------------------
     Approach / process
     -------------------------------------------------------------------- */
  .approach-process {
    height: auto;
    min-height: 0;
    padding: 38px var(--mobile-gutter) 52px;
    overflow: hidden;
    overflow: clip;
  }

  .approach-process__ruler {
    display: none;
  }

  .approach-process__inner {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    flex-direction: column;
  }

  .approach-process__heading {
    position: static;
    width: min(100%, 820px);
    margin: 0;
    font-size: clamp(34px, 8.293vw, 54px);
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .approach-process__heading span {
    display: inline;
  }

  .approach-process__column {
    position: static;
    display: flex;
    width: 100%;
    margin-top: 31px;
    flex-direction: column;
  }

  .approach-process__lede {
    width: min(100%, 520px);
    font-size: clamp(22px, 5.85vw, 30px);
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .approach-process__body {
    width: min(100%, 560px);
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .approach-process__body p + p {
    margin-top: 18px;
  }

  .approach-process__astrolabe {
    display: none;
  }

  .approach-process__list {
    position: static;
    display: flex;
    width: 100%;
    margin: 52px 0 0;
    flex-direction: column;
    gap: 0;
  }

  .approach-process__topic {
    display: block;
    min-height: 92px;
    padding: 0;
    border-top: 1px solid rgb(28 29 25 / 24%);
  }

  .approach-process__topic:last-child {
    min-height: 0;
    border-bottom: 0;
  }

  .approach-process__topic:last-child .approach-process__topic-toggle {
    min-height: 32px;
  }

  .approach-process__topic-row,
  .approach-process__topic:nth-child(n) .approach-process__topic-row {
    position: relative;
    min-height: 0;
  }

  .approach-process__topic-title {
    width: 100%;
    font-size: clamp(30px, 7.805vw, 40px);
    letter-spacing: -0.02em;
    line-height: 0.9;
    white-space: normal;
  }

  .approach-process__topic-toggle {
    display: flex;
    width: 100%;
    min-height: 92px;
    padding: 0;
    border: 0;
    appearance: none;
    align-items: center;
    gap: 16px;
    color: inherit;
    font: inherit;
    text-align: left;
    background: transparent;
    cursor: pointer;
  }

  .approach-process__topic-toggle::after {
    flex: 0 0 auto;
    margin-left: auto;
    font-family: var(--rubrika-font-sans);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    content: "+";
  }

  .approach-process__topic-toggle[aria-expanded="true"]::after {
    content: "−";
  }

  .approach-process__topic-toggle:focus-visible {
    outline: 2px solid #8dccb7;
    outline-offset: 4px;
  }

  .approach-process__topic-body {
    position: static;
    width: min(100%, 650px);
    padding: 0 40px 28px 0;
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .approach-process__line {
    display: none;
  }

  /* -----------------------------------------------------------------------
     Testimonials
     -------------------------------------------------------------------- */
  .testimonials {
    height: auto;
    min-height: clamp(900px, 242.9vw, 1050px);
    overflow: hidden;
    overflow: clip;
  }

  .testimonials__bg-img {
    top: 0;
    left: calc(50% - 355px);
    width: 710px;
    max-width: none !important;
    height: 454px;
    object-position: 55% center;
  }

  .testimonials__bg {
    top: clamp(310px, 82.44vw, 400px);
    bottom: auto;
    height: 454px;
    overflow: hidden;
  }

  .testimonials__bg::after {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 24%), transparent 34%),
      linear-gradient(0deg, rgb(0 0 0 / 52%), transparent 58%);
  }

  .testimonials__inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: inherit;
    padding: clamp(28px, 7vw, 56px) var(--mobile-section-gutter) 38px;
    margin: 0;
    flex-direction: column;
  }

  .testimonials__content {
    position: static;
    display: flex;
    width: min(100%, 780px);
    flex-direction: column;
    gap: clamp(28px, 7vw, 52px);
  }

  .testimonials__quote-block {
    font-size: clamp(26px, 6.83vw, 38px);
    letter-spacing: -0.035em;
    line-height: 0.96;
  }

  .testimonials__logo {
    width: min(100%, 200px);
    height: clamp(34px, 9vw, 54px);
  }

  .testimonials__logo-img {
    width: auto !important;
    max-width: min(48vw, 190px) !important;
    height: 100%;
  }

  .testimonials__slider {
    position: static;
    display: flex;
    margin-top: clamp(36px, 9vw, 64px);
    align-items: center;
    align-self: flex-start;
    gap: 12px;
  }

  .testimonials__arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
  }

  .testimonials__arrow img {
    width: 26px;
    height: 26px;
  }

  .testimonials__counter {
    min-width: 76px;
    font-size: clamp(40px, 10vw, 58px);
    letter-spacing: -0.04em;
  }

  .testimonials__name-photos {
    position: static;
    display: flex;
    width: 100%;
    margin-top: auto;
    padding-top: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .testimonials__author {
    width: 100%;
    min-height: 44px;
    height: auto;
  }

  .testimonials__author-block {
    font-size: clamp(23px, 6.34vw, 28px);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .testimonials__photos {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .testimonials__photo {
    width: clamp(62px, 17.8vw, 76px);
    height: clamp(62px, 17.8vw, 76px);
    flex: 0 0 clamp(62px, 17.8vw, 76px);
  }

  .testimonials__photo-ring {
    width: calc(100% + 5px);
    height: calc(100% + 5px);
  }

  /* -----------------------------------------------------------------------
     Comparison
     -------------------------------------------------------------------- */
  [data-comparison].comparison {
    height: auto;
    min-height: 0;
    padding: clamp(58px, 8vw, 92px) 0 clamp(62px, 8vw, 96px);
    overflow: hidden;
    overflow: clip;
  }

  .comparison__ruler {
    display: none;
  }

  .comparison__inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    flex-direction: column;
  }

  .comparison__title {
    position: static;
    width: auto;
    margin: 0 var(--mobile-section-gutter);
    font-size: clamp(36px, 8.8vw, 64px);
    letter-spacing: -0.035em;
    line-height: 0.94;
  }

  .comparison__timeline {
    --comparison-canvas: clamp(620px, 155vw, 760px);
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - var(--mobile-section-gutter));
    height: 236px;
    margin: clamp(52px, 11vw, 84px) 0 0 var(--mobile-section-gutter);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .comparison__timeline::-webkit-scrollbar,
  .comparison__matrix::-webkit-scrollbar,
  .awards__list::-webkit-scrollbar,
  .pricing-plans__grid::-webkit-scrollbar {
    display: none;
  }

  .comparison__timeline::after {
    display: none;
  }

  .comparison__scale {
    width: var(--comparison-canvas);
    height: 44px;
    padding-top: 30px;
    padding-right: 0;
    font-size: 10px;
  }

  .comparison__scale-ruler {
    width: var(--comparison-canvas);
    height: 42px;
  }

  .comparison__track {
    width: var(--comparison-canvas);
    height: 38px;
  }

  .comparison__track--rubrika {
    top: 64px;
  }

  .comparison__track--freelancer {
    top: 124px;
  }

  .comparison__track--agency {
    top: 184px;
  }

  .comparison__track-line {
    top: 15px;
    height: 7px;
    background: linear-gradient(currentColor, currentColor) 0 3px / 100% 1px no-repeat;
  }

  .comparison__track--freelancer .comparison__track-line,
  .comparison__track--agency .comparison__track-line {
    background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px) 0 3px / 100% 1px no-repeat;
  }

  .comparison__tag,
  .comparison__tag--rubrika,
  .comparison__track--agency .comparison__tag {
    width: auto;
    min-width: 96px;
    height: 38px;
    padding: 0 10px 0 7px;
    gap: 8px;
    font-size: 12px;
  }

  .comparison__track--agency .comparison__tag {
    min-width: 142px;
  }

  .comparison__tag-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .comparison__content {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    margin-top: clamp(44px, 9vw, 76px);
    flex-direction: column;
  }

  .comparison__intro {
    display: none;
  }

  .comparison__intro p + p {
    margin-top: 18px;
  }

  .comparison__question {
    width: 100%;
    margin-bottom: 28px !important;
    font-size: clamp(22px, 5.7vw, 32px);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .comparison__seal {
    position: static;
    display: block;
    width: 68px;
    height: 68px;
    margin-top: 34px;
  }

  .comparison__matrix {
    width: min(calc(100% - (2 * var(--mobile-section-gutter))), 378px);
    min-width: 0;
    margin: 0 auto;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .comparison__matrix-head,
  .comparison__matrix-row {
    --comparison-column: clamp(136px, 36vw, 180px);
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(3, var(--comparison-column));
    column-gap: 12px;
  }

  .comparison__matrix-head {
    height: 42px;
  }

  .comparison__matrix-head p {
    display: flex;
    padding: 0 12px;
    align-items: center;
    font-size: 16px;
  }

  .comparison__matrix-head p:first-child {
    width: 110px;
    border-radius: 999px;
    color: var(--ink);
    background: #cce8e0;
  }

  .comparison__matrix-row {
    min-height: 69px;
    height: auto;
  }

  .comparison__matrix-row p {
    font-size: 18px;
    letter-spacing: -0.018em;
    line-height: 1.08;
  }

  .comparison__yes,
  .comparison__no {
    padding: 16px 14px 16px 50px;
  }

  .comparison__yes::before,
  .comparison__no::before {
    left: 16px;
    width: 23px;
    height: 23px;
  }

  /* -----------------------------------------------------------------------
     Awards
     -------------------------------------------------------------------- */
  [data-awards].awards {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: clamp(44px, 7vw, 78px) var(--mobile-section-gutter) clamp(38px, 6vw, 72px);
    grid-template-areas:
      "list"
      "media";
    gap: 20px;
    overflow: hidden;
    overflow: clip;
  }

  .awards__ruler {
    display: none;
  }

  .awards__media {
    position: relative;
    inset: auto;
    grid-area: media;
    width: 100%;
    height: 406px;
    aspect-ratio: auto;
  }

  .awards__player-frame {
    max-width: none !important;
  }

  .awards__list {
    position: static;
    display: flex;
    grid-area: list;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    touch-action: auto;
  }

  .awards__item,
  .awards__item:nth-child(n) {
    position: static;
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 5px 0;
    flex: 0 0 52px;
    align-items: baseline;
    gap: 10px;
    font-size: clamp(34px, 9.76vw, 46px);
    letter-spacing: -0.035em;
    line-height: 0.94;
    white-space: normal;
  }

  .awards__counts {
    gap: 8px;
  }

  .awards__credit {
    top: 16px;
    right: 16px;
    width: min(45%, 190px);
    font-size: clamp(12px, 3vw, 17px);
    line-height: 1.08;
  }

  .awards__result,
  .awards__result--top {
    top: auto;
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    font-size: clamp(24px, 6vw, 36px);
    line-height: 0.95;
  }

  /* -----------------------------------------------------------------------
     Pricing plans — swipeable card rail
     -------------------------------------------------------------------- */
  [data-pricing-plans].pricing-plans {
    height: auto;
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    overflow: hidden;
    overflow: clip;
  }

  .pricing-plans__ruler {
    display: none;
  }

  .pricing-plans__title {
    position: static;
    width: auto;
    margin: 0 var(--mobile-section-gutter);
    font-size: clamp(36px, 8.8vw, 64px);
    letter-spacing: -0.035em;
    line-height: 0.94;
  }

  .pricing-plans__grid {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    margin-top: clamp(42px, 9vw, 76px);
    padding: 38px var(--mobile-section-gutter) 8px;
    align-items: flex-end;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-padding-inline: var(--mobile-section-gutter);
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .pricing-card,
  .pricing-card--professional {
    position: relative;
    display: block;
    width: clamp(286px, 84.64vw, 960px);
    min-width: clamp(286px, 84.64vw, 960px);
    height: 721px;
    margin: 0;
    flex: 0 0 clamp(286px, 84.64vw, 960px);
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .pricing-card__recommended {
    right: -2px;
    bottom: calc(100% - 2px);
    left: auto;
    width: 128px;
    height: 36px;
    font-size: 14px;
  }

  .pricing-card__header {
    position: relative;
    height: 80px;
    padding: 0 18px;
  }

  .pricing-card__identity {
    gap: 12px;
  }

  .pricing-card__identity h3 {
    font-size: 18px;
    letter-spacing: -0.02em;
  }

  .pricing-card__identity p {
    font-size: 16px;
    letter-spacing: -0.015em;
  }

  .pricing-card__price {
    font-size: clamp(38px, 10.98vw, 48px);
  }

  .pricing-card__symbol {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .pricing-card__sprint {
    position: relative;
    height: 178px;
    padding: 20px 18px;
  }

  .pricing-card__section-title {
    min-height: 42px;
  }

  .pricing-card h4 {
    font-size: 17px;
  }

  .pricing-card__section-title span {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .pricing-card__sprint ul {
    margin-top: 8px;
    gap: 6px;
  }

  .pricing-card__sprint li {
    font-size: 16px;
    line-height: 1.05;
  }

  .pricing-card__after {
    position: absolute;
    top: 258px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 18px 92px;
  }

  .pricing-card__after ul {
    margin-top: 18px;
    gap: 8px;
  }

  .pricing-card__after li {
    height: auto;
    min-height: 22px;
    gap: 12px;
    font-size: 15px;
    line-height: 1.08;
  }

  .pricing-card__after li img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .pricing-card__cta {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    min-height: 56px;
    height: 56px;
  }

  .pricing-card__cta-track {
    height: 20px;
    font-size: 15px;
    line-height: 20px;
  }

  .pricing-card--personalized::before {
    top: 80px;
    height: 178px;
  }

  .pricing-card__personalized-copy::after {
    top: 258px;
  }

  .pricing-card__personalized-copy > h4 {
    top: 108px;
    left: 18px;
  }

  .pricing-card__personalized-copy > p {
    color: rgb(28 29 25 / 70%);
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1.12;
  }

  .pricing-card__personalized-copy > p:first-of-type {
    top: 143px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .pricing-card__call-graphic {
    top: 285px;
    width: 188px;
    height: 62px;
  }

  .pricing-card__call-progress {
    top: 30px;
    left: 51px;
    width: 80px;
    height: 2px;
  }

  .pricing-card__call-stage--avatar {
    top: 5px;
    left: 5px;
    width: 52px;
    height: 52px;
  }

  .pricing-card__call-stage--phone {
    top: 14px;
    left: 75px;
    width: 34px;
    height: 34px;
  }

  .pricing-card__call-stage--person {
    top: 6px;
    left: 132px;
    width: 50px;
    height: 50px;
  }

  .pricing-card__call-line {
    top: 31px;
    left: 51px;
    width: 80px;
    height: 1px;
  }

  .pricing-card__call-ring {
    top: 7px;
    left: 7px;
    width: 48px;
    height: 48px;
  }

  .pricing-card__call-avatar {
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
  }

  .pricing-card__call-person {
    top: 9px;
    left: 135px;
    width: 44px;
    height: 44px;
  }

  .pricing-card__call-person-icon {
    top: 22px;
    left: 151px;
    width: 12px;
    height: 18px;
  }

  .pricing-card__call-phone {
    top: 17px;
    left: 78px;
    width: 28px;
    height: 28px;
  }

  .pricing-card__call-phone-icon {
    top: 26px;
    left: 87px;
    width: 10px;
    height: 10px;
  }

  .pricing-card__call-status {
    top: 13px;
    left: 39px;
    width: 8px;
    height: 8px;
  }

  .pricing-card__personalized-copy h5 {
    top: 374px;
    width: calc(100% - 46px);
    font-size: 25px;
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .pricing-card__personalized-copy > p:nth-of-type(2) {
    top: 446px;
    width: calc(100% - 48px);
    margin: 0;
  }

  .pricing-card__personalized-copy .pricing-card__email {
    top: 540px;
    right: 18px;
    left: 18px;
    font-size: 14px;
    line-height: 1.15;
  }

  /* -----------------------------------------------------------------------
     Showreel
     -------------------------------------------------------------------- */
  [data-showreel].showreel {
    height: clamp(420px, 116.6vw, 478px);
    min-height: 420px;
    overflow: hidden;
    overflow: clip;
  }

  .showreel__media {
    top: -8%;
    height: 116%;
  }

  .showreel__poster {
    object-position: center;
  }

  .showreel__iframe {
    width: 235%;
    max-width: none !important;
    height: 100%;
  }

  .showreel__veil {
    background: rgb(0 0 0 / 58%);
  }

  .showreel__launch {
    min-width: 44px;
    min-height: 44px;
    font-size: clamp(48px, 13vw, 84px);
    letter-spacing: -0.04em;
  }

  .showreel-overlay__media {
    max-width: none !important;
  }

  .showreel-overlay__poster,
  .showreel-overlay__iframe {
    max-width: none !important;
  }

  .showreel-overlay__close {
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 48px;
    height: 48px;
  }

  /* -----------------------------------------------------------------------
     FAQ
     -------------------------------------------------------------------- */
  [data-faq].faq {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: var(--mobile-section-space) var(--mobile-section-gutter);
    grid-template-areas:
      "title"
      "intro"
      "list";
    overflow: hidden;
    overflow: clip;
  }

  .faq__ruler {
    display: none;
  }

  .faq__title {
    position: static;
    grid-area: title;
    margin: 0;
    font-size: clamp(36px, 8.8vw, 64px);
    letter-spacing: -0.035em;
    line-height: 0.94;
  }

  .faq__intro {
    position: static;
    grid-area: intro;
    width: min(100%, 580px);
    margin-top: 42px;
  }

  .faq__lead {
    width: 100%;
    font-size: clamp(22px, 5.85vw, 30px);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .faq__description {
    width: 100%;
    margin-top: 20px !important;
    font-size: clamp(17px, 4.88vw, 20px);
    line-height: 1.15;
  }

  .faq__intro a {
    display: inline-flex;
    min-height: 44px;
    margin-top: 14px;
    align-items: center;
    font-size: clamp(17px, 4.88vw, 20px);
  }

  .faq__list {
    position: static;
    grid-area: list;
    width: 100%;
    margin-top: clamp(48px, 11vw, 84px);
  }

  .faq__item,
  .faq__item:first-child {
    width: 100%;
    height: auto;
  }

  .faq__item::after,
  .faq__item:not(:last-child)::after {
    right: 0;
    left: 0;
  }

  .faq__question,
  .faq__item:first-child .faq__question {
    display: grid;
    width: 100%;
    min-height: 72px;
    height: auto;
    padding: 22px 0;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 10px;
    row-gap: 0;
  }

  .faq__question-copy {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(25px, 6.83vw, 32px);
    letter-spacing: -0.035em;
    line-height: 0.98;
  }

  .faq__answer {
    display: none;
    width: 100%;
    margin-top: 20px;
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(17px, 4.39vw, 19px);
    letter-spacing: -0.018em;
    line-height: 1.18;
    transform: none;
  }

  .faq__item.is-open .faq__answer {
    display: block;
    transform: none;
  }

  .faq__icon {
    width: 20px;
    height: 20px;
    margin: 2px 0 0 auto;
    grid-column: 2;
    grid-row: 1;
  }

  /* -----------------------------------------------------------------------
     About studio
     -------------------------------------------------------------------- */
  [data-about].about-studio {
    height: auto;
    min-height: 0;
    padding: var(--mobile-section-space) var(--mobile-section-gutter);
    overflow: hidden;
    overflow: clip;
  }

  .about-studio__ruler {
    display: none;
  }

  .about-studio__inner {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 820px;
    height: auto;
    margin: 0 auto;
    grid-template-areas:
      "visual"
      "profile"
      "clients-title"
      "clients";
    grid-template-columns: minmax(0, 1fr);
  }

  .about-studio__visual {
    position: relative;
    inset: auto;
    grid-area: visual;
    width: 100%;
    height: 467px;
    aspect-ratio: auto;
  }

  .about-studio__tabs {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    gap: 10px;
  }

  .about-studio__tab {
    width: clamp(45px, 11vw, 58px);
    height: clamp(45px, 11vw, 58px);
  }

  .about-studio__tab svg {
    width: calc(100% + 5px);
    height: calc(100% + 5px);
  }

  .about-studio__controls {
    display: none;
  }

  .about-studio__controls button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
  }

  .about-studio__controls button img {
    width: 28px;
    height: 28px;
  }

  .about-studio__controls p {
    font-size: 42px;
    letter-spacing: -0.04em;
    line-height: 0.9;
  }

  .about-studio__profile {
    position: relative;
    inset: auto;
    grid-area: profile;
    width: 100%;
    min-width: 0;
    margin-top: clamp(36px, 8vw, 64px);
    align-self: start;
  }

  .about-studio__profile h2 {
    position: static;
    width: 100%;
    font-size: clamp(34px, 8.78vw, 52px);
    letter-spacing: -0.035em;
    line-height: 0.94;
  }

  .about-studio__bio,
  .about-studio__profile:not([data-about-profile="0"]) .about-studio__bio {
    position: static;
    width: min(100%, 720px);
    margin-top: 32px;
    font-size: clamp(17px, 4.39vw, 19px);
    letter-spacing: -0.018em;
    line-height: 1;
  }

  .about-studio__bio p + p,
  .about-studio__profile:not([data-about-profile="0"]) .about-studio__bio p + p {
    margin-top: 18px;
  }

  .about-studio__clients-title {
    position: static;
    grid-area: clients-title;
    margin: clamp(68px, 14vw, 112px) 0 24px;
    font-size: clamp(24px, 6vw, 32px);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .about-studio__clients {
    position: relative;
    inset: auto;
    grid-area: clients;
    width: calc(100% + var(--mobile-section-gutter));
    height: clamp(210px, 55vw, 260px);
    margin-right: calc(-1 * var(--mobile-section-gutter));
  }

  .about-studio__client {
    width: clamp(138px, 37vw, 180px);
    height: 100%;
    flex-basis: clamp(138px, 37vw, 180px);
  }

  .about-studio__client small,
  .about-studio__client p {
    left: 16px;
    font-size: 11px;
    letter-spacing: -0.01em;
  }

  .about-studio__client p {
    max-width: calc(100% - 30px);
    bottom: 14px;
  }

  .about-studio__client small {
    top: 14px;
  }

  .about-studio__client img {
    max-width: 76%;
    max-height: 42%;
  }

  /* -----------------------------------------------------------------------
     Closing CTA
     -------------------------------------------------------------------- */
  [data-closing-cta].closing-cta {
    height: auto;
    min-height: 551px;
    padding: clamp(70px, 10vw, 108px) var(--mobile-section-gutter);
    overflow: hidden;
    overflow: clip;
  }

  .closing-cta__grid {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
  }

  .closing-cta__content {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: center;
  }

  .closing-cta__title {
    position: static;
    width: min(100%, 820px);
    margin: 0;
    font-size: clamp(32px, 8.05vw, 54px);
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .closing-cta__intro {
    position: static;
    width: min(100%, 650px);
    margin: 28px 0 0;
    font-size: clamp(20px, 5.37vw, 27px);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .closing-cta__action {
    position: relative;
    inset: auto;
    display: flex;
    width: min(calc(100% - 36px), 342.5px);
    height: 83px;
    margin: clamp(40px, 10vw, 70px) 0 0;
    padding: 10px;
    align-items: center;
    gap: clamp(8px, 2.4vw, 18px);
    border-radius: 999px;
  }

  .closing-cta__mark,
  .closing-cta__arrow-shell {
    width: clamp(50px, 14.63vw, 60px);
    height: clamp(50px, 14.63vw, 60px);
    flex-basis: clamp(50px, 14.63vw, 60px);
  }

  .closing-cta__action-copy {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    gap: 6px;
  }

  .closing-cta__action-copy strong {
    font-size: clamp(20px, 5.4vw, 31px);
    line-height: 1;
  }

  .closing-cta__action-copy small {
    font-size: clamp(14px, 3.9vw, 21px);
    line-height: 1;
  }

  .closing-cta__proof {
    position: static;
    display: grid;
    width: min(100%, 480px);
    height: auto;
    margin: clamp(40px, 10vw, 68px) 0 0;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 16px 20px;
    font-size: clamp(17px, 4.5vw, 23px);
  }

  .closing-cta__proof p {
    width: auto;
    margin: 0;
    grid-column: 1 / -1;
    text-align: center;
  }

  .closing-cta__clients {
    width: 96px;
    height: 42px;
    margin: 0;
  }

  .closing-cta__clients img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .closing-cta__clients img + img {
    margin-left: -14px;
  }

  .closing-cta__rating {
    gap: 10px;
  }

  .closing-cta__stars {
    gap: 2px;
  }

  .closing-cta__stars img {
    width: 17px;
    height: 17px;
  }

  /* -----------------------------------------------------------------------
     Footer
     -------------------------------------------------------------------- */
  .site-footer {
    height: auto;
    min-height: 700px;
    padding: clamp(48px, 11vw, 84px) var(--mobile-section-gutter) 28px;
    overflow: hidden;
    overflow: clip;
  }

  .site-footer__lower {
    inset: 45% 0 0;
  }

  .site-footer__grid {
    inset: 0 var(--mobile-section-gutter);
    width: auto;
    height: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    opacity: 0.35;
  }

  .site-footer__line {
    display: none;
  }

  .site-footer__contact {
    position: relative;
    inset: auto;
    width: 100%;
    font-size: clamp(31px, 8.54vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .site-footer__contact a {
    display: flex;
    min-height: 44px;
    align-items: center;
    overflow-wrap: anywhere;
  }

  .site-footer__navigation {
    position: relative;
    inset: auto;
    display: grid;
    width: 100%;
    margin-top: clamp(54px, 13vw, 92px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 24px;
    font-size: clamp(18px, 5.37vw, 22px);
    line-height: 1;
  }

  .site-footer__navigation > div {
    gap: 0;
  }

  .site-footer__navigation a {
    display: flex;
    min-height: 44px;
    align-items: center;
    white-space: normal;
  }

  .site-footer__back-top {
    grid-column: 1 / -1;
  }

  .site-footer__signature {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    margin: clamp(80px, 18vw, 138px) 0 0;
    object-fit: contain;
    transform: none;
  }

  .site-footer__copyright {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .approach-process__heading {
    font-size: 34px;
  }

  .approach-process__lede {
    width: 100%;
    font-size: 24px;
  }

  .approach-process__body {
    width: 100%;
  }

  .approach-process__topic-title {
    font-size: 32px;
  }

  .testimonials {
    min-height: 996px;
  }

  .testimonials__quote-block {
    font-size: 28px;
  }

  .testimonials__author-block {
    font-size: 26px;
  }

  .testimonials__photo {
    width: 73px;
    height: 73px;
    flex-basis: 73px;
  }

  [data-comparison].comparison {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .comparison__title {
    font-size: 36px;
  }

  .comparison__timeline {
    margin-top: 52px;
  }

  .comparison__content {
    margin-top: 44px;
  }

  .awards__item,
  .awards__item:nth-child(n) {
    font-size: 40px;
  }

  [data-pricing-plans].pricing-plans {
    padding-top: 69px;
    padding-bottom: 58px;
  }

  .pricing-plans__title {
    font-size: 36px;
  }

  .pricing-plans__grid {
    margin-top: 42px;
  }

  [data-faq].faq {
    padding-top: 57px;
    padding-bottom: 57px;
  }

  .faq__title {
    font-size: 36px;
  }

  .faq__lead {
    font-size: 24px;
  }

  .faq__intro {
    margin-top: 30px;
  }

  .faq__description,
  .faq__intro a {
    font-size: 20px;
  }

  .faq__list {
    margin-top: 32px;
  }

  .faq__question,
  .faq__item:first-child .faq__question {
    min-height: 64px;
    padding-block: 14px;
  }

  .faq__question-copy {
    font-size: 28px;
  }

  .faq__answer {
    font-size: 18px;
  }

  [data-about].about-studio {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-studio__tab {
    width: 45px;
    height: 45px;
  }

  .about-studio__profile {
    margin-top: 36px;
  }

  .about-studio__profile h2 {
    font-size: 36px;
  }

  .about-studio__bio,
  .about-studio__profile:not([data-about-profile="0"]) .about-studio__bio {
    font-size: 18px;
  }

  .about-studio__clients-title {
    margin-top: 68px;
    font-size: 24px;
  }

  .about-studio__client {
    width: 134px;
    flex-basis: 134px;
  }

  [data-closing-cta].closing-cta {
    height: 551px;
    min-height: 551px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .closing-cta__title {
    font-size: 33px;
  }

  .closing-cta__intro {
    font-size: 22px;
  }

  .closing-cta__action {
    margin-top: 40px;
  }

  .closing-cta__proof {
    margin-top: 40px;
  }

  .site-footer {
    padding-top: 51px;
  }

  .site-footer__contact {
    font-size: 35px;
  }

  .site-footer__navigation {
    font-size: 22px;
  }

  .site-footer__signature {
    margin-top: 80px;
  }
}

@media (max-width: 359px) {
  .closing-cta__action {
    padding: 8px;
  }

  .closing-cta__mark,
  .closing-cta__arrow-shell {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .closing-cta__action-copy strong {
    font-size: 19px;
  }

  .closing-cta__action-copy small {
    font-size: 13px;
  }
}
/*
 * Responsive values ported from the published Rubrika Framer build.
 * This file is imported last and is intentionally scoped below 1200px so the
 * existing desktop implementation remains unchanged.
 */

@media (max-width: 1199px) and (prefers-reduced-motion: reduce) {
  .approach-process__topic-toggle::after {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 1199px) {
  :root {
    --mobile-gutter: 4vw;
    --reference-content-width: 92%;
    --reference-display: var(--rubrika-font-display);
    --reference-medium: var(--rubrika-font-medium);
    --reference-sans: var(--rubrika-font-sans);
  }

  /* Hero: production component .framer-1dljajb / .framer-137qs6b. */
  .hero {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .hero__top {
    display: flex;
    width: 100%;
    height: auto;
    padding: 128px var(--mobile-gutter) 0;
    flex-direction: column;
  }

  .hero__grid {
    top: 0;
    left: var(--mobile-gutter);
    width: var(--reference-content-width);
    height: 100%;
  }

  .hero h1 {
    position: relative;
    inset: auto;
    width: 100%;
    font-family: var(--reference-display);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .hero__meta {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 36px;
  }

  .hero__scroll,
  .hero__sign {
    font-family: var(--reference-medium);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .hero__video {
    height: 266px;
  }

  .availability__copy,
  .availability__copy strong,
  .availability__copy small {
    font-family: var(--reference-medium);
    font-weight: 600;
  }

  /* Introduction: production .framer-1asj3eb, padding 32 and gap 143. */
  .introduction {
    padding: 32px var(--mobile-gutter);
  }

  .introduction h2,
  .introduction__belief {
    font-family: var(--reference-display);
    font-weight: 600;
  }

  .introduction h2 {
    font-size: 35px;
    letter-spacing: -0.02em;
    line-height: 0.95;
    text-wrap: balance;
  }

  .introduction__axis {
    margin-top: 93px;
  }

  .introduction__belief {
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .introduction__list,
  .introduction__list strong {
    font-size: 18px;
    letter-spacing: -0.02em;
  }

  .introduction__list {
    font-family: var(--reference-sans);
    font-weight: 500;
    line-height: 1.15;
  }

  .introduction__list strong {
    font-family: var(--reference-display);
    font-weight: 700;
    line-height: 1;
  }

  /* Case component .framer-14byk60 / .framer-1ew1xu1 / .framer-swglne. */
  .case-study,
  .case-study--transparent {
    padding: 38px var(--mobile-gutter) 29px;
  }

  .case-study__inner {
    gap: 33px;
  }

  .case-study__info {
    gap: 17px;
  }

  .case-study__title {
    text-wrap: balance;
    font-family: var(--reference-display);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .case-study__description,
  .case-study__date {
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .case-study__description {
    font-family: var(--reference-display);
    font-weight: 600;
  }

  .case-study__date {
    font-family: var(--reference-sans);
    font-weight: 500;
  }

  .case-study__thumbnail {
    height: 403px;
    margin-top: 0;
    aspect-ratio: auto;
  }

  /* Process, testimonials, comparison and section headings. */
  .approach-process__heading,
  .approach-process__lede,
  .approach-process__topic-title,
  .testimonials__quote-block,
  .testimonials__author-block,
  .comparison__title,
  .comparison__reflection-title,
  .awards__item,
  .pricing-plans__title,
  .faq__title,
  .faq__lead,
  .faq__question-copy,
  .faq__description,
  .faq__intro a,
  .faq__answer,
  .about-studio__profile h2,
  .about-studio__bio,
  .about-studio__clients-title,
  .closing-cta__title,
  .closing-cta__intro,
  .closing-cta__proof,
  .site-footer__contact,
  .site-footer__navigation {
    font-family: var(--reference-display);
    font-weight: 600;
  }

  .approach-process__body,
  .approach-process__topic-body {
    font-family: var(--reference-display);
    font-weight: 600;
  }

  .comparison__copy,
  .comparison__matrix,
  .pricing-card,
  .site-footer__copyright {
    font-family: var(--reference-sans);
  }

  .approach-process__heading {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .approach-process__lede {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .approach-process__body,
  .approach-process__topic-body {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .approach-process__topic-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.9;
  }

  .testimonials__quote-block {
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 0.9;
  }

  .testimonials__author-block {
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  [data-comparison].comparison {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .comparison__title,
  .pricing-plans__title,
  .faq__title {
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .awards__item,
  .awards__item:nth-child(n) {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.8;
  }

  [data-pricing-plans].pricing-plans {
    padding-top: 69px;
    padding-bottom: 58px;
  }

  [data-faq].faq {
    padding-top: 57px;
    padding-bottom: 57px;
  }

  .faq__lead {
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .faq__question-copy {
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 0.9;
  }

  .about-studio__profile h2 {
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .closing-cta__title {
    font-size: 33px;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  .closing-cta__intro {
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .site-footer__contact {
    font-size: 35px;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .site-footer__navigation {
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 20px;
  }

  /* Published full-viewport navigation overlay. */
  .mobile-menu {
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 0;
    padding: 0 var(--mobile-gutter);
    overflow-x: hidden;
    overflow-y: auto;
    color: #f0ede4;
    background: #6e1314;
    overscroll-behavior: contain;
    scrollbar-width: none;
    transition: none;
    will-change: clip-path, opacity;
  }

  .mobile-menu::-webkit-scrollbar {
    display: none;
  }

  .mobile-menu__logo,
  .mobile-menu__close span,
  .mobile-menu__navigation a,
  .mobile-menu__socials a,
  .mobile-menu__signature {
    will-change: transform, opacity, clip-path;
  }

  .mobile-menu__top {
    height: 78px;
    min-height: 78px;
    padding-top: 25px;
  }

  .mobile-menu__logo,
  .mobile-menu__logo img {
    width: 53px;
    height: 53px;
  }

  .mobile-menu__logo img {
    filter: brightness(0) invert(1);
  }

  .mobile-menu__close {
    width: 37px;
    height: 39px;
    margin-top: 0;
    color: #f0ede4;
  }

  .mobile-menu__close span {
    top: 18px;
    left: 0;
    width: 37px;
    height: 2px;
  }

  .mobile-menu__navigation {
    margin-top: 10px;
    flex: none;
  }

  .mobile-menu__navigation a {
    min-height: clamp(50px, 6.9dvh, 58px);
    border-bottom-color: rgb(240 237 228 / 28%);
    color: #f0ede4;
    font-family: var(--reference-medium);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .mobile-menu__footer {
    width: 100%;
    height: auto;
    margin-top: auto;
    padding: clamp(18px, 3.5dvh, 31px) 0 max(14px, env(safe-area-inset-bottom));
    flex: none;
  }

  .mobile-menu__socials {
    height: 42px;
    padding: 0 0 23px;
    border-bottom-color: rgb(240 237 228 / 28%);
    color: #f0ede4;
    font-family: var(--reference-medium);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .mobile-menu__signature {
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 18px;
    padding: 0;
    aspect-ratio: 1821 / 514;
    background: transparent;
    filter: brightness(0) invert(1);
    object-fit: fill;
    opacity: 1;
  }

  .mobile-menu__close:focus-visible,
  .mobile-menu__navigation a:focus-visible,
  .mobile-menu__socials a:focus-visible {
    outline-color: #f0ede4;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  /* The reference keeps the same type scale on tablet. */
  .hero {
    gap: 25px;
  }
}

/*
 * Structural mobile variants from the published component tree.  These are
 * kept in a second, mobile-only layer so no desktop declaration is replaced.
 */
@media (max-width: 1199px) {
  /* The Framer hero player deliberately overfills its 410 x 266 crop. */
  .hero__video {
    position: relative;
    overflow: hidden;
  }

  .hero__reference-iframe {
    top: 50% !important;
    left: 50% !important;
    width: 184.54% !important;
    max-width: none !important;
    height: 240% !important;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  /* Closed header component (.framer-xaYxQ, phone variant). Its intrinsic
     right group is intentionally allowed to overrun narrow 360px screens,
     matching the published component rather than squeezing the CTA. */
  .header {
    top: 0;
    height: 80px;
  }

  .logo {
    top: 18px;
    width: 62px;
    height: 62px;
  }

  .logo img {
    width: 62px;
    height: 62px;
  }

  .availability {
    top: 21px;
    right: auto;
    left: max(62px, calc(100% - 294px));
    width: 243px;
  }

  .mobile-menu-toggle {
    top: 42px;
    right: auto;
    left: calc(max(62px, calc(100% - 294px)) + 257px);
    width: 37px;
    height: 14px;
    padding: 0;
    gap: 10px;
  }

  .mobile-menu-toggle span {
    width: 37px;
    height: 2px;
  }

  /* The two list columns finish 5px lower in the published 410px variant. */
  .introduction__footer {
    grid-template-columns: 139px 158px;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 36px;
  }

  .introduction__belief {
    grid-column: 1 / -1;
    height: 94px;
    text-wrap: balance;
  }

  .introduction__belief br {
    display: none;
  }

  .introduction__list strong {
    margin-bottom: 16px;
  }

  /* Case descriptions retain their real copy but expose exactly three lines. */
  .case-study__description {
    display: -webkit-box;
    height: 60px;
    margin-top: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .case-study__date {
    margin-top: 0;
  }

  /* The published accordion keeps the same DOM in both states: a 28.8px
     title, 33px of breathing room to the divider and a 25px body gap only
     when the answer is present. */
  .approach-process__list {
    gap: 30px;
  }

  .approach-process__topic,
  .approach-process__topic:nth-child(n) {
    min-height: 0;
    height: auto;
    padding: 0 0 32.125px;
    border-top: 0;
    border-bottom: 1px solid rgb(28 29 25 / 24%);
  }

  .approach-process__topic-row,
  .approach-process__topic:nth-child(n) .approach-process__topic-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .approach-process__topic-toggle,
  .approach-process__topic:last-child .approach-process__topic-toggle {
    min-height: 0;
    height: 28.8px;
    align-items: center;
  }

  .approach-process__topic-body {
    width: 100%;
    max-width: 522px;
    padding: 0;
    text-wrap: balance;
  }

  .approach-process__topic:nth-child(2) .approach-process__topic-body {
    white-space: normal;
  }

  .approach-process__topic:last-child {
    height: auto;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .approach-process__topic:last-child .approach-process__topic-toggle {
    height: 28.8px;
  }

  /* Published testimonial component has quote, media, author, portraits and
     progress only. The desktop arrows/counter/logo remain untouched above. */
  .testimonials {
    height: 996px;
    min-height: 996px;
  }

  .testimonials__inner {
    height: 100%;
    min-height: 0;
    padding: 32px var(--mobile-gutter) 49px;
  }

  .testimonials__content {
    width: 100%;
    gap: 0;
  }

  .testimonials__quote-block,
  .testimonials__author-block {
    transform: none;
  }

  .testimonials__quote-block:not(.is-active),
  .testimonials__author-block:not(.is-active) {
    opacity: 0;
  }

  .testimonials__quote-block.is-active,
  .testimonials__author-block.is-active {
    opacity: 1;
  }

  .testimonials__logo,
  .testimonials__slider {
    display: none;
  }

  .testimonials__name-photos {
    position: absolute;
    right: var(--mobile-gutter);
    bottom: 49px;
    left: var(--mobile-gutter);
    width: auto;
    height: 172.8px;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }

  .testimonials__author {
    height: 59.8px;
    min-height: 59.8px;
  }

  .testimonials__photos {
    width: auto;
    gap: 11.36px;
  }

  .testimonials__photo {
    width: 73px;
    height: 73px;
    flex-basis: 73px;
  }

  /* Comparison keeps a single component: title -> duration graphic -> mobile
     comparison tabs -> editorial copy. */
  [data-comparison].comparison {
    height: auto;
    padding: 58px 0 62px;
  }

  .comparison__inner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .comparison__title {
    width: var(--reference-content-width);
    min-height: 0;
    margin: 0 auto;
    line-height: 0.95;
  }

  .comparison__timeline {
    --comparison-canvas: 100%;
    width: var(--reference-content-width);
    height: 177.9px;
    margin: 0 auto;
    overflow: hidden;
  }

  .comparison__scale {
    position: relative;
    display: flex;
    width: 100%;
    height: 41px;
    padding: 30px 0 0;
    justify-content: space-between;
  }

  .comparison__scale::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(90deg, rgb(28 29 25 / 16%) 0 1px, transparent 1px 12px);
    content: "";
  }

  .comparison__scale-ruler,
  .comparison__scale li:nth-child(n + 5) {
    display: none;
  }

  .comparison__track {
    width: 100%;
    height: 39px;
  }

  .comparison__track--rubrika {
    top: 48px;
  }

  .comparison__track--freelancer {
    top: 94px;
  }

  .comparison__track--agency {
    top: 140px;
  }

  .comparison__track-line {
    top: 16px;
  }

  .comparison__tag,
  .comparison__tag--rubrika {
    width: 117px;
    min-width: 0;
    height: 39px;
    padding: 0 7px;
    gap: 10px;
  }

  .comparison__tag--rubrika {
    width: 101px;
  }

  .comparison__track--agency .comparison__tag {
    width: 158px;
    min-width: 158px;
  }

  .comparison__content {
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    flex-direction: column;
    gap: 30px;
  }

  .comparison__matrix {
    order: 1;
    display: flex;
    width: 378px;
    height: 403px;
    margin: 0 auto;
    flex-direction: column;
    overflow: hidden;
  }

  .comparison__matrix-head {
    display: flex;
    width: max-content;
    min-width: 0;
    height: 42px;
    margin: 0 0 16px;
    flex: 0 0 42px;
    column-gap: 0;
    overflow: visible;
    border-bottom: 1px solid var(--ink);
  }

  .comparison__matrix-head p {
    display: flex;
    width: auto;
    height: 42px;
    padding: 0 24px;
    flex: none;
    align-items: center;
    border-radius: 0;
    color: rgb(28 29 25 / 50%);
    font-size: 18px;
    line-height: 18px;
    background: transparent;
    cursor: pointer;
  }

  .comparison__matrix-head p:nth-child(1) {
    width: 109.84px;
  }

  .comparison__matrix-head p:nth-child(2) {
    width: 195.28px;
  }

  .comparison__matrix-head p:nth-child(3) {
    width: 132.14px;
  }

  .comparison__matrix-head p[aria-selected="true"] {
    color: var(--ink);
    background: #a9d8ca;
  }

  .comparison__matrix-row {
    display: block;
    width: 378px;
    min-width: 0;
    height: 69px;
    min-height: 69px;
    flex: 0 0 69px;
    border-bottom: 1px solid #d9d9d9;
  }

  .comparison__matrix-row p {
    display: none;
    width: 100%;
    height: 69px;
    padding: 0 45px 0 0;
    align-items: center;
    color: var(--ink);
    font-size: 18px;
    line-height: 18px;
  }

  .comparison__matrix[data-mobile-column="0"] .comparison__matrix-row p:nth-child(1),
  .comparison__matrix[data-mobile-column="1"] .comparison__matrix-row p:nth-child(2),
  .comparison__matrix[data-mobile-column="2"] .comparison__matrix-row p:nth-child(3) {
    display: flex;
  }

  .comparison__yes::before,
  .comparison__no::before {
    right: 1px;
    left: auto;
    width: 23px;
    height: 23px;
  }

  .comparison__intro {
    order: 2;
    display: flex;
    width: var(--reference-content-width);
    height: auto;
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
    color: rgb(28 29 25 / 50%);
    font-size: 18px;
    line-height: 18px;
  }

  .comparison__question {
    width: 100%;
    margin: 0 !important;
    color: var(--ink);
    font-size: 21px;
    line-height: 0.95;
    margin-bottom: 21px !important;
  }

  .comparison__intro p + p {
    margin: 18px 0 0;
  }

  .comparison__intro .comparison__question + p {
    margin-top: 0;
  }

  .comparison__seal {
    display: none;
  }

  /* Awards component: 240px label stack + 43px gap + 406px media. */
  [data-awards].awards {
    display: grid;
    height: 764px;
    min-height: 764px;
    padding: 44px var(--mobile-gutter) 31px;
    grid-template-areas: "list" "media";
    grid-template-rows: 240px 406px;
    gap: 43px;
  }

  .awards__list {
    height: 240px;
  }

  .awards__item,
  .awards__item:nth-child(n) {
    min-height: 51px;
    height: 51px;
    padding: 0;
    flex: 0 0 51px;
    line-height: 32px;
  }

  .awards__item:last-child {
    min-height: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .awards__media {
    width: 100%;
    height: 406px;
  }

  /* Exact pricing stack. The horizontal scroller needs a real 36px top
     inset: when overflow-x is auto, CSS computes overflow-y: visible to
     auto and otherwise clips the Professional "Recommended" tab. Moving
     those 36px from the margin into the rail keeps the card and every
     section below it at the same document coordinate. */
  [data-pricing-plans].pricing-plans {
    display: flex;
    height: 977.4px;
    min-height: 977.4px;
    padding: 69px 0 58px;
    flex-direction: column;
  }

  .pricing-plans__title {
    width: var(--reference-content-width);
    min-height: 68.4px;
    margin: 0 auto;
  }

  .pricing-plans__grid {
    width: 100%;
    height: 757px;
    margin: 25px 0 0;
    padding: 36px var(--mobile-gutter) 0;
    align-items: stretch;
    gap: 16px;
  }

  /* Showreel media shares the section's exact 478px frame. */
  [data-showreel].showreel {
    height: 478px;
    min-height: 478px;
  }

  .showreel__media {
    top: -0.5px;
    height: 478px;
  }

  /* FAQ: direct flex representation of .framer-rxqvbh/.framer-my8o2a. */
  [data-faq].faq {
    display: flex;
    height: auto;
    min-height: 941.9px;
    padding: 57px var(--mobile-gutter);
    flex-direction: column;
    gap: 32px;
  }

  .faq__title,
  .faq__intro,
  .faq__list {
    width: 100%;
    margin: 0;
  }

  .faq__intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .faq__description,
  .faq__intro a {
    min-height: 0;
    margin: 0 !important;
    font-size: 20px;
    line-height: 20px;
  }

  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 31px;
    margin-top: 3.45px;
  }

  .faq__item,
  .faq__item:first-child {
    min-height: 0;
    padding: 0 0 25px;
    border-bottom: 1px solid rgb(28 29 25 / 18%);
  }

  .faq__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .faq__item::after,
  .faq__item:not(:last-child)::after {
    display: none;
  }

  .faq__question,
  .faq__item:first-child .faq__question {
    display: grid;
    min-height: 0;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) 22px;
    grid-template-rows: auto auto;
    column-gap: 29px;
  }

  .faq__question-copy {
    font-size: 28px;
    line-height: 25.2px;
    text-wrap: balance;
  }

  .faq__question-copy span,
  .faq__question-copy strong {
    color: inherit;
  }

  .faq__question-copy > span,
  .faq__question-copy > strong {
    display: inline;
  }

  .faq__question-copy > strong::before {
    content: " ";
  }

  .faq__icon {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .faq__answer {
    width: 100%;
    margin-top: 29px;
    grid-column: 1;
    font-size: 18px;
    line-height: 18px;
    text-wrap: balance;
  }

  /* Only the selected About profile participates in the mobile grid. */
  [data-about].about-studio {
    height: auto;
    min-height: 1372.4px;
    padding: 49px var(--mobile-gutter);
  }

  .about-studio__profile:not(.is-active) {
    display: none;
  }

  .about-studio__profile {
    margin-top: 35px;
  }

  .about-studio__bio,
  .about-studio__profile:not([data-about-profile="0"]) .about-studio__bio {
    width: min(100%, 580px);
    margin-top: 21px;
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 18px;
  }

  .about-studio__profile[data-about-profile="1"] .about-studio__bio {
    letter-spacing: -0.04em;
  }

  .about-studio__profile[data-about-profile="1"] .about-studio__bio p + p {
    margin-top: 0;
  }

  .about-studio__profile[data-about-profile="1"] .about-studio__bio p:nth-child(3),
  .about-studio__profile[data-about-profile="1"] .about-studio__bio p:nth-child(4) {
    margin-top: 18px;
  }

  .about-studio__clients-title {
    margin: 50px 0 20px;
    font-size: 24px;
    line-height: 22.8px;
  }

  .about-studio__clients {
    height: 250px;
  }

  .about-studio__client {
    width: 164.2px;
    flex-basis: 164.2px;
    padding: 15px;
  }

  .about-studio__client small,
  .about-studio__client p {
    left: 15px;
    font-family: var(--reference-sans);
    font-size: 10px;
    letter-spacing: -0.02em;
    line-height: 10px;
  }

  .about-studio__client small {
    top: 15px;
  }

  .about-studio__client p {
    bottom: 15px;
    max-width: 134px;
    font-weight: 500;
  }

  .about-studio__client img {
    max-width: 105px;
    max-height: 98px;
  }

  /* Closing CTA remains the same component, with the published phone geometry. */
  [data-closing-cta].closing-cta {
    height: 551px;
    min-height: 551px;
    padding: 70px var(--mobile-gutter);
  }

  .closing-cta__intro {
    margin-top: 24px;
  }

  .closing-cta__action {
    width: 342.47px;
    height: 83.2px;
    margin-top: 28px;
    padding: 14.5px;
    flex: 0 0 83.2px;
    gap: 25.56px;
  }

  .closing-cta__mark,
  .closing-cta__arrow-shell {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .closing-cta__proof {
    width: 618px;
    height: 115.6px;
    margin-top: 28.4px;
    flex: 0 0 115.6px;
  }

  /* Footer uses the single-column phone variant, not the desktop two columns. */
  .site-footer {
    height: calc(661px + 25.9638vw);
    min-height: calc(661px + 25.9638vw);
    padding: 51px var(--mobile-gutter) 0;
  }

  .site-footer__lower {
    inset: 605px 0 0;
  }

  .site-footer__contact {
    height: 105px;
    min-height: 105px;
    font-size: 35px;
    line-height: 35px;
  }

  .site-footer__contact h2,
  .site-footer__contact a {
    min-height: 35px;
    height: 35px;
    line-height: 35px;
  }

  .site-footer__navigation {
    display: flex;
    width: 145px;
    height: 370px;
    margin-top: 35px;
    flex-direction: column;
    grid-template-columns: none;
    gap: 31px;
  }

  .site-footer__navigation > div {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .site-footer__navigation a {
    min-height: 36px;
    height: 36px;
    line-height: 20px;
  }

  .site-footer__back-top {
    grid-column: auto;
  }

  .site-footer__signature {
    width: 100%;
    height: auto;
    margin: 44px 0 0;
    object-fit: fill;
  }

  .site-footer__copyright {
    position: absolute;
    top: calc(583px + 25.9638vw);
    left: 9.81px;
    width: var(--reference-content-width);
    height: 14px;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  [data-faq].faq,
  [data-about].about-studio {
    min-height: 0;
  }
}

/*
 * Final phone parity layer. These declarations come from the computed 410px
 * production variant and intentionally stay behind the mobile breakpoint.
 */
@media (max-width: 1199px) {
  /* Preserve the four asymmetric column bays indicated by the paired ticks
     on the magenta axis. Each 19px interval is a real transparent gutter,
     matching the desktop grid instead of four touching color panels. */
  .introduction__grid {
    grid-template-columns:
      calc(29% - 19px)
      calc(26% - 19px)
      calc(26% - 19px)
      19%;
    gap: 19px;
  }

  .introduction__grid span {
    border-left: 0;
  }

  html,
  body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  main > section {
    scroll-margin-top: 0;
  }

  .availability__copy strong {
    color: rgb(28 29 25 / 50%);
    font-size: 16px;
    line-height: 16px;
    overflow: visible;
    text-overflow: clip;
  }

  /* Transfer a few pixels from the avatar/copy gap to the copy/arrow gap.
     The pill keeps its exact outer width and the arrow stays aligned. */
  .availability {
    gap: 6px;
  }

  .availability__arrow {
    margin-left: 16px;
  }

  .availability__copy small {
    color: rgb(28 29 25 / 25%);
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 14px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .hero h1 {
    text-wrap: balance;
  }

  /* Testimonials: each published variant owns a distinct media crop. */
  .testimonials {
    background: #000;
  }

  .testimonials__bg {
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .testimonials__bg::after {
    display: none;
  }

  .testimonials__bg-img {
    right: auto;
    bottom: auto;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 75%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 75%,
      transparent 100%
    );
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .testimonials__bg-img[data-slide="0"] {
    top: 315px;
    left: -205px;
    width: 782px;
    height: 500px;
  }

  .testimonials__bg-img[data-slide="1"] {
    top: 338px;
    left: -123px;
    width: 710px;
    height: 454px;
  }

  .testimonials__bg-img[data-slide="2"] {
    top: 345px;
    left: -169px;
    width: 710px;
    height: 428px;
  }

  .testimonials__quote-block {
    color: #f0ede4;
    text-wrap: balance;
  }

  .testimonials__quote-muted {
    color: rgb(240 237 228 / 50%);
    opacity: 1;
  }

  .testimonials__name-photos {
    top: auto;
  }

  /* Comparison timeline and tab matrix. */
  .comparison__title {
    text-wrap: wrap;
  }

  .comparison__title em,
  .comparison__title > span {
    display: block;
  }

  .comparison__title > span {
    text-wrap: balance;
  }

  .comparison__scale li:nth-of-type(-n + 4) {
    display: list-item;
  }

  .comparison__scale li:nth-of-type(n + 5) {
    display: none;
  }

  .comparison__tag {
    font-family: var(--reference-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .comparison__track-line::before {
    display: none;
  }

  .comparison__track--freelancer .comparison__track-line,
  .comparison__track--agency .comparison__track-line {
    background: linear-gradient(currentColor, currentColor) 0 3px / 100% 1px no-repeat;
  }

  .comparison__matrix-head {
    column-gap: 10px;
    border-bottom: 0;
  }

  /* Matrix and editorial copy share the same 92% content rail. Only the tab
     strip scrolls, so the last option remains reachable on narrow phones
     while the five comparison rows stay aligned to the Ask block below. */
  .comparison__matrix {
    width: var(--reference-content-width);
    overflow: visible;
  }

  .comparison__matrix-head {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
  }

  .comparison__matrix-head::-webkit-scrollbar {
    display: none;
  }

  .comparison__matrix-head p {
    scroll-snap-align: start;
  }

  .comparison__matrix-row {
    width: 100%;
  }

  .comparison__matrix-head p:first-child {
    border-radius: 0;
  }

  .comparison__matrix-row:first-of-type {
    border-top: 1px solid var(--ink);
  }

  .awards__video-copy {
    z-index: 2;
    opacity: 1;
    transform: none;
  }

  .awards__credit {
    top: 34px;
    right: 34px;
    width: 309.19px;
    font-family: var(--reference-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
  }

  .awards__result,
  .awards__result--top {
    top: auto;
    right: auto;
    bottom: 34px;
    left: 34px;
    width: 309.19px;
    max-width: 309.19px;
    font-family: var(--reference-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 0.9;
  }

  .awards__result strong {
    font-weight: 600;
  }

  /* Pricing cards retain the production card height but no longer compress
     their internal type and controls. */
  .pricing-card__header {
    height: 83.84px;
    padding: 0 5%;
  }

  .pricing-card__price {
    font-family: var(--reference-display);
    font-size: 45px;
    font-weight: 600;
    line-height: 0.93;
  }

  .pricing-card h4,
  .pricing-card__section-title h4 {
    font-size: 18px;
    line-height: 1.1;
  }

  .pricing-card__sprint {
    display: flex;
    height: 189.78px;
    padding: 15px 5% 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pricing-card__section-title {
    width: 100%;
    min-height: 33.6px;
    height: 33.6px;
    flex: 0 0 33.6px;
  }

  .pricing-card__section-title span {
    min-height: 33.6px;
    height: 33.6px;
    padding: 8px 16px;
    border: 0;
    font-size: 16px;
    line-height: 17.6px;
  }

  .pricing-card__sprint ul {
    width: 100%;
    margin-top: 0;
    gap: 12px;
  }

  .pricing-card__sprint li {
    font-size: 18px;
    line-height: 1.1;
  }

  .pricing-card__after {
    top: 273.62px;
    padding: 26.28px 5% 96px;
  }

  .pricing-card__after ul {
    margin-top: 22px;
    gap: 10px;
  }

  .pricing-card__after li {
    min-height: 24px;
    gap: 10px;
    font-size: 18px;
    line-height: 1;
  }

  .pricing-card__after li img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .pricing-card__cta {
    right: 5%;
    bottom: 22.5px;
    left: 5%;
    min-height: 62px;
    height: 62px;
  }

  .pricing-card__cta-track {
    height: 21.6px;
    font-size: 18px;
    line-height: 21.6px;
  }

  .pricing-card--personalized::before {
    top: 83.84px;
    height: 189.78px;
  }

  .pricing-card__personalized-copy::after {
    top: 273.62px;
  }

  /* Vimeo production frame: an exact 16:9 cover inside 410 x 478. */
  .showreel__media {
    top: 0;
    height: 478px;
    opacity: 1 !important;
    transform: none !important;
  }

  .showreel__poster {
    display: none !important;
  }

  .showreel__iframe {
    top: 50%;
    left: 50%;
    width: calc(478px * 16 / 9);
    max-width: none !important;
    height: 478px;
    transform: translate(-50%, -50%);
  }

  /* Published CTA pill and vertically stacked trust proof. */
  .closing-cta__intro {
    text-wrap: balance;
  }

  .closing-cta__action {
    padding: 11.6px;
    gap: 20.448px;
  }

  .closing-cta__action-copy {
    width: 158.4px;
    min-width: 158.4px;
    flex: 0 0 158.4px;
    gap: 5px;
    overflow: visible;
  }

  .closing-cta__action-copy strong {
    color: rgb(0 0 0 / 50%);
    font-size: 18.9px;
    line-height: 18.9px;
    white-space: nowrap;
  }

  .closing-cta__action-copy small {
    width: 188px;
    color: rgb(0 0 0 / 25%);
    font-size: 16.8px;
    letter-spacing: -0.01em;
    line-height: 16.8px;
    white-space: nowrap;
  }

  .closing-cta__proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .closing-cta__proof p {
    order: 1;
    width: 255px;
    height: 20.9px;
    flex: 0 0 20.9px;
    font-size: 22px;
    line-height: 20.9px;
  }

  .closing-cta__rating {
    order: 2;
    display: flex;
    width: 170px;
    height: 24.7px;
    flex: 0 0 24.7px;
    justify-content: center;
    gap: 10px;
    font-size: 26px;
    line-height: 24.7px;
  }

  .closing-cta__stars {
    width: 123px;
    height: 24px;
    gap: 2px;
  }

  .closing-cta__stars img {
    width: 23px;
    height: 24px;
  }

  .closing-cta__clients {
    order: 3;
    width: 127px;
    height: 50px;
  }

  .closing-cta__clients img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .closing-cta__clients img + img {
    margin-left: -11.5px;
  }

  .approach-process__lede {
    text-wrap: balance;
  }

  .faq__lead {
    text-wrap: balance;
  }

  .approach-process__body strong {
    font-weight: inherit;
  }

  .approach-process__topic-toggle::after {
    width: 22px;
    height: 22px;
    font-size: 0;
    content: "";
    transform: rotate(0deg) scale(1);
    transform-origin: 50% 50%;
    transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
    background:
      linear-gradient(currentColor, currentColor) 50% 50% / 22px 1px no-repeat,
      linear-gradient(currentColor, currentColor) 50% 50% / 1px 22px no-repeat;
  }

  .approach-process__topic-toggle[aria-expanded="true"]::after {
    content: "";
    transform: rotate(180deg) scale(0.94);
    background: linear-gradient(currentColor, currentColor) 50% 50% / 22px 1px no-repeat;
  }

  .approach-process__topic:not(:last-child) {
    border-bottom-color: rgb(139 138 135);
  }

  .approach-process__topic-toggle:focus-visible,
  .faq__question:focus-visible {
    outline: 1px auto #005fcc;
    outline-offset: 0;
  }

  /* Keep the footer in normal flex flow. The remaining viewport gap becomes
     its spacer, so shorter browser/editor canvases never crop the social row
     or the signature. Scrolling remains available only as a small-screen
     safety net. */
  .mobile-menu__footer {
    position: static;
    margin-top: auto;
  }

  .mobile-menu__socials {
    height: 41px;
    padding: 0 0 23px;
  }

  .mobile-menu__signature {
    height: auto;
    margin-top: 18px;
  }

  /* Footer geometry, colors and signature band from the phone component. */
  .site-footer {
    background: #6c1414;
  }

  /* The phone footer keeps its construction guides visible: two full-height
     vertical rules at the 4vw rail and one horizontal rule at the contact
     baseline. They belong to the footer frame, not to its text blocks. */
  .site-footer::before,
  .site-footer::after {
    position: absolute;
    z-index: 6;
    display: block;
    content: "";
    pointer-events: none;
  }

  .site-footer::before {
    inset: 0;
    background:
      linear-gradient(#8dccb7, #8dccb7) var(--mobile-gutter) 0 / 1px 100% no-repeat,
      linear-gradient(#8dccb7, #8dccb7) calc(100% - var(--mobile-gutter)) 0 / 1px 100% no-repeat;
  }

  .site-footer::after {
    top: 51px;
    right: 0;
    left: 0;
    height: 1px;
    background: #8dccb7;
  }

  .site-footer__grid {
    display: none;
  }

  .site-footer__contact a,
  .site-footer__back-top {
    color: #f0ede4;
  }

  .site-footer__lower {
    border-top: 1px solid #8dccb7;
  }

  .site-footer__lower::after {
    position: absolute;
    top: 25.9638vw;
    right: 0;
    left: 0;
    height: 1px;
    background: #8dccb7;
    content: "";
    pointer-events: none;
  }

  .site-footer__signature {
    width: 100%;
    height: auto !important;
    margin-top: 44px;
    aspect-ratio: 1821 / 514;
    border: 0;
    object-fit: fill;
  }

  .site-footer__copyright {
    text-align: right;
    white-space: nowrap;
  }
}
.case-detail-page {
  overflow-x: clip;
}

.case-page {
  position: relative;
  width: 100%;
  overflow: clip;
  background: var(--paper);
}

.case-page__ruler {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: var(--layout-ruler-width);
  height: 100%;
}

.case-hero {
  position: relative;
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  height: 36.75rem;
  margin: 0 auto;
}

.case-hero__header {
  position: relative;
  width: 100%;
  height: 5rem;
  padding-top: 1.5625rem;
}

.case-hero__header .header {
  top: 1.5625rem;
}

.case-hero__header .navigation [aria-current="page"] .nav-link__layer--top,
.case-hero__header .navigation [aria-current="page"] {
  color: rgb(28 29 25 / 50%);
}

.case-hero__back {
  position: absolute;
  top: 11.5625rem;
  right: 0;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5625rem;
  color: var(--ink);
  font-family: var(--rubrika-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  transition:
    color 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-hero__back::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 1.0625rem;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-hero__back-icon {
  display: block;
  width: 0.5rem;
  height: 0.71338125rem;
  flex: 0 0 auto;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-hero__back:is(:hover, :focus-visible) {
  color: #45a98a;
  transform: translateX(-0.1875rem);
}

.case-hero__back:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.case-hero__back:is(:hover, :focus-visible) .case-hero__back-icon {
  transform: translateX(-0.25rem);
}

.case-hero__title {
  position: absolute;
  top: 11.875rem;
  left: 0;
  width: min(100%, 62.875rem);
  max-width: 62.875rem;
  margin: 0;
  color: var(--ink);
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: -0.0213em;
  line-height: 0.95;
  text-wrap: balance;
}

.case-hero__title span {
  display: inline;
  color: rgb(28 29 25 / 50%);
  white-space: normal;
}

.case-hero__title sup {
  position: relative;
  top: -0.55em;
  font-size: 0.34em;
  line-height: 0;
}

.case-hero__description {
  position: absolute;
  top: 21.25rem;
  left: 0;
  width: min(100%, 56.25rem);
  max-width: 56.25rem;
  margin: 0;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}

.case-hero__tags {
  position: absolute;
  top: 31.5rem;
  left: 0;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0.625rem;
  list-style: none;
}

.case-hero__tags li {
  display: grid;
  min-height: 2.125rem;
  padding: 0.75rem 1.25rem;
  place-items: center;
  border-radius: 5rem;
  background: rgb(139 138 135 / 10%);
  font-family: var(--rubrika-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.case-gallery {
  display: flex;
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  margin: 0 auto;
  flex-direction: column;
  gap: 3.125rem;
}

.case-gallery__item {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e9e5dd;
}

.case-gallery__item--01 { aspect-ratio: 1820 / 1290; }
.case-gallery__item--02 { aspect-ratio: 1820 / 1138; }
.case-gallery__item--03 { aspect-ratio: 1820 / 1024; }
.case-gallery__item--04 { aspect-ratio: 1820 / 1143; }
.case-gallery__item--05 { aspect-ratio: 1820 / 1185; }
.case-gallery__item--06 { aspect-ratio: 1820 / 1451; }

.case-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-gallery__item--04 img,
.case-gallery__item--06 img {
  object-fit: contain;
}

.case-gallery__item:hover img {
  transform: scale(1.012);
}

.case-information {
  display: grid;
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  min-height: 14.125rem;
  padding: 3.125rem 0 3.125rem;
  margin: 0 auto;
  grid-template-columns: 2fr 1fr 1fr 0.85fr;
  gap: 1.1875rem;
}

.case-information h2,
.case-information h3,
.case-information p,
.case-information dl,
.case-information dd {
  margin: 0;
}

.case-information h2 {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.case-information__heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.case-information__download {
  position: relative;
  display: flex;
  width: 15.125rem;
  height: 3.5rem;
  overflow: hidden;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgb(28 29 25 / 8%);
  font-family: var(--rubrika-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.case-information__download::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #8dcdb8;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-information__download:is(:hover, :focus-visible) {
  transform: translateY(-0.125rem);
}

.case-information__download:is(:hover, :focus-visible)::before {
  transform: scaleX(1);
}

.case-information__download:focus-visible {
  outline: 0.125rem solid var(--ink);
  outline-offset: -0.25rem;
}

.case-information__download img,
.case-information__download span {
  position: relative;
  z-index: 1;
}

.case-information__download img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.case-information__facts {
  display: grid;
  align-content: start;
  gap: 2.25rem;
}

.case-information dt,
.case-information h3 {
  margin-bottom: 0.8125rem;
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.case-information dd,
.case-information__services p,
.case-information__credits p {
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.53;
}

.case-information__facts dd { line-height: 1.15; }
.case-information__credits { justify-self: end; }

.related-projects {
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  padding: 0 0 3.125rem;
  margin: 0 auto;
}

.related-projects > h2 {
  margin: 0 0 3.125rem;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.related-projects > h2 span {
  display: block;
  color: rgb(28 29 25 / 50%);
}

.related-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.related-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 440 / 344;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 0;
  background: #e7e3dc;
}

.related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:first-child .related-card__media img { transform: scale(1.38); }
.related-card:nth-child(2) .related-card__media img { transform: scale(1.09); }
.related-card:hover .related-card__media img { transform: scale(1.04); }
.related-card:first-child:hover .related-card__media img { transform: scale(1.43); }
.related-card:nth-child(2):hover .related-card__media img { transform: scale(1.14); }

.related-card strong,
.related-card small {
  overflow: hidden;
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-card strong { font-weight: 700; }
.related-card small { margin-top: 0.4375rem; color: rgb(28 29 25 / 50%); font-weight: 500; }

@media (max-width: 1199px) {
  .case-detail-page,
  .case-page {
    width: 100%;
    min-width: 0;
  }

  .case-detail-page { overflow: visible; }
  .case-page { overflow: clip; }
  .case-page__ruler { display: none; }

  .case-hero {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 590px;
    padding: 0 var(--mobile-gutter) 58px;
  }

  .case-hero__header {
    width: 100%;
    height: 94px;
    padding: 0;
  }

  .case-hero__header .header {
    top: 13px;
    left: 0;
    width: 100%;
  }

  .case-hero__back {
    position: static;
    margin-top: 26px;
    font-size: 14px;
  }

  .case-hero__title {
    position: static;
    width: min(100%, 1006px);
    max-width: 1006px;
    margin-top: 56px;
    font-size: clamp(38px, 8.5vw, 66px);
    letter-spacing: -0.04em;
    line-height: 0.94;
    text-wrap: balance;
  }

  .case-hero__title br { display: none; }

  .case-hero__description {
    position: static;
    width: min(100%, 900px);
    max-width: 900px;
    margin-top: 30px;
    font-size: clamp(16px, 2.7vw, 21px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .case-hero__tags {
    position: static;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 8px;
  }

  .case-hero__tags li {
    min-height: 36px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .case-gallery {
    width: calc(100% - (2 * var(--mobile-gutter)));
    gap: clamp(16px, 3.5vw, 30px);
  }

  .case-gallery__item { border-radius: 0; }

  .case-information {
    width: calc(100% - (2 * var(--mobile-gutter)));
    min-height: 0;
    padding: clamp(50px, 8vw, 80px) 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .case-information__heading { grid-column: 1 / -1; gap: 28px; }
  .case-information__credits { justify-self: start; }
  .case-information h2 { font-size: 26px; }
  .case-information dt,
  .case-information h3,
  .case-information dd,
  .case-information__services p,
  .case-information__credits p { font-size: 16px; }

  .related-projects {
    width: calc(100% - (2 * var(--mobile-gutter)));
    padding-bottom: clamp(56px, 9vw, 90px);
  }

  .related-projects > h2 { margin-bottom: 30px; font-size: 26px; }
  .related-projects__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 18px; }
  .related-card__media { margin-bottom: 13px; }
  .related-card strong,
  .related-card small { font-size: 15px; }
}

@media (max-width: 620px) {
  .case-hero { min-height: 0; padding-bottom: 48px; }
  .case-hero__back { margin-top: 32px; }
  .case-hero__title {
    max-width: 18ch;
    margin-top: 44px;
  }
  .case-hero__description { max-width: 46ch; }
  .case-hero__tags {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .case-hero__tags li {
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: clamp(11px, 3vw, 13px);
    text-align: center;
    white-space: nowrap;
  }

  .case-information {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 32px 18px;
  }

  .case-information > * { min-width: 0; }
  .case-information__facts { gap: 24px; }
  .case-information__credits {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .case-information dd,
  .case-information__services p,
  .case-information__credits p { overflow-wrap: anywhere; }

  .related-projects > h2 {
    line-height: 1;
    word-spacing: 0.08em;
  }

  .related-projects > h2 span { word-spacing: normal; }
  .related-projects__grid { grid-template-columns: 1fr; gap: 36px; }
  .related-card strong,
  .related-card small { font-size: 16px; }
}

@media (max-width: 360px) {
  .case-hero__tags { gap: 6px; }
  .case-hero__tags li {
    padding-inline: 6px;
    font-size: 11px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .case-information__download,
  .case-information__download::before,
  .case-gallery__item img,
  .related-card__media img,
  .case-hero__back,
  .case-hero__back::after,
  .case-hero__back-icon { transition: none; }
}
/* Progressive project data layer. The selectors extend the original Rubrika
   layout without changing its spacing, typography or transition language. */

[data-rubrika-data-source="api"] [data-rubrika-project],
[data-rubrika-data-source="api"] [data-case-card] {
  --rubrika-project-source: api;
}

.case-study[data-rubrika-featured] .case-study__title {
  white-space: normal;
  text-wrap: balance;
}

@media (min-width: 1200px) {
  .case-hero--dynamic {
    height: auto;
    min-height: 36.75rem;
    padding-bottom: 3.125rem;
  }

  .case-hero--dynamic .case-hero__title {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 62.875rem);
    max-width: 62.875rem;
    margin-top: 6.875rem;
    text-wrap: balance;
  }

  .case-hero--dynamic .case-hero__description {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 56.25rem);
    max-width: 56.25rem;
    margin-top: 2.25rem;
    line-height: 1.08;
    text-wrap: balance;
  }

  .case-hero--dynamic .case-hero__tags {
    position: relative;
    top: auto;
    left: auto;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}

.cases-filters--with-categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cases-filters--with-categories.cases-filters--without-segments {
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(15rem, 0.85fr);
}

.cases-filter[hidden] {
  display: none !important;
}

.case-gallery__block {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 1.25rem;
}

.case-gallery__block--single-image,
.case-gallery__block--vimeo {
  grid-template-columns: minmax(0, 1fr);
}

.case-gallery__block--two-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-gallery__block--three-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-gallery__block--four-images {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-gallery__block .case-gallery__item {
  min-width: 0;
  aspect-ratio: auto;
  contain: paint;
}

.case-gallery__block .case-gallery__item img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.case-gallery__vimeo {
  --case-vimeo-cover-scale: 1.01;

  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: clip;
  background: transparent;
  isolation: isolate;
}

.case-gallery__vimeo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none !important;
  transform: translate(-50%, -50%) scale(var(--case-vimeo-cover-scale));
  transform-origin: center;
  backface-visibility: hidden;
}

.case-information__credits {
  display: grid;
  max-height: 24rem;
  gap: 1.5rem;
  overflow: auto;
  justify-self: stretch;
  scrollbar-width: thin;
}

.case-information__credit-group {
  min-width: 0;
}

.case-information__credit-group a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.case-information__credit-group a:is(:hover, :focus-visible) {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.case-information [hidden],
.related-projects[hidden],
.case-study[hidden] {
  display: none !important;
}

@media (max-width: 1199px) {
  .cases-filters--with-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-gallery__block--four-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-information__credits {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .cases-filters--with-categories,
  .cases-filters--with-categories.cases-filters--without-segments {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 809px) {
  .case-gallery__block--two-images,
  .case-gallery__block--three-images,
  .case-gallery__block--four-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-gallery__block,
  .case-gallery {
    gap: 1rem;
  }

}
.cases-index-page {
  overflow-x: clip;
}

.cases-index {
  position: relative;
  width: 100%;
  overflow: clip;
  background: var(--paper);
}

.cases-index__ruler {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: var(--layout-ruler-width);
  height: 100%;
}

.cases-intro,
.cases-catalog {
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  margin: 0 auto;
}

.cases-catalog {
  padding-top: 3.25rem;
}

.cases-intro {
  min-height: 7.5rem;
}

.cases-intro__header {
  position: relative;
  width: 100%;
  height: 7.5rem;
  padding-top: 1.5625rem;
}

.cases-intro__header .header {
  top: 1.5625rem;
}

.cases-intro__header .navigation [aria-current="page"] .nav-link__layer--top,
.cases-intro__header .navigation [aria-current="page"] {
  color: rgb(28 29 25 / 50%);
}

.cases-filters {
  display: grid;
  min-height: 6.875rem;
  border-top: 1px solid rgb(28 29 25 / 38%);
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(15rem, 0.85fr);
}

.cases-filter {
  --cases-filter-control-inline-start: 0rem;
  --cases-filter-option-inline-start: 2rem;

  position: relative;
  display: flex;
  min-width: 0;
  padding: 1.35rem 2rem 1.25rem 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgb(28 29 25 / 20%);
}

.cases-filter + .cases-filter {
  --cases-filter-control-inline-start: 2rem;
}

.cases-filter > span {
  padding-left: var(--cases-filter-control-inline-start);
  color: rgb(28 29 25 / 48%);
  font-family: var(--rubrika-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cases-filter__trigger {
  display: flex;
  width: 100%;
  padding: 0.45rem 0 0.1rem var(--cases-filter-control-inline-start);
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.cases-filter__trigger strong {
  font: inherit;
}

.cases-filter__trigger i {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: color 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cases-filter:is(:focus-within, .is-open) {
  color: #45a98a;
}

.cases-filter.is-open .cases-filter__trigger i {
  transform: translateY(0.2rem) rotate(225deg);
}

.cases-filter__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  transform-origin: top center;
  will-change: height, opacity, transform;
}

.cases-filter__menu[hidden] {
  display: none;
}

.cases-filter__menu button {
  display: block;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1.25rem 0.95rem var(--cases-filter-option-inline-start);
  border: 0;
  border-bottom: 1px solid rgb(28 29 25 / 16%);
  color: inherit;
  background: transparent;
  font-family: var(--rubrika-font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.cases-filter__menu button:last-child {
  border-bottom: 0;
}

.cases-filter__menu button:is(:hover, :focus-visible),
.cases-filter__menu button[aria-selected="true"] {
  outline: 0;
  color: var(--ink);
  background: #8dcdb8;
}

.cases-grid {
  display: grid;
  padding: 2rem 0 8.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem 1.25rem;
}

.cases-card {
  min-width: 0;
}

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

.cases-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 900 / 650;
  overflow: hidden;
  background: #e9e5dd;
}

.cases-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.cases-card:is(:hover, :focus-within) .cases-card__media img {
  transform: scale(1.025);
}

.cases-card__caption {
  display: grid;
  padding: 1.35rem 0 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: baseline;
  font-family: var(--rubrika-font-sans);
}

.cases-card__caption h3,
.cases-card__caption p {
  margin: 0;
}

.cases-card__caption h3 {
  min-width: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.cases-card__caption h3 sup {
  position: relative;
  top: -0.55em;
  font-size: 0.36em;
}

.cases-card__caption p,
.cases-card__caption time {
  color: rgb(28 29 25 / 50%);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.cases-empty {
  min-height: 22rem;
  padding: 7rem 0;
  margin: 0;
  color: rgb(28 29 25 / 50%);
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

.cases-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1199px) {
  .cases-index-page,
  .cases-index {
    width: 100%;
    min-width: 0;
  }

  .cases-index-page { overflow: visible; }
  .cases-index { overflow: clip; }
  .cases-index__ruler { display: none; }

  .cases-intro,
  .cases-catalog {
    width: 100%;
    max-width: none;
    padding-inline: var(--mobile-gutter);
  }

  .cases-catalog { padding-top: 32px; }

  .cases-intro { min-height: 94px; }

  .cases-intro__header {
    width: 100%;
    height: 94px;
    padding: 0;
  }

  .cases-intro__header .header {
    top: 13px;
    left: 0;
    width: 100%;
  }

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

  .cases-filter { min-height: 94px; padding: 18px 18px 16px 0; }
  .cases-filter + .cases-filter { padding-left: 18px; }
  .cases-filter:last-of-type { border-right: 0; }
  .cases-filter__trigger { font-size: 16px; }

  .cases-grid { padding: 28px 0 90px; gap: 40px 18px; }
  .cases-card__caption h3 { font-size: 24px; }
  .cases-card__caption p,
  .cases-card__caption time { font-size: 14px; }
}

@media (max-width: 767px) {
  .cases-filters { grid-template-columns: 1fr; }
  .cases-filter,
  .cases-filter + .cases-filter {
    --cases-filter-option-inline-start: 12px;

    min-height: 78px;
    padding: 14px 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgb(28 29 25 / 20%);
  }
  .cases-filter { --cases-filter-control-inline-start: 12px; }
  .cases-filter + .cases-filter { --cases-filter-control-inline-start: 12px; }
  .cases-grid { grid-template-columns: 1fr; gap: 36px; }
  .cases-card__media { aspect-ratio: 4 / 3; }
  .cases-card__caption { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 20px; }
  .cases-card__caption p { grid-column: 1 / -1; grid-row: 2; }
  .cases-card__caption time { grid-column: 2; grid-row: 1; }
}

@media (max-width: 410px) {
  .cases-grid { padding-bottom: 72px; }
  .cases-card__caption h3 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .cases-card__media img,
  .cases-filter__trigger i,
  .cases-filter__menu,
  .cases-filter__menu button { transition: none; }
}
.contact-detail-page {
  overflow-x: clip;
}

.contact-page {
  position: relative;
  width: 100%;
  overflow: clip;
  background: var(--paper);
}

.contact-page__ruler {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: var(--layout-ruler-width);
  height: 100%;
}

.contact-page__header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  height: 5rem;
  transform: translateX(-50%);
}

.contact-page__header .header {
  top: 1.5625rem;
}

.contact-lead {
  display: grid;
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  height: 85.5rem;
  padding-top: 11.875rem;
  margin: 0 auto;
  grid-template-columns: 26.5625rem minmax(0, 1fr);
  column-gap: 9rem;
}

.contact-intro h1,
.contact-intro p {
  margin: 0;
}

.contact-intro h1 {
  position: static;
  width: auto;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  white-space: nowrap;
}

.contact-intro__copy {
  display: block;
  margin-top: 2.8125rem !important;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.contact-intro__copy strong,
.contact-intro__copy span {
  font: inherit;
}

.contact-intro__copy span {
  color: rgb(28 29 25 / 50%);
}

.contact-trust {
  display: flex;
  width: max-content;
  height: 2.1875rem;
  margin-top: 1.875rem;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.contact-trust p,
.contact-trust > strong {
  margin: 0;
  white-space: nowrap;
}

.contact-trust p span {
  color: rgb(28 29 25 / 50%);
}

.contact-trust__clients {
  display: flex;
  width: 5.625rem;
  height: 2.1875rem;
  margin-left: 0.625rem;
  align-items: center;
}

.contact-trust__clients img {
  display: block;
  width: 2.1875rem;
  height: 2.1875rem;
  flex: 0 0 2.1875rem;
  border-radius: 50%;
}

.contact-trust__clients img + img {
  margin-left: -0.4375rem;
}

.contact-trust__stars {
  display: block;
  width: 5.6875rem;
  height: 1rem;
  margin-left: 0.625rem;
}

.contact-trust > strong {
  margin-left: 0.625rem;
  font-weight: 600;
}

.contact-form {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-form__field {
  width: 100%;
  height: 4.625rem;
}

.contact-form__field input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0 1.5625rem;
  border: 0;
  border-bottom: 0.0625rem solid rgb(28 29 25 / 50%);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  caret-color: #45a98a;
  transition:
    border-color 260ms ease,
    color 260ms ease;
}

.contact-form__field input::placeholder {
  color: rgb(28 29 25 / 50%);
  opacity: 1;
  transition: color 260ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__field input:focus {
  border-color: #45a98a;
}

.contact-form__field input:focus::placeholder {
  color: #45a98a;
  transform: translateX(0.1875rem);
}

.contact-form__message {
  margin-top: 1.875rem;
}

.contact-form__message label,
.contact-plans legend {
  display: block;
  margin: 0;
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  transition:
    color 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__message textarea {
  display: block;
  width: 100%;
  height: 13.5625rem;
  padding: 1rem;
  margin-top: 1.625rem;
  resize: vertical;
  border: 0.0625rem solid rgb(28 29 25 / 50%);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  caret-color: #45a98a;
  transition:
    border-color 260ms ease,
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__message textarea:focus {
  border-color: #45a98a;
  box-shadow: 0 0 0 0.0625rem rgb(69 169 138 / 18%);
}

.contact-form__message:focus-within label {
  color: #45a98a;
  transform: translateX(0.1875rem);
}

.contact-plans {
  padding: 0;
  margin: 1.875rem 0 0;
  border: 0;
}

.contact-plans__grid {
  display: grid;
  margin-top: 1.625rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.1875rem;
}

.contact-plan {
  position: relative;
  display: grid;
  height: 3.375rem;
  padding: 0 0.75rem 0 1.0625rem;
  grid-template-columns: 1.125rem minmax(0, 1fr) 1.875rem;
  gap: 1.125rem;
  align-items: center;
  border: 0.0625rem solid rgb(28 29 25 / 50%);
  cursor: pointer;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-plan:is(:hover, :focus-within) {
  border-color: var(--ink);
  transform: translateY(-0.0625rem);
}

.contact-plan:has(input:checked) {
  border-color: #45a98a;
  background: rgb(142 204 183 / 16%);
  transform: translateY(-0.125rem);
}

.contact-plan:active {
  transform: translateY(0) scale(0.985);
}

.contact-plan input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-plan__radio {
  display: grid;
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1;
  box-sizing: border-box;
  place-items: center;
  justify-self: center;
  border: 0.0625rem solid rgb(28 29 25 / 50%);
  border-radius: 999px;
  background: var(--paper);
  transition: border-color 180ms ease;
}

.contact-plan__radio::after {
  width: 70%;
  height: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #45a98a;
  content: "";
  opacity: 0;
  transform: scale(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-plan input:checked + .contact-plan__radio {
  border-color: #45a98a;
}

.contact-plan input:checked + .contact-plan__radio::after {
  opacity: 1;
  transform: scale(1);
}

.contact-plan > strong {
  overflow: hidden;
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-plan__badge {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  overflow: hidden;
}

.contact-plan__badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form__submit {
  display: grid;
  width: 100%;
  height: 3.5rem;
  padding: 0;
  margin-top: 2.75rem;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: #8eccb7;
  font-family: var(--rubrika-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color 240ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__submit:is(:hover, :focus-visible) {
  background: #9cd8c3;
  transform: translateY(-0.125rem);
}

.contact-form[aria-busy="true"] .contact-form__submit {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__feedback {
  margin-top: 0.75rem;
}

.contact-form__status {
  display: grid;
  gap: 0.2rem;
  padding: 0.875rem 1rem;
  border: 1px solid;
  color: var(--ink);
  font-family: var(--rubrika-font-display);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
}

.contact-form__status[hidden] {
  display: none !important;
}

.contact-form__status strong {
  font-size: 0.9375rem;
}

.contact-form__status--success {
  border-color: #75ad98;
  background: #dff2eb;
}

.contact-form__status--error {
  border-color: #d59c92;
  background: #f7e7e3;
}

.contact-success {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  min-width: 0;
  padding: clamp(1.5rem, 5vw, 6rem);
  place-items: center;
  color: var(--ink);
  background: rgba(250, 248, 245, 0.98);
  overflow: auto;
  overscroll-behavior: contain;
}

.contact-success[hidden] {
  display: none !important;
}

.contact-success__panel {
  display: grid;
  width: min(100%, 58rem);
  min-height: min(38rem, calc(100dvh - 3rem));
  padding: clamp(2rem, 6vw, 6.5rem);
  align-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(28, 29, 25, 0.22);
  background: var(--paper);
}

.contact-success__eyebrow {
  margin: 0;
  color: #999a95;
  font: 500 0.75rem/1.2 var(--rubrika-font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-success h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
}

.contact-success [data-kodety-form-message] {
  max-width: 38rem;
  margin: 0;
  color: #999a95;
  font: 500 clamp(1.125rem, 2vw, 1.75rem)/1.16 var(--rubrika-font-sans);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.contact-success__close {
  width: fit-content;
  min-height: 3.5rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: var(--ink);
  font: 500 1rem/1 var(--rubrika-font-sans);
  cursor: pointer;
}

.contact-success__close:is(:hover, :focus-visible) {
  color: var(--ink);
  background: #8eccb7;
}

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

.contact-details {
  width: calc(100% - 6.25rem);
  max-width: 113.75rem;
  margin: 0 auto;
}

.contact-details__row {
  display: grid;
  min-height: 10.5625rem;
  padding-top: 3.5rem;
  grid-template-columns: 49% 24% 27%;
  border-top: 0.0625rem solid rgb(28 29 25 / 50%);
}

.contact-details__row--socials {
  min-height: 13.9375rem;
}

.contact-details h2,
.contact-details h3,
.contact-details p {
  margin: 0;
}

.contact-details h2 {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.contact-details h3 {
  margin-bottom: 0.4375rem;
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-details a {
  position: relative;
  width: fit-content;
  color: rgb(28 29 25 / 50%);
  font-family: var(--rubrika-font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-decoration: none;
  transition:
    color 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-details a::after {
  position: absolute;
  right: 0;
  bottom: -0.1875rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-details a:is(:hover, :focus-visible) {
  color: #8dccb7;
  transform: translateX(0.1875rem);
}

.contact-details a:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.contact-details__row--socials nav {
  display: flex;
  grid-column: 2;
  flex-direction: column;
  align-items: flex-start;
}

.contact-details__row--socials a {
  font-weight: 700;
  line-height: 1.5;
}

.contact-related-projects {
  padding-bottom: 3.125rem;
}

@media (max-width: 1199px) {
  .contact-detail-page,
  .contact-page {
    width: 100%;
    min-width: 0;
  }

  .contact-detail-page { overflow: visible; }
  .contact-page { overflow: clip; }
  .contact-page__ruler { display: none; }

  .contact-page__header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 94px;
    padding: 0 var(--mobile-gutter);
    transform: none;
  }

  .contact-page__header .header {
    top: 13px;
    left: var(--mobile-gutter);
    width: calc(100% - (2 * var(--mobile-gutter)));
  }

  .contact-lead {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 42px var(--mobile-gutter) clamp(72px, 10vw, 110px);
  }

  .contact-intro h1 {
    font-size: clamp(44px, 9vw, 72px);
    letter-spacing: -0.045em;
    white-space: normal;
  }

  .contact-intro__copy {
    width: min(100%, 620px);
    margin-top: 32px !important;
    font-size: clamp(21px, 4vw, 30px);
  }

  .contact-trust {
    flex-wrap: wrap;
    height: auto;
    margin-top: 30px;
    row-gap: 12px;
    font-size: 17px;
  }

  .contact-form {
    margin-top: clamp(64px, 10vw, 100px);
  }

  .contact-form__field {
    height: 66px;
  }

  .contact-form__field input,
  .contact-form__message label,
  .contact-form__message textarea,
  .contact-plans legend,
  .contact-plan > strong,
  .contact-form__submit {
    font-size: 17px;
  }

  .contact-form__message {
    margin-top: 30px;
  }

  .contact-form__message textarea {
    height: clamp(170px, 29vw, 230px);
    margin-top: 20px;
  }

  .contact-plans { margin-top: 30px; }
  .contact-plans__grid { margin-top: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .contact-plan { height: 56px; gap: 16px; }
  .contact-form__submit { height: 58px; margin-top: 34px; }

  .contact-details {
    width: calc(100% - (2 * var(--mobile-gutter)));
  }

  .contact-details__row {
    min-height: 0;
    padding: 42px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
  }

  .contact-details__row h2 { grid-column: 1 / -1; font-size: 26px; }
  .contact-details h3,
  .contact-details a { font-size: 16px; }
  .contact-details__row--socials { min-height: 0; }
  .contact-details__row--socials nav { grid-column: 1 / -1; }

  .contact-related-projects {
    padding-top: clamp(60px, 9vw, 90px);
  }
}

@media (max-width: 620px) {
  .contact-lead { padding-top: 32px; }
  .contact-trust { width: 100%; }
  .contact-trust__clients { margin-left: auto; }
  .contact-trust__stars { order: 4; margin-left: 0; }
  .contact-trust > strong { order: 5; }
  .contact-plans__grid { grid-template-columns: 1fr; }

  .contact-success {
    padding: var(--mobile-gutter);
  }

  .contact-success__panel {
    min-height: calc(100dvh - (2 * var(--mobile-gutter)));
    padding: 2rem;
  }

  .contact-success h2 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }
}

@media (max-width: 430px) {
  .contact-trust p { width: 100%; }
  .contact-trust__clients { margin-left: 0; }
  .contact-details__row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-plan,
  .contact-plan__radio,
  .contact-plan__radio::after,
  .contact-plan__badge,
  .contact-form__submit,
  .contact-details a,
  .contact-form__field input,
  .contact-form__field input::placeholder,
  .contact-form__message label,
  .contact-form__message textarea {
    transition: none;
  }
}
