:root {
  --home-lime: #bfd730;
  --home-lime-hover: #d2e854;
  --home-black: #000;
  --home-ink: #0a0a0a;
  --home-surface: #141414;
  --home-line: #2a2a2a;
  --home-paper: #f4f4f1;
  --home-white: #fff;
  --home-muted: #c6c6c6;
  --home-dark-muted: #484848;
  --home-display: "Futura LT Cond", "Barlow Condensed", Impact, sans-serif;
  --home-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --home-header-height: 88px;
  --home-radius: 14px;
  --home-radius-small: 8px;
  --home-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--home-header-height);
  background: var(--home-black);
}

body {
  margin: 0;
  background: var(--home-black);
  color: var(--home-white);
  font-family: var(--home-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-page {
  min-height: 100vh;
  overflow: clip;
  background: var(--home-black);
  color: var(--home-white);
}

.home-container {
  width: min(1480px, calc(100% - clamp(40px, 6vw, 112px)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 12px 16px;
  background: var(--home-lime);
  color: var(--home-black);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms var(--home-ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--home-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.68);
  transition: background 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 248px 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 0;
}

.site-logo {
  display: block;
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 48px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: #f3f3f3;
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--home-lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--home-ease);
}

.header-whatsapp {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: var(--home-radius-small);
  background: var(--home-lime);
  color: var(--home-black);
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms var(--home-ease);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.home-button {
  min-height: 58px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--home-radius-small);
  font-family: var(--home-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--home-ease);
}

.home-button-lime {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-button-dark {
  background: var(--home-black);
  color: var(--home-white);
}

.lime-dot {
  color: var(--home-lime);
}

.home-hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  flex-direction: column;
  padding-top: var(--home-header-height);
  isolation: isolate;
  background: var(--home-black);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: var(--home-header-height) 0 0;
  width: 100%;
  height: calc(100% - var(--home-header-height));
}

.home-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 28%, rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.12) 77%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 56%, #000 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(72px, 8vw, 132px);
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  animation: hero-rise 700ms 80ms var(--home-ease) both;
}

.home-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--home-white);
  font-family: var(--home-display);
  font-size: clamp(66px, 5vw, 90px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
  animation: hero-rise 760ms 150ms var(--home-ease) both;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #e1e1e1;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
  animation: hero-rise 760ms 220ms var(--home-ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px 36px;
  margin-top: 34px;
  animation: hero-rise 760ms 290ms var(--home-ease) both;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--home-lime);
  color: var(--home-white);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-benefits {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.78);
}

.hero-benefits-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--home-white);
  font-family: var(--home-display);
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-benefit + .hero-benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-benefit svg {
  color: var(--home-lime);
}

.compass-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
  border: 2px solid var(--home-lime);
  border-radius: 50%;
}

.compass-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 14px;
  border-right: 5px solid transparent;
  border-bottom: 13px solid var(--home-lime);
  border-left: 5px solid transparent;
  transform: rotate(38deg);
}

.light-section {
  background: var(--home-paper);
  color: var(--home-black);
}

.problem-section {
  padding: clamp(84px, 7vw, 128px) 0 clamp(72px, 6vw, 104px);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.88fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.problem-visual {
  position: relative;
  min-height: 430px;
  aspect-ratio: 1.56;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--home-radius);
  background: var(--home-ink);
  color: var(--home-white);
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.problem-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.78) 100%);
}

.problem-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--home-ease), filter 300ms ease;
}

.play-control {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-lime);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--home-ease), background 180ms ease;
}

.play-control span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--home-black);
}

.visual-caption {
  position: absolute;
  inset: auto 0 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--home-white);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-caption::before,
.visual-caption::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--home-lime);
}

.operation-dialog {
  width: min(calc(100% - 48px), 1080px);
  max-height: min(88svh, 820px);
  padding: 0;
  overflow: auto;
  border: 1px solid #3b3b3b;
  border-radius: var(--home-radius);
  background: var(--home-ink);
  color: var(--home-white);
}

.operation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.operation-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.operation-dialog-panel > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.operation-dialog-panel > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 48px;
}

.operation-dialog-kicker {
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.operation-dialog h2 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(42px, 3.4vw, 58px);
  line-height: 0.94;
  text-transform: uppercase;
}

.operation-dialog p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.operation-dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #3b3b3b;
  border-radius: 50%;
  background: var(--home-black);
  color: var(--home-white);
  cursor: pointer;
}

.problem-copy h2,
.ecosystem-intro h2,
.proof-copy h2,
.diagnostic-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(54px, 4.8vw, 82px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.problem-copy > p {
  max-width: 38ch;
  margin: 26px 0 30px;
  color: #303030;
  font-size: 18px;
  line-height: 1.55;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 6vw, 96px);
}

.pain-item {
  min-height: 132px;
  padding: 0 clamp(22px, 3vw, 52px);
}

.pain-item:first-child {
  padding-left: 0;
}

.pain-item + .pain-item {
  border-left: 1px solid #bdbdb8;
}

.pain-item > span {
  width: 30px;
  height: 3px;
  display: block;
  margin: 0 0 24px;
  background: var(--home-lime);
}

.pain-item strong {
  font-family: var(--home-display);
  font-size: clamp(26px, 2vw, 35px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.audiences-section {
  padding: clamp(76px, 6vw, 108px) 0 clamp(88px, 8vw, 140px);
  background: var(--home-black);
}

.audiences-heading {
  margin-bottom: 46px;
  text-align: center;
}

.audiences-heading h2 {
  margin: 0 auto;
  font-family: var(--home-display);
  font-size: clamp(50px, 4.6vw, 78px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.audiences-heading p {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 19px;
  line-height: 1.5;
}

.audience-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.audience-path {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--home-white);
  text-decoration: none;
}

.audience-path + .audience-path {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.audience-image-wrap {
  position: relative;
  aspect-ratio: 1.13;
  overflow: hidden;
  background: var(--home-surface);
}

.audience-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.78) 100%);
}

.audience-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 700ms var(--home-ease), filter 300ms ease;
}

.audience-copy {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px clamp(24px, 3vw, 46px) 40px;
}

.audience-copy h3 {
  min-height: 2em;
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(46px, 3.7vw, 66px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.audience-copy p {
  max-width: 31ch;
  margin: 24px 0 32px;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.5;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--home-lime);
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.ecosystem-section {
  padding: clamp(86px, 7vw, 128px) 0;
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: end;
  margin-bottom: 52px;
}

.ecosystem-intro > div > p {
  max-width: 45ch;
  margin: 18px 0 0;
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
}

.ecosystem-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 6px;
}

.ecosystem-aside p {
  max-width: 40ch;
  margin: 0;
  color: #303030;
  font-size: 16px;
  line-height: 1.55;
}

.ecosystem-panel {
  position: relative;
  padding: 44px 30px 34px;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: #101110;
  color: var(--home-white);
}

.ecosystem-line {
  position: absolute;
  top: 58px;
  left: 68px;
  right: 138px;
  height: 2px;
  background: var(--home-lime);
}

.ecosystem-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(170px, 0.72fr);
  gap: 12px;
}

.ecosystem-step {
  min-width: 0;
  padding: 46px 10px 0;
}

.ecosystem-node {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--home-lime);
  transform: translateY(-2px);
}

.ecosystem-step h3 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(29px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.ecosystem-step > p {
  min-height: 64px;
  margin: 10px 0 16px;
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.45;
}

.ecosystem-visual {
  height: 255px;
  overflow: hidden;
  border-radius: var(--home-radius-small);
  background: var(--home-black);
}

.ecosystem-visual > img,
.community-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.community-visual {
  position: relative;
  height: 100%;
}

.community-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.community-visual strong {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  font-family: var(--home-display);
  font-size: 28px;
  line-height: 0.94;
  text-align: center;
  text-transform: uppercase;
}

.mini-hub {
  height: 100%;
  display: grid;
  grid-template-columns: 30% 1fr;
  background: #141414;
  color: var(--home-white);
}

.mini-hub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 10px;
  background: #090909;
}

.mini-hub-sidebar img {
  width: 72px;
  margin-bottom: 8px;
}

.mini-hub-sidebar span {
  width: 80%;
  height: 8px;
  border-radius: 2px;
  background: #272727;
}

.mini-hub-sidebar span.active {
  background: var(--home-lime);
}

.mini-hub-main {
  padding: 20px 14px;
}

.mini-hub-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.mini-hub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 14px 0;
}

.mini-hub-stats b {
  padding: 8px 3px;
  border: 1px solid #303030;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}

.mini-hub-row {
  min-height: 29px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid #292929;
}

.mini-hub-row i {
  width: 38%;
  height: 4px;
  display: block;
  background: #3a3a3a;
}

.mini-hub-row em {
  width: 7px;
  height: 7px;
  display: block;
  margin-left: auto;
  border-radius: 50%;
  background: var(--home-lime);
}

.ecosystem-outcome {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 8px 4px 22px;
}

.outcome-arrow {
  margin-bottom: 10px;
  color: var(--home-lime);
  font-size: 54px;
  line-height: 1;
}

.ecosystem-outcome strong {
  display: block;
  padding: 20px 12px;
  border: 2px solid var(--home-lime);
  font-family: var(--home-display);
  font-size: 35px;
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.ecosystem-outcome p {
  margin: 22px 0 0;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.55;
}

.method-section {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-black);
}

.method-background,
.method-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.method-background {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.method-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 26%, rgba(0, 0, 0, 0.56) 53%, rgba(0, 0, 0, 0.06) 84%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 45%, #000 100%);
}

.method-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(86px, 7vw, 122px) 62px;
}

.method-copy {
  max-width: 510px;
}

.method-copy h2 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(58px, 4.7vw, 84px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.method-copy p {
  max-width: 35ch;
  margin: 24px 0 30px;
  color: #dedede;
  font-size: 19px;
  line-height: 1.55;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.method-steps::before {
  content: "";
  position: absolute;
  inset: 0 2% auto;
  height: 2px;
  background: var(--home-lime);
}

.method-steps li {
  position: relative;
  min-width: 0;
  padding: 12px clamp(18px, 2vw, 34px) 14px;
}

.method-steps li:first-child {
  padding-left: 0;
}

.method-node {
  position: absolute;
  top: -35px;
  left: clamp(18px, 2vw, 34px);
  width: 18px;
  height: 18px;
  background: var(--home-lime);
}

.method-steps li:first-child .method-node {
  left: 0;
}

.method-step-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.method-step-heading b {
  font-family: var(--home-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.method-step-heading strong {
  font-family: var(--home-display);
  font-size: clamp(23px, 1.85vw, 32px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.method-steps li p {
  margin: 10px 0 0;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.5;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(360px, 39%) minmax(0, 61%);
  background: var(--home-paper);
  color: var(--home-black);
}

.proof-copy {
  display: flex;
  align-items: center;
  padding: clamp(84px, 7vw, 122px) clamp(36px, 3.7vw, 66px);
  background: var(--home-paper);
}

.proof-copy-inner {
  max-width: 590px;
  margin-left: auto;
}

.proof-copy h2 {
  font-size: clamp(48px, 3.65vw, 66px);
}

.proof-copy-inner > p {
  max-width: 39ch;
  margin: 26px 0 0;
  color: #303030;
  font-size: 18px;
  line-height: 1.65;
}

.proof-copy blockquote {
  position: relative;
  max-width: 38ch;
  margin: 40px 0 30px;
  padding-top: 32px;
  color: var(--home-black);
  font-size: clamp(22px, 1.65vw, 29px);
  font-weight: 750;
  line-height: 1.4;
}

.proof-copy blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 3px;
  background: var(--home-lime);
}

.proof-gallery {
  min-width: 0;
  padding: 34px clamp(28px, 4vw, 64px) 46px;
  background: var(--home-black);
  color: var(--home-white);
}

.proof-gallery-label {
  margin-bottom: 18px;
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.proof-collage {
  height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(220px, 0.78fr);
  grid-template-rows: 1.7fr 0.86fr;
  gap: 10px;
}

.proof-shot {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #111;
}

.proof-shot-a {
  grid-column: 1;
  grid-row: 1;
}

.proof-shot-b {
  grid-column: 1;
  grid-row: 2;
}

.proof-shot-c {
  grid-column: 2;
  grid-row: 1 / 3;
}

.proof-more {
  grid-column: 1 / -1;
  padding: 14px 20px;
  border-top: 1px solid #c7c7c2;
  background: var(--home-paper);
  color: #202020;
  font-size: 15px;
  text-align: center;
}

.proof-more a {
  color: #7a911c;
  font-weight: 700;
  text-decoration: none;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 7vw, 128px) 0;
  background: var(--home-black);
}

.diagnostic-background {
  position: absolute;
  z-index: -2;
  inset: 34% 48% 0 0;
  background: url("assets/home-consultoria-warroom.webp") center bottom / cover no-repeat;
  opacity: 0.46;
}

.diagnostic-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 46% 0 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.18) 100%);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  gap: clamp(58px, 8vw, 136px);
  align-items: center;
}

.diagnostic-copy h2 {
  max-width: 650px;
  font-size: clamp(62px, 5.3vw, 90px);
}

.diagnostic-copy > p {
  max-width: 47ch;
  margin: 24px 0 34px;
  color: #dedede;
  font-size: 18px;
  line-height: 1.55;
}

.diagnostic-phases {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-phases::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 19px;
  width: 1px;
  background: #b8b8b8;
}

.diagnostic-phases li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  align-items: start;
}

.diagnostic-phases li > b {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-lime);
  color: var(--home-black);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
}

.diagnostic-phases li div {
  display: grid;
  gap: 5px;
}

.diagnostic-phases strong {
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.diagnostic-phases span {
  max-width: 34ch;
  color: #e2e2e2;
  font-size: 16px;
  line-height: 1.45;
}

.diagnostic-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 64px);
  border-radius: var(--home-radius);
  background: var(--home-lime);
  color: var(--home-black);
}

.diagnostic-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-progress {
  height: 7px;
  margin: 28px 0 44px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.14);
}

.diagnostic-progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--home-black);
  transform-origin: left center;
  transition: transform 420ms var(--home-ease);
}

.diagnostic-card h3 {
  margin: 0 0 28px;
  font-family: var(--home-display);
  font-size: clamp(46px, 4vw, 70px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.diagnostic-options {
  display: grid;
  gap: 12px;
}

.diagnostic-options button {
  min-height: 74px;
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  border: 2px solid var(--home-black);
  border-radius: var(--home-radius-small);
  background: var(--home-black);
  color: var(--home-white);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--home-ease);
}

.diagnostic-options button span {
  font-family: var(--home-display);
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.diagnostic-options button.is-selected {
  background: var(--home-white);
  color: var(--home-black);
}

.diagnostic-continue {
  min-height: 62px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  border: 0;
  border-radius: var(--home-radius-small);
  background: var(--home-black);
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms var(--home-ease);
}

.diagnostic-continue:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.diagnostic-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.diagnostic-result {
  animation: result-in 480ms var(--home-ease) both;
}

.diagnostic-result-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid var(--home-black);
  border-radius: 4px;
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-result h3 {
  max-width: 600px;
}

.dark-dot {
  color: var(--home-black);
}

.diagnostic-result dl {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.diagnostic-result dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.diagnostic-result dt {
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-result dd {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.diagnostic-result-cta {
  min-height: 62px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: var(--home-radius-small);
  background: var(--home-black);
  color: var(--home-white);
  font-family: var(--home-display);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.diagnostic-reset {
  width: 100%;
  margin-top: 17px;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--home-line);
  background: var(--home-black);
}

.final-cta > img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
}

.final-cta-shade {
  z-index: -1;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 36%, rgba(0, 0, 0, 0.55) 61%, rgba(0, 0, 0, 0.06) 86%);
}

.final-cta-content {
  padding-block: 96px;
}

.final-cta h2 {
  max-width: 650px;
  font-size: clamp(64px, 5.8vw, 96px);
}

.final-cta-content > p {
  max-width: 44ch;
  margin: 24px 0 30px;
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.55;
}

.final-testimonials-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.home-footer {
  border-top: 1px solid var(--home-line);
  background: var(--home-black);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(270px, 1.45fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(40px, 7vw, 110px);
  padding-block: 52px;
}

.footer-brand img {
  width: 230px;
  display: block;
}

.footer-brand p {
  max-width: 40ch;
  margin: 22px 0 0;
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: var(--home-lime);
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  color: #ededed;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-bottom {
  padding-block: 24px;
  border-top: 1px solid var(--home-line);
  color: #949494;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--home-lime);
  outline-offset: 4px;
}

@media (hover: hover) {
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-whatsapp:hover,
  .home-button-lime:hover {
    background: var(--home-lime-hover);
    transform: translateY(-2px);
  }

  .home-button-dark:hover {
    background: #262626;
    transform: translateY(-2px);
  }

  .problem-visual:hover img,
  .audience-path:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.04);
  }

  .problem-visual:hover .play-control {
    background: var(--home-lime-hover);
    transform: translate(-50%, -50%) scale(1.06);
  }

  .audience-path:hover .inline-link {
    color: var(--home-lime-hover);
  }

  .diagnostic-options button:hover {
    transform: translateX(4px);
  }

  .diagnostic-continue:not(:disabled):hover,
  .diagnostic-result-cta:hover {
    transform: translateY(-2px);
  }

  .footer-column a:hover,
  .final-testimonials-link:hover,
  .proof-more a:hover {
    color: var(--home-lime-hover);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes result-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1260px) {
  .site-header-inner {
    grid-template-columns: 200px 1fr auto;
    gap: 22px;
  }

  .site-logo {
    width: 190px;
  }

  .site-nav {
    gap: 22px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .header-whatsapp {
    padding-inline: 18px;
    font-size: 15px;
  }

  .ecosystem-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ecosystem-outcome {
    grid-column: 1 / -1;
    min-height: 210px;
    display: grid;
    grid-template-columns: 80px minmax(240px, 0.6fr) 1fr;
    align-items: center;
    gap: 20px;
    padding: 28px 10px 4px;
  }

  .ecosystem-outcome p,
  .outcome-arrow {
    margin: 0;
  }
}

@media (max-width: 1050px) {
  :root {
    --home-header-height: 70px;
  }

  .home-container {
    width: min(920px, calc(100% - 48px));
  }

  .site-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .site-logo {
    width: 176px;
  }

  .site-nav,
  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    background: #0e0e0e;
    color: var(--home-white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform 200ms var(--home-ease), opacity 160ms ease;
  }

  .menu-is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100svh - var(--home-header-height));
    display: block;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 220ms var(--home-ease), visibility 180ms ease;
  }

  .menu-is-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding-block: 32px 54px;
  }

  .mobile-menu-inner > a:not(.mobile-menu-cta) {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #252525;
    font-family: var(--home-display);
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu-cta {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    border-radius: var(--home-radius-small);
    background: var(--home-lime);
    color: var(--home-black);
    font-family: var(--home-display);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }

  .home-hero {
    min-height: 820px;
  }

  .home-hero-image,
  .home-hero-shade {
    height: calc(100% - var(--home-header-height));
  }

  .home-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0.36) 100%),
      linear-gradient(180deg, transparent 45%, #000 100%);
  }

  .home-hero h1 {
    max-width: 690px;
    font-size: clamp(66px, 9vw, 88px);
  }

  .problem-layout,
  .ecosystem-intro,
  .diagnostic-layout {
    grid-template-columns: 1fr;
  }

  .problem-copy {
    max-width: 760px;
  }

  .problem-copy h2,
  .ecosystem-intro h2 {
    font-size: clamp(58px, 7vw, 78px);
  }

  .problem-visual {
    min-height: 0;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .pain-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .audience-columns {
    grid-template-columns: 1fr;
  }

  .audience-path {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .audience-path + .audience-path {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .audience-copy {
    min-height: 0;
  }

  .audience-copy h3 {
    min-height: 0;
    font-size: clamp(40px, 5vw, 56px);
    overflow-wrap: anywhere;
  }

  .ecosystem-intro {
    align-items: start;
  }

  .ecosystem-aside {
    gap: 18px;
  }

  .ecosystem-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .ecosystem-line {
    display: none;
  }

  .ecosystem-step {
    position: relative;
    padding-top: 36px;
  }

  .ecosystem-node {
    top: 0;
    left: 10px;
  }

  .ecosystem-step::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 28px;
    right: 10px;
    height: 2px;
    background: var(--home-lime);
  }

  .ecosystem-outcome {
    grid-column: 1 / -1;
  }

  .method-section {
    min-height: 980px;
  }

  .method-shade {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.3) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, #000 84%);
  }

  .method-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .method-steps::before {
    display: none;
  }

  .method-steps li {
    border-top: 2px solid var(--home-lime);
    padding-top: 26px;
  }

  .method-node {
    top: -10px;
    left: 0 !important;
  }

  .proof-section {
    grid-template-columns: 1fr;
  }

  .proof-copy-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .proof-gallery {
    padding-inline: 48px;
  }

  .diagnostic-section::after {
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
  }

  .diagnostic-background {
    inset: 0;
  }

  .diagnostic-copy {
    max-width: 760px;
  }

  .diagnostic-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --home-header-height: 64px;
  }

  .home-container {
    width: calc(100% - 32px);
  }

  .site-logo {
    width: 154px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .home-button {
    min-height: 56px;
    width: 100%;
    padding-inline: 20px;
    font-size: 19px;
    text-align: center;
  }

  .operation-dialog {
    width: calc(100% - 24px);
    max-height: 92svh;
  }

  .operation-dialog-panel {
    grid-template-columns: 1fr;
  }

  .operation-dialog-panel > img {
    min-height: 250px;
    max-height: 34svh;
  }

  .operation-dialog-panel > div {
    gap: 18px;
    padding: 30px 24px;
  }

  .operation-dialog h2 {
    font-size: 40px;
  }

  .home-hero {
    min-height: max(720px, 100svh);
  }

  .home-hero-image {
    object-position: 68% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, #000 86%);
  }

  .home-hero-content {
    justify-content: flex-end;
    padding-block: 88px 52px;
  }

  .hero-kicker {
    margin-bottom: 17px;
    font-size: 16px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 14.4vw, 68px);
    line-height: 0.95;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    gap: 16px;
    margin-top: 26px;
  }

  .hero-text-link {
    width: fit-content;
    margin-inline: auto;
    font-size: 17px;
  }

  .hero-benefits-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-benefit {
    min-height: 72px;
    justify-content: flex-start;
    gap: 18px;
    padding-inline: 12px;
    font-size: 19px;
  }

  .hero-benefit + .hero-benefit {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .hero-benefit svg,
  .compass-icon {
    width: 30px;
    height: 30px;
  }

  .compass-icon::before {
    top: 5px;
    left: 10px;
  }

  .problem-section,
  .ecosystem-section {
    padding-block: 72px;
  }

  .problem-layout {
    gap: 40px;
  }

  .problem-visual {
    aspect-ratio: 1.1;
  }

  .problem-copy {
    grid-row: 1;
  }

  .problem-copy h2,
  .ecosystem-intro h2,
  .proof-copy h2,
  .diagnostic-copy h2,
  .final-cta h2 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .problem-copy > p,
  .ecosystem-intro > div > p,
  .ecosystem-aside p,
  .proof-copy-inner > p,
  .diagnostic-copy > p,
  .final-cta-content > p {
    font-size: 16px;
  }

  .play-control {
    width: 62px;
    height: 62px;
  }

  .visual-caption {
    bottom: 22px;
    font-size: 16px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
  }

  .pain-item,
  .pain-item:first-child,
  .pain-item:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid #c4c4bf;
    border-left: 0;
  }

  .pain-item:first-child {
    border-top: 0;
  }

  .pain-item > span {
    margin-bottom: 14px;
  }

  .pain-item strong {
    font-size: 32px;
  }

  .audiences-section {
    padding-block: 70px 84px;
  }

  .audiences-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .audiences-heading h2 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .audiences-heading p {
    font-size: 16px;
  }

  .audience-path {
    display: flex;
  }

  .audience-image-wrap {
    aspect-ratio: 1.25;
  }

  .audience-copy {
    padding: 28px 0 36px;
  }

  .audience-copy h3 {
    font-size: clamp(38px, 11vw, 52px);
    overflow-wrap: anywhere;
  }

  .audience-copy p {
    margin-block: 18px 28px;
    font-size: 16px;
  }

  .ecosystem-intro {
    gap: 34px;
    margin-bottom: 38px;
  }

  .ecosystem-panel {
    width: 100%;
    padding: 34px 16px 24px;
    border-radius: 0;
  }

  .ecosystem-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ecosystem-step {
    padding: 32px 0 0;
  }

  .ecosystem-node {
    left: 0;
  }

  .ecosystem-step::before {
    left: 18px;
    right: 0;
  }

  .ecosystem-step h3 {
    font-size: 36px;
  }

  .ecosystem-step > p {
    min-height: 0;
    font-size: 15px;
  }

  .ecosystem-visual {
    width: 100%;
    height: 240px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .ecosystem-outcome {
    min-height: 0;
    display: flex;
    padding: 10px 0 0;
  }

  .outcome-arrow {
    margin-bottom: 12px;
  }

  .ecosystem-outcome strong {
    width: 100%;
    font-size: 40px;
  }

  .ecosystem-outcome p {
    margin-top: 18px;
    font-size: 15px;
  }

  .method-section {
    min-height: 0;
  }

  .method-background {
    object-position: 45% center;
    opacity: 0.52;
  }

  .method-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000 54%, #000 100%);
  }

  .method-content {
    padding-block: 76px 70px;
  }

  .method-copy h2 {
    font-size: clamp(52px, 14vw, 68px);
  }

  .method-copy p {
    font-size: 16px;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 62px;
    padding: 0;
  }

  .method-steps li,
  .method-steps li:first-child {
    padding: 22px 0 4px;
  }

  .method-step-heading b {
    font-size: 46px;
  }

  .method-step-heading strong {
    font-size: 29px;
  }

  .method-steps li p {
    font-size: 15px;
  }

  .proof-copy {
    padding: 72px 16px;
  }

  .proof-copy blockquote {
    margin-top: 34px;
    font-size: 22px;
  }

  .proof-gallery {
    padding: 30px 16px 36px;
  }

  .proof-gallery-label {
    font-size: 16px;
    text-align: left;
  }

  .proof-collage {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .proof-shot,
  .proof-shot-a,
  .proof-shot-b,
  .proof-shot-c {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    max-height: 440px;
  }

  .proof-more {
    padding-inline: 16px;
    font-size: 14px;
  }

  .diagnostic-section {
    padding-block: 76px;
  }

  .diagnostic-layout {
    gap: 50px;
  }

  .diagnostic-phases {
    gap: 24px;
  }

  .diagnostic-phases li {
    gap: 16px;
  }

  .diagnostic-phases strong {
    font-size: 29px;
  }

  .diagnostic-phases span {
    font-size: 15px;
  }

  .diagnostic-card {
    min-height: 0;
    padding: 28px 16px;
    border-radius: var(--home-radius-small);
  }

  .diagnostic-card-top {
    font-size: 15px;
  }

  .diagnostic-progress {
    margin-block: 22px 32px;
  }

  .diagnostic-card h3 {
    margin-bottom: 24px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .diagnostic-options button {
    min-height: 66px;
    grid-template-columns: 28px 1fr 22px;
    gap: 12px;
    padding-inline: 14px;
  }

  .diagnostic-options button span {
    font-size: 21px;
  }

  .diagnostic-continue {
    min-height: 58px;
    margin-top: 22px;
    font-size: 20px;
  }

  .diagnostic-result dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .diagnostic-result-cta {
    min-height: 58px;
    font-size: 19px;
    text-align: center;
  }

  .final-cta {
    min-height: 680px;
    align-items: flex-end;
  }

  .final-cta > img {
    object-position: 68% center;
  }

  .final-cta-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.46)),
      linear-gradient(180deg, transparent 22%, #000 82%);
  }

  .final-cta-content {
    padding-block: 90px 64px;
  }

  .final-testimonials-link {
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 46px;
  }

  .footer-brand img {
    width: 205px;
  }

  .footer-bottom {
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .home-hero h1,
  .problem-copy h2,
  .ecosystem-intro h2,
  .audiences-heading h2,
  .method-copy h2,
  .proof-copy h2,
  .diagnostic-copy h2,
  .final-cta h2 {
    font-size: 46px;
  }

  .site-logo {
    width: 142px;
  }

  .diagnostic-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .diagnostic-options button span {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
