/*
Theme Name: TMEX Cinematic
Theme URI: https://tmex.com.br/
Author: TMEX Solutions
Author URI: https://tmex.com.br/
Description: Tema institucional exclusivo da TMEX — Negócios Digitais em Movimento.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: tmex-cinematic
*/

:root {
  --black: #050506;
  --black-soft: #0b0b0d;
  --graphite: #151518;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 5, 6, 0.15);
  --paper: #f1efeb;
  --paper-bright: #f8f7f4;
  --white: #ffffff;
  --muted: #a6a6aa;
  --ink-muted: #626267;
  --red: #f3202b;
  --red-deep: #a5000b;
  --scroll-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--black);
}

body::-webkit-scrollbar-thumb {
  background: var(--red);
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-frame {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.pointer-aura {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--pointer-x) var(--pointer-y),
    rgba(243, 32, 43, 0.075),
    transparent 65%
  );
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  z-index: 130;
  inset: 0 auto auto 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(243, 32, 43, 0.75);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 0 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(4, 4, 5, 0.34);
  backdrop-filter: blur(12px) saturate(1.15);
  transition:
    min-height 400ms cubic-bezier(0.2, 0.75, 0.2, 1),
    background 400ms ease,
    border-color 400ms ease,
    backdrop-filter 400ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(4, 4, 5, 0.84);
  backdrop-filter: blur(20px) saturate(1.3);
}

.brand-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 104px;
  height: 34px;
}

.brand-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a.is-active::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(243, 32, 43, 0.9);
  content: "";
  transform: translateY(-50%);
}

.header-cta.is-active {
  border-color: var(--red);
  background: rgba(243, 32, 43, 0.16);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.header-cta:hover {
  border-color: var(--red);
  background: var(--red);
}

.header-cta span {
  font-size: 16px;
  line-height: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 240ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 7vw 40px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: 48px 48px;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-index,
.mobile-menu-foot {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(36px, 10vw, 64px);
  font-weight: 620;
  letter-spacing: -0.055em;
}

.mobile-menu nav span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.mobile-menu nav a.is-active {
  color: var(--white);
}

.mobile-menu nav a.is-active::after {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(243, 32, 43, 0.85);
  content: "";
}

.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--red);
}

.eyebrow.red {
  color: var(--red);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  align-items: flex-end;
  background: var(--black);
  isolation: isolate;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.065);
  }
}

.home-hero-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.97) 0%, rgba(2, 2, 3, 0.78) 33%, rgba(2, 2, 3, 0.1) 72%),
    linear-gradient(0deg, rgba(2, 2, 3, 0.82) 0%, transparent 44%),
    radial-gradient(circle at 75% 48%, transparent 10%, rgba(2, 2, 3, 0.08) 65%, rgba(2, 2, 3, 0.6) 100%);
}

.hero-grid,
.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-grid {
  z-index: 2;
}

.page-hero-grid {
  z-index: 0;
}

.hero-side-code {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 2.2vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 8.333vw 11vh;
}

.hero-content > .eyebrow {
  margin-bottom: clamp(24px, 4vh, 48px);
  color: rgba(255, 255, 255, 0.72);
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0;
  font-size: clamp(66px, 9.4vw, 146px);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
  animation: hero-title-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 span:last-child {
  margin-left: 7vw;
  animation-delay: 120ms;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.86);
  text-stroke: 1px rgba(255, 255, 255, 0.86);
}

.hero-copy-row {
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  gap: 9vw;
  align-items: end;
  max-width: 1120px;
  margin-top: clamp(38px, 6vh, 70px);
  margin-left: 7vw;
}

.hero-copy-row > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 350;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.text-link {
  position: relative;
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 0 12px;
  border-bottom: 1px solid rgba(5, 5, 6, 0.3);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link i {
  color: var(--red);
  font-size: 16px;
  font-style: normal;
  transition: transform 240ms ease;
}

.text-link:hover i {
  transform: translate(3px, -3px);
}

.text-link.is-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 3.3vw;
  bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.44);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scroll i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--red);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  to {
    top: 110%;
  }
}

.hero-location {
  position: absolute;
  z-index: 3;
  right: 5.5vw;
  bottom: 4vh;
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.manifesto-section {
  position: relative;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 8vw;
  min-height: 720px;
  overflow: hidden;
  padding: 14vh 8.333vw 12vh;
  background: var(--paper);
  color: var(--black);
}

.manifesto-mark {
  position: absolute;
  right: -2vw;
  bottom: -5vh;
  color: rgba(5, 5, 6, 0.035);
  font-size: 25vw;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.75;
  user-select: none;
}

.manifesto-copy {
  align-self: center;
  max-width: 980px;
}

.manifesto-copy > p {
  margin: 7vh 0 0;
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 390;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.manifesto-copy strong {
  font-weight: 650;
}

.manifesto-aside {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 330px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.manifesto-aside > span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.manifesto-aside p {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ecosystem-section,
.model-section,
.proof-section {
  padding: 14vh 8.333vw 10vh;
}

.ecosystem-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 54%, rgba(243, 32, 43, 0.09), transparent 34%),
    var(--black);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  color: var(--black);
}

.section-header.is-dark {
  color: var(--white);
}

.section-index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  align-self: start;
  padding-top: 15px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--red);
}

.section-index i {
  height: 1px;
  background: currentColor;
  opacity: 0.22;
}

.section-heading-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
  gap: 5vw;
  align-items: end;
}

.section-heading-copy h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-heading-copy p {
  margin: 0 0 0.4em;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.section-header.is-dark .section-heading-copy p {
  color: var(--muted);
}

.ecosystem-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  min-height: 690px;
  align-items: center;
  margin-top: 11vh;
}

.ecosystem-image {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.85) contrast(1.06);
}

.ecosystem-image-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.3), transparent 50%);
}

.engine-list {
  position: relative;
  z-index: 2;
  align-self: center;
  border-top: 1px solid var(--line-dark);
}

.engine-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding 260ms ease,
    background 260ms ease;
}

.engine-row:hover {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.035);
}

.engine-row > span {
  align-self: start;
  padding-top: 31px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.engine-row h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.engine-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}

.engine-row > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-style: normal;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.engine-row:hover > i {
  color: var(--red);
  transform: translate(3px, -3px);
}

.section-tail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 9vh;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.section-tail > span {
  color: var(--ink-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.dark-tail {
  border-color: var(--line-dark);
}

.dark-tail > span {
  color: var(--muted);
}

.model-section,
.proof-section {
  background: var(--paper);
  color: var(--black);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 11vh;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.model-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px 32px 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background 320ms ease,
    color 320ms ease;
}

.model-card:hover {
  background: var(--black);
  color: var(--white);
}

.model-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent 58%, rgba(243, 32, 43, 0.17));
  opacity: 0;
  transition: opacity 320ms ease;
}

.model-card:hover::before {
  opacity: 1;
}

.model-number {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}

.model-card-content {
  position: relative;
  z-index: 1;
}

.model-card h3 {
  max-width: 250px;
  margin: 0 0 24px;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1;
}

.model-card p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
  transition: color 320ms ease;
}

.model-card:hover p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 34px;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 320ms ease,
    border-color 320ms ease;
}

.model-card:hover .tag-row span {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.68);
}

.model-corner {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  transition:
    opacity 320ms ease,
    transform 500ms ease;
}

.model-card:hover .model-corner {
  opacity: 0.6;
  transform: scale(1.5);
}

.experience-section {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 92svh;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.experience-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.experience-section:hover > img {
  transform: scale(1.025);
}

.experience-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.92) 0%, rgba(2, 2, 3, 0.63) 42%, rgba(2, 2, 3, 0.05) 78%),
    linear-gradient(0deg, rgba(2, 2, 3, 0.6), transparent 52%);
}

.experience-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 8.333vw;
}

.experience-copy h2 {
  margin: 38px 0 34px;
  font-size: clamp(52px, 6.4vw, 100px);
  font-weight: 570;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.experience-copy p {
  max-width: 520px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.experience-counter {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 25px;
  border-left: 1px solid var(--red);
}

.experience-counter strong {
  font-size: clamp(55px, 7vw, 110px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.experience-counter span {
  margin-top: 20px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.testimonials-section {
  padding: 14vh 8.333vw 12vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(235, 31, 42, 0.13), transparent 25%),
    #060607;
  color: var(--paper);
}

.testimonial-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.7fr);
  gap: 1px;
  margin-top: 10vh;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.testimonial-feature {
  padding: 18px;
  background: #0a0a0b;
}

.testimonial-screen {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(239, 34, 45, 0.23), transparent 8%),
    linear-gradient(145deg, #17171a, #060607 57%, #110405);
}

.testimonial-screen::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  content: "";
  transform: translateX(-100%);
  animation: testimonial-scan 6s ease-in-out infinite;
}

@keyframes testimonial-scan {
  45%, 100% { transform: translateX(100%); }
}

.testimonial-grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 70%, transparent);
}

.testimonial-status {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(255,255,255,.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .16em;
}

.testimonial-screen button {
  position: relative;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 60px rgba(235,31,42,.18);
}

.testimonial-screen button::before,
.testimonial-screen button::after {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.testimonial-screen button::after {
  inset: -38px;
  border-color: rgba(235,31,42,.22);
}

.testimonial-screen button i {
  display: block;
  width: 0;
  height: 0;
  margin-left: 43px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.testimonial-screen-copy {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.testimonial-screen-copy span,
.testimonial-screen-copy p {
  color: rgba(255,255,255,.45);
  font-size: 8px;
  letter-spacing: .14em;
}

.testimonial-screen-copy strong {
  grid-row: 2;
  margin-top: 9px;
  font-size: 26px;
  font-weight: 500;
}

.testimonial-screen-copy p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.testimonial-queue {
  display: flex;
  flex-direction: column;
  background: #0a0a0b;
}

.testimonial-queue article {
  position: relative;
  min-height: 220px;
  padding: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.testimonial-queue article > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-queue article span {
  color: var(--red);
  font-size: 11px;
}

.testimonial-queue article small {
  color: rgba(255,255,255,.35);
  font-size: 7px;
  letter-spacing: .14em;
}

.testimonial-queue article h3 {
  max-width: 280px;
  margin: 55px 0 0;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.25;
}

.testimonial-queue article > i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
}

.testimonial-queue > p {
  margin: auto 0 0;
  padding: 34px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.65;
}

.proof-section {
  overflow: hidden;
}

.logo-marquee {
  width: calc(100% + 16.666vw);
  margin: 11vh -8.333vw 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-motion 67s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-motion {
  to {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  width: 260px;
  height: 150px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 35px 36px;
  border-right: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.18);
  transition: background 260ms ease;
}

.client-logo:hover {
  background: var(--paper-bright);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.8);
  opacity: 0.7;
  transition:
    filter 260ms ease,
    opacity 260ms ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
}

.markets-wrap {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  margin-top: 11vh;
}

.markets-wrap > .eyebrow {
  align-self: start;
}

.markets-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  align-items: baseline;
}

.markets-cloud span {
  font-size: clamp(24px, 3.6vw, 58px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.markets-cloud span.is-accent {
  color: var(--red);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 13vh 8.333vw 26px;
  background:
    radial-gradient(circle at 88% 15%, rgba(243, 32, 43, 0.14), transparent 30%),
    var(--black);
}

.site-footer::before {
  position: absolute;
  right: -10vw;
  bottom: -30vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(243, 32, 43, 0.18);
  border-radius: 50%;
  content: "";
}

.footer-symbol {
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  width: min(42vw, 640px);
  height: auto;
  opacity: 0.045;
  filter: grayscale(1);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8vw;
  align-items: flex-end;
  padding-bottom: 12vh;
  border-bottom: 1px solid var(--line-dark);
}

.footer-top h2 {
  margin: 40px 0 0;
  font-size: clamp(48px, 6.6vw, 104px);
  font-weight: 530;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.orb-link {
  position: relative;
  display: flex;
  width: clamp(180px, 16vw, 250px);
  height: clamp(180px, 16vw, 250px);
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    border-color 300ms ease,
    background 300ms ease,
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-link::before {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  content: "";
  background: var(--red);
  transform: scale(0);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-link:hover {
  border-color: var(--red);
  transform: rotate(-5deg);
}

.orb-link:hover::before {
  transform: scale(1.5);
}

.orb-link span,
.orb-link strong {
  position: relative;
  z-index: 1;
}

.orb-link strong {
  align-self: flex-end;
  font-size: 30px;
  font-weight: 300;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 4vw;
  padding: 8vh 0 9vh;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
  transition: color 220ms ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-label {
  margin-bottom: 12px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-brand img {
  width: 130px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 92svh;
  grid-template-columns: 8.333vw 1fr 8.333vw;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding-top: 110px;
  background:
    radial-gradient(circle at 76% 43%, rgba(243, 32, 43, 0.15), transparent 24%),
    var(--black);
}

.page-hero::after {
  position: absolute;
  right: 8.333vw;
  bottom: 20%;
  width: 34vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red));
  box-shadow: 0 0 28px var(--red);
  transform: rotate(-14deg);
  transform-origin: right;
}

.page-hero-index {
  grid-column: 1;
  align-self: center;
  color: rgba(255, 255, 255, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  justify-self: center;
}

.page-hero-content {
  z-index: 1;
  grid-column: 2;
  align-self: center;
}

.page-hero-content h1 {
  max-width: 1180px;
  margin: 38px 0 0;
  font-size: clamp(64px, 9vw, 142px);
  font-weight: 570;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.page-hero-bottom {
  z-index: 1;
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(300px, 550px) 1fr;
  gap: 8vw;
  align-items: end;
  padding: 0 0 7vh;
  border-top: 1px solid var(--line-dark);
}

.page-hero-bottom p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero-bottom > span {
  justify-self: end;
  margin-top: 24px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-intro,
.model-page-intro,
.leadership-section {
  padding: 14vh 8.333vw 11vh;
  background: var(--paper);
  color: var(--black);
}

.solution-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 11vh;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.solutions-intro .section-heading-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
}

.solution-jump {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background 280ms ease,
    color 280ms ease;
}

.solution-jump::before {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--red);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition:
    opacity 300ms ease,
    transform 500ms ease;
}

.solution-jump:hover {
  background: var(--black);
  color: var(--white);
}

.solution-jump:hover::before {
  opacity: 0.6;
  transform: scale(1.8);
}

.solution-jump > span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.solution-jump strong {
  position: relative;
  z-index: 1;
  max-width: 150px;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
}

.solution-jump i {
  align-self: flex-end;
  color: var(--red);
  font-size: 18px;
  font-style: normal;
  transition: transform 240ms ease;
}

.solution-jump:hover i {
  transform: translateY(5px);
}

.solution-cinema {
  position: relative;
  display: flex;
  min-height: 760px;
  height: 90svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.solution-cinema > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-cinema-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 3, 4, 0.94), rgba(3, 3, 4, 0.08) 75%),
    linear-gradient(90deg, rgba(3, 3, 4, 0.66), transparent 66%);
}

.solution-cinema-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 8.333vw 10vh;
}

.solution-cinema-copy blockquote {
  max-width: 1050px;
  margin: 36px 0 0;
  font-size: clamp(45px, 5.6vw, 88px);
  font-weight: 460;
  letter-spacing: -0.06em;
  line-height: 1;
}

.solution-band {
  padding: 13vh 8.333vw 11vh;
}

.solution-band.is-paper {
  background: var(--paper);
  color: var(--black);
}

.solution-band.is-dark {
  background: var(--black);
  color: var(--white);
}

.solution-band-top {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.5fr) minmax(260px, 0.6fr);
  gap: 4vw;
  align-items: start;
}

.solution-band-number {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.solution-band-top .eyebrow {
  color: var(--red);
}

.solution-band-top h2 {
  max-width: 830px;
  margin: 34px 0 0;
  font-size: clamp(48px, 6vw, 94px);
  font-weight: 570;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.solution-band-top > p {
  margin: 41px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.solution-band.is-dark .solution-band-top > p {
  color: var(--muted);
}

.solution-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 11vh;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.solution-band.is-dark .solution-columns {
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.solution-columns article {
  padding: 34px 38px 28px;
  background: var(--paper);
}

.solution-band.is-dark .solution-columns article {
  background: var(--black-soft);
}

.solution-columns h3 {
  margin: 0 0 30px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.solution-columns ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-columns li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
}

.solution-band.is-dark .solution-columns li {
  border-color: var(--line-dark);
}

.solution-columns li > span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
}

.solutions-close {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12vh 8.333vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(243, 32, 43, 0.18), transparent 26%),
    var(--black);
  text-align: center;
}

.solutions-close h2 {
  margin: 42px 0 34px;
  font-size: clamp(55px, 7.8vw, 122px);
  font-weight: 540;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.solutions-close p {
  max-width: 570px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.solutions-close .text-link {
  width: 340px;
}

.operating-models {
  background: var(--black);
}

.operating-model {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.85fr 0.5fr;
  min-height: 680px;
  gap: 4vw;
  align-items: center;
  padding: 10vh 8.333vw;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.operating-model::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 72% 50%, rgba(243, 32, 43, 0.1), transparent 28%);
  opacity: 0;
  transition: opacity 450ms ease;
}

.operating-model:hover::before {
  opacity: 1;
}

.operating-model-sticky {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
  border-right: 1px solid var(--line-dark);
}

.operating-model-sticky > span {
  color: transparent;
  font-size: clamp(100px, 13vw, 210px);
  font-weight: 650;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
}

.operating-model-sticky small {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.operating-model-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.operating-model-content h2 {
  margin: 0;
  font-size: clamp(55px, 7vw, 108px);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.operating-model-content > p {
  max-width: 550px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.operating-model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.operating-model-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.operating-model-signal {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.operating-model-signal i {
  display: block;
  width: 5px;
  height: 180px;
  background: linear-gradient(0deg, transparent, var(--red), transparent);
  opacity: 0.2;
  animation: signal-wave 2.2s ease-in-out infinite alternate;
}

.operating-model-signal i:nth-child(2) {
  animation-delay: 200ms;
}

.operating-model-signal i:nth-child(3) {
  animation-delay: 400ms;
}

@keyframes signal-wave {
  to {
    opacity: 0.85;
    transform: scaleY(1.25);
  }
}

.process-section {
  padding: 14vh 8.333vw 12vh;
  background: var(--paper);
  color: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 11vh;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-grid article {
  position: relative;
  min-height: 360px;
  padding: 28px 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-grid article::after {
  position: absolute;
  right: -6px;
  top: 48%;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.process-grid article:last-child::after {
  display: none;
}

.process-grid article > span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.process-grid h3 {
  margin: 14vh 0 22px;
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 570;
  letter-spacing: -0.06em;
}

.process-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
}

.differentials-section {
  padding: 14vh 8.333vw 11vh;
  background:
    radial-gradient(circle at 15% 24%, rgba(243, 32, 43, 0.11), transparent 30%),
    var(--black);
}

.differentials-heading {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  align-items: start;
}

.differentials-heading h2 {
  margin: 0;
  font-size: clamp(50px, 6.3vw, 98px);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.differentials-list {
  margin-top: 10vh;
  border-top: 1px solid var(--line-dark);
}

.differentials-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding 260ms ease,
    background 260ms ease;
}

.differentials-list article:hover {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.035);
}

.differentials-list span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.differentials-list p {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 37px);
  font-weight: 470;
  letter-spacing: -0.04em;
}

.differentials-list i {
  color: rgba(255, 255, 255, 0.28);
  font-size: 26px;
  font-style: normal;
}

.differentials-tail {
  display: flex;
  justify-content: flex-end;
  margin-top: 7vh;
}

.agency-manifesto {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr 0.75fr;
  gap: 5vw;
  align-items: end;
  min-height: 720px;
  padding: 14vh 8.333vw 12vh;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.agency-manifesto-number {
  align-self: start;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.agency-manifesto h2 {
  max-width: 920px;
  margin: 45px 0 0;
  font-size: clamp(52px, 6.3vw, 98px);
  font-weight: 570;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.agency-manifesto > p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.presence-section {
  padding: 14vh 8.333vw 12vh;
  background:
    radial-gradient(circle at 50% 60%, rgba(243, 32, 43, 0.1), transparent 30%),
    var(--black);
}

.presence-grid {
  display: block;
  margin-top: 11vh;
  border: 1px solid var(--line-dark);
}

.presence-grid article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 34px 38px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 38%),
    radial-gradient(circle at 76% 50%, rgba(243, 32, 43, 0.16), transparent 29%),
    var(--black);
}

.presence-grid h3 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.presence-copy {
  position: absolute;
  z-index: 3;
  left: 38px;
  bottom: 42px;
}

.presence-grid p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presence-state {
  display: block;
  margin-bottom: 25px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.presence-scope {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  display: grid;
  gap: 8px;
  text-align: right;
}

.presence-scope span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.presence-scope strong {
  font-size: 15px;
  letter-spacing: 0.16em;
}

.presence-signal {
  position: absolute;
  top: 34px;
  right: 38px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
}

.presence-signal span {
  width: 2px;
  background: var(--red);
  animation: presence-pulse 1.6s ease-in-out infinite alternate;
}

.presence-signal span:nth-child(1) { height: 6px; }
.presence-signal span:nth-child(2) { height: 12px; animation-delay: 180ms; }
.presence-signal span:nth-child(3) { height: 18px; animation-delay: 360ms; }

@keyframes presence-pulse {
  from { opacity: 0.28; }
  to { opacity: 1; }
}

.presence-map {
  position: absolute;
  top: 50%;
  right: 9%;
  width: min(38vw, 470px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.presence-map svg {
  position: absolute;
  inset: 5%;
  z-index: 1;
  width: 90%;
  height: 90%;
  overflow: visible;
  filter: drop-shadow(0 0 30px rgba(243, 32, 43, 0.09));
}

.presence-map svg path {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  transition: fill 400ms ease, stroke 400ms ease;
}

.presence-map svg path.is-rio {
  fill: var(--red);
  stroke: #ff7a80;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(243, 32, 43, 0.9));
}

.presence-map svg path#rj {
  fill: var(--red);
  stroke: #ff7a80;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(243, 32, 43, 0.9));
}

.testimonial-screen.has-video {
  display: block;
  background: #050506;
}

.testimonial-screen.has-video .tmex-video-embed,
.testimonial-screen.has-video .wp-video,
.testimonial-screen.has-video video,
.testimonial-screen.has-video iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 590px;
}

.testimonial-screen.has-video iframe,
.testimonial-screen.has-video video {
  display: block;
  border: 0;
  object-fit: cover;
}

.testimonial-open {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
}

.tmex-content-shell {
  min-height: 40vh;
  padding: 10vh 8.333vw;
  background: var(--paper);
  color: var(--black);
}

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

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.presence-map::before,
.presence-map::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
}

.presence-map::after {
  inset: 30%;
}

.presence-core {
  position: absolute;
  z-index: 3;
  top: 72%;
  left: 77%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(243, 32, 43, 0.1), 0 0 35px rgba(243, 32, 43, 0.8);
  transform: translate(-50%, -50%);
}

.presence-core span {
  position: absolute;
  top: 50%;
  right: 18px;
  width: max-content;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transform: translateY(-50%);
}

.presence-map::before {
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 34%, transparent 72%);
}

.presence-code {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.presence-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  height: 74%;
  border: 1px solid rgba(243, 32, 43, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(-18deg);
  transition:
    width 500ms ease,
    height 500ms ease,
    opacity 500ms ease;
}

.presence-grid article:hover .presence-orbit {
  width: 88%;
  height: 88%;
  opacity: 0.8;
}

.leadership-section {
  overflow: hidden;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  margin-top: 11vh;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) 1fr;
  gap: 32px;
  align-items: end;
}

.leader-photo {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #d9d7d3;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms ease;
}

.leader-card:hover .leader-photo img {
  filter: grayscale(0.15);
  transform: scale(1.035);
}

.leader-photo > span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 9px 10px;
  background: rgba(5, 5, 6, 0.82);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.leader-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1;
}

.leader-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.75;
}

.agency-proof {
  padding: 14vh 8.333vw 11vh;
  background: var(--black);
}

.agency-proof-heading {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  align-items: start;
}

.agency-proof-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.agency-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 11vh;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.agency-logo-grid > div {
  position: relative;
  display: flex;
  height: 180px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
  transition: background 260ms ease;
}

.agency-logo-grid > div:hover {
  background: var(--paper);
}

.agency-logo-grid > div > span {
  position: absolute;
  top: 12px;
  left: 13px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
}

.agency-logo-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(2.4);
  opacity: 0.62;
  transition:
    filter 260ms ease,
    opacity 260ms ease;
}

.agency-logo-grid > div:hover img {
  filter: none;
  opacity: 1;
}

.agency-markets {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  margin-top: 11vh;
  padding-top: 8vh;
  border-top: 1px solid var(--line-dark);
}

.agency-markets > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.agency-markets > div span {
  font-size: clamp(23px, 3.2vw, 50px);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.agency-markets > div span.is-red {
  color: var(--red);
}

.contact-main {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 8vw;
  align-items: start;
  padding: 14vh 8.333vw 13vh;
  background: var(--paper);
  color: var(--black);
}

.contact-main-heading {
  position: sticky;
  top: 120px;
}

.contact-main-heading h2 {
  margin: 46px 0 30px;
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.contact-main-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-form {
  border-top: 1px solid var(--line-light);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 0 24px;
  border-bottom: 1px solid var(--line-light);
}

.contact-form label > span,
.contact-form legend {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 450;
  letter-spacing: -0.035em;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(5, 5, 6, 0.32);
}

.contact-form fieldset {
  margin: 0;
  padding: 35px 0 30px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-form legend {
  margin-bottom: 24px;
}

.front-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.front-options button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.front-options button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.front-options button i {
  color: var(--red);
  font-size: 15px;
  font-style: normal;
}

.challenge-field textarea {
  line-height: 1.35;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 0 28px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 250ms ease;
}

.form-submit:hover {
  background: var(--black);
}

.form-submit i {
  font-size: 26px;
  font-style: normal;
  transition: transform 240ms ease;
}

.form-submit:hover i {
  transform: translate(4px, -4px);
}

.direct-contact {
  padding: 13vh 8.333vw 11vh;
  background: var(--black);
}

.direct-contact-intro {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 5vw;
  align-items: start;
}

.direct-contact-intro > span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.direct-contact-intro h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10vh;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.direct-contact-grid a {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 280ms ease,
    color 280ms ease;
}

.direct-contact-grid a:hover {
  background: var(--paper);
  color: var(--black);
}

.direct-contact-grid span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.direct-contact-grid strong {
  font-size: clamp(19px, 2vw, 31px);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.direct-contact-grid i {
  align-self: flex-end;
  color: var(--red);
  font-size: 24px;
  font-style: normal;
}

.contact-presence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--paper);
  color: var(--black);
}

.contact-presence article {
  min-height: 300px;
  padding: 7vh 8.333vw;
  border-right: 1px solid var(--line-light);
}

.contact-presence span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-presence h3 {
  max-width: 430px;
  margin: 70px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .section-header,
  .markets-wrap {
    grid-template-columns: 1fr;
  }

  .section-index {
    width: 100%;
    max-width: 380px;
  }

  .model-card {
    min-height: 430px;
    padding: 28px 24px;
  }

  .solution-jump-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-band-top {
    grid-template-columns: 60px 1fr;
  }

  .solution-band-top > p {
    grid-column: 2;
    max-width: 560px;
    margin-top: 0;
  }

  .leader-card {
    grid-template-columns: 0.82fr 1fr;
  }
}

@media (max-width: 820px) {
  .pointer-aura {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    padding: 0 6vw;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .brand-link {
    width: 92px;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-image {
    object-position: 64% center;
  }

  .home-hero-vignette {
    background:
      linear-gradient(90deg, rgba(2, 2, 3, 0.94) 0%, rgba(2, 2, 3, 0.62) 55%, rgba(2, 2, 3, 0.14) 100%),
      linear-gradient(0deg, rgba(2, 2, 3, 0.9) 0%, transparent 62%);
  }

  .hero-content {
    padding: 0 7vw 15vh;
  }

  .hero-content h1 {
    font-size: clamp(58px, 15.8vw, 105px);
    line-height: 0.86;
  }

  .hero-content h1 span:last-child {
    margin: 12px 0 0;
  }

  .hero-copy-row {
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 38px 0 0;
  }

  .hero-actions {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .manifesto-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12vh 7vw;
  }

  .manifesto-aside {
    justify-self: end;
  }

  .ecosystem-section,
  .model-section,
  .testimonials-section,
  .proof-section {
    padding: 11vh 7vw 9vh;
  }

  .section-heading-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading-copy p {
    max-width: 480px;
  }

  .ecosystem-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8vh;
  }

  .ecosystem-image-overlay {
    display: none;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: 400px;
  }

  .experience-section {
    align-items: flex-end;
    min-height: 720px;
  }

  .experience-copy {
    margin: 0 7vw 12vh;
  }

  .experience-counter {
    display: none;
  }

  .experience-shade {
    background:
      linear-gradient(0deg, rgba(2, 2, 3, 0.95) 0%, rgba(2, 2, 3, 0.5) 58%, rgba(2, 2, 3, 0.05)),
      linear-gradient(90deg, rgba(2, 2, 3, 0.6), transparent);
  }

  .testimonial-stage {
    grid-template-columns: 1fr;
  }

  .testimonial-screen {
    min-height: 520px;
  }

  .testimonial-queue {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-queue > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
  }

  .markets-wrap {
    gap: 6vh;
  }

  .footer-top {
    align-items: flex-start;
  }

  .orb-link {
    width: 160px;
    height: 160px;
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    row-gap: 7vh;
  }

  .solutions-intro,
  .model-page-intro,
  .leadership-section {
    padding: 11vh 7vw 9vh;
  }

  .solution-jump-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-band,
  .process-section,
  .differentials-section,
  .presence-section,
  .agency-proof,
  .direct-contact {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .solution-band-top {
    grid-template-columns: 1fr;
  }

  .solution-band-top > p {
    grid-column: auto;
    margin-top: 0;
  }

  .solution-columns {
    grid-template-columns: 1fr;
  }

  .operating-model {
    grid-template-columns: 0.55fr 1.7fr;
  }

  .operating-model-signal {
    display: none;
  }

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

  .process-grid article:nth-child(2)::after {
    display: none;
  }

  .differentials-heading,
  .agency-proof-heading,
  .agency-markets,
  .direct-contact-intro {
    grid-template-columns: 1fr;
    gap: 6vh;
  }

  .agency-manifesto {
    grid-template-columns: 1fr 2fr;
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .agency-manifesto > p {
    grid-column: 2;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: minmax(220px, 0.7fr) 1fr;
  }

  .agency-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 8vh;
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .contact-main-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .mobile-menu {
    padding: 105px 7vw 30px;
  }

  .mobile-menu-foot {
    flex-direction: column;
    gap: 10px;
  }

  .home-hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 12vh;
  }

  .hero-content > .eyebrow {
    max-width: 250px;
  }

  .hero-content h1 {
    font-size: clamp(51px, 15.5vw, 78px);
  }

  .hero-copy-row > p {
    font-size: 14px;
  }

  .hero-location {
    right: 7vw;
    bottom: 3vh;
  }

  .manifesto-copy > p {
    font-size: 37px;
  }

  .section-heading-copy h2 {
    font-size: 44px;
  }

  .engine-row {
    min-height: 100px;
  }

  .engine-row p {
    max-width: 240px;
  }

  .section-tail {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    width: 100%;
    min-width: 0;
  }

  .model-card {
    min-height: 370px;
  }

  .experience-copy h2 {
    font-size: 50px;
  }

  .experience-copy p {
    font-size: 14px;
  }

  .client-logo {
    width: 210px;
    height: 125px;
    padding: 28px;
  }

  .markets-cloud {
    gap: 12px 22px;
  }

  .markets-cloud span {
    font-size: 28px;
  }

  .site-footer {
    padding: 11vh 7vw 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-top h2 {
    font-size: 47px;
  }

  .orb-link {
    align-self: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    min-height: 700px;
    grid-template-columns: 7vw 1fr 7vw;
    padding-top: 90px;
  }

  .page-hero-content h1 {
    font-size: clamp(52px, 15vw, 78px);
    line-height: 0.91;
  }

  .page-hero-bottom {
    grid-template-columns: 1fr;
    padding-bottom: 5vh;
  }

  .page-hero-bottom p {
    font-size: 14px;
  }

  .page-hero-bottom > span {
    justify-self: start;
  }

  .solution-jump-grid {
    grid-template-columns: 1fr;
  }

  .solution-jump {
    min-height: 150px;
  }

  .solution-band,
  .process-section,
  .differentials-section,
  .presence-section,
  .agency-proof,
  .direct-contact {
    padding: 10vh 7vw 9vh;
  }

  .solution-band-top h2 {
    font-size: 46px;
  }

  .solution-columns article {
    padding: 28px 20px 20px;
  }

  .solution-columns li {
    font-size: 12px;
  }

  .solutions-close {
    min-height: 620px;
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .solutions-close h2 {
    font-size: 52px;
  }

  .operating-model {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding: 9vh 7vw;
  }

  .operating-model-sticky {
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .operating-model-sticky > span {
    font-size: 82px;
  }

  .operating-model-content h2 {
    font-size: 52px;
  }

  .operating-model-content > p {
    font-size: 14px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article::after {
    display: none;
  }

  .process-grid article {
    min-height: 300px;
  }

  .differentials-heading h2,
  .agency-proof-heading h2,
  .direct-contact-intro h2 {
    font-size: 46px;
  }

  .differentials-list article {
    grid-template-columns: 36px 1fr auto;
  }

  .differentials-list p {
    font-size: 20px;
  }

  .agency-manifesto {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 11vh 7vw;
  }

  .agency-manifesto > p {
    grid-column: auto;
  }

  .agency-manifesto h2 {
    font-size: 48px;
  }

  .presence-grid {
    grid-template-columns: 1fr;
  }

  .presence-grid article {
    min-height: 440px;
    padding: 26px 24px;
  }

  .presence-copy {
    left: 24px;
    bottom: 30px;
  }

  .presence-grid h3 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .presence-scope {
    right: 24px;
    bottom: 30px;
  }

  .presence-map {
    top: 40%;
    right: -18%;
    width: 82vw;
    opacity: 0.72;
  }

  .presence-signal {
    top: 26px;
    right: 24px;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    height: 480px;
  }

  .agency-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-logo-grid > div {
    height: 130px;
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .front-options {
    flex-direction: column;
    align-items: stretch;
  }

  .front-options button {
    justify-content: flex-start;
  }

  .direct-contact-grid,
  .contact-presence {
    grid-template-columns: 1fr;
  }

  .direct-contact-grid a {
    min-height: 220px;
  }

  .contact-presence article {
    min-height: 230px;
  }
}

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

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