:root {
  --black: #0b0b0b;
  --white: #f7f7f3;
  --paper: #eceee8;
  --acid: #00b83f;
  --orange: #ff4c21;
  --blue: #2d5bff;
  --violet: #5736f5;
  --pink: #ff6dca;
  --brand-green: #00b83f;
  --brand-green-rgb: 0, 184, 63;
  --brand-green-deep-rgb: 0, 55, 25;
  --glass-green:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.055) 42%,
      rgba(var(--brand-green-rgb), 0.18)
    ),
    rgba(var(--brand-green-deep-rgb), 0.42);
  --glass-green-strong:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.045) 46%,
      rgba(var(--brand-green-rgb), 0.16)
    ),
    rgba(var(--brand-green-deep-rgb), 0.62);
  --glass-border: rgba(221, 255, 232, 0.36);
  --glass-highlight: rgba(255, 255, 255, 0.34);
  --glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(var(--brand-green-rgb), 0.2),
    0 16px 44px rgba(0, 35, 16, 0.22);
  --glass-blur: 24px;
  --line: rgba(11, 11, 11, 0.2);
  --pad: clamp(20px, 3vw, 58px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.testimonial-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #8affad;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  padding: 12px 16px;
  color: #061108;
  background: #8affad;
  border-radius: 999px;
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px var(--pad);
  color: #fff;
  mix-blend-mode: normal;
  pointer-events: none;
}

.site-header.menu-active {
  color: #fff;
  mix-blend-mode: normal;
}

.brand {
  position: relative;
  width: clamp(126px, 10vw, 158px);
  display: flex;
  align-items: center;
  padding: 9px 13px;
  overflow: hidden;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  pointer-events: auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 2px 7px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 12px rgba(var(--brand-green-rgb), 0.22));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(6, 17, 9, 0.42);
  border: 1px solid rgba(221, 255, 232, 0.2);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  pointer-events: auto;
}

.header-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-nav a {
  padding: 0 15px;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.header-cta {
  padding: 0 20px;
  color: #071108;
  background: var(--acid);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 44px rgba(var(--brand-green-rgb), 0.24);
  font-weight: 500;
  pointer-events: auto;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 13px;
  color: currentColor;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  pointer-events: auto;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.08) 42%,
      rgba(var(--brand-green-rgb), 0.28)
    ),
    rgba(var(--brand-green-deep-rgb), 0.52);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 48px rgba(0, 35, 16, 0.3);
  transform: translateY(-1px);
}

.menu-label {
  font-size: 15px;
  font-weight: 300;
}

.menu-icon {
  position: relative;
  width: 36px;
  height: 27px;
  display: block;
}

.menu-icon i {
  position: absolute;
  right: 0;
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: top 240ms ease, transform 240ms ease;
}

.menu-icon i:first-child {
  top: 7px;
}

.menu-icon i:last-child {
  top: 19px;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  top: 13px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  top: 13px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 125px var(--pad) 40px;
  overflow: auto;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(var(--brand-green-rgb), 0.2),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 238, 232, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(36px) saturate(1.25);
  -webkit-backdrop-filter: blur(36px) saturate(1.25);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

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

.menu-primary nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 36px);
}

.menu-primary a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-top: 1px solid rgba(var(--brand-green-deep-rgb), 0.28);
  border-radius: 22px;
  transition:
    opacity 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.menu-primary nav:hover a {
  opacity: 0.32;
}

.menu-primary nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 15px 40px rgba(var(--brand-green-deep-rgb), 0.1);
  transform: translateY(-3px);
}

.menu-number,
.menu-caption {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.menu-primary strong {
  margin-top: 24px;
  font-size: clamp(30px, 2.7vw, 54px);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.menu-primary small {
  max-width: 240px;
  margin-top: auto;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.menu-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.menu-secondary > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 3px 24px;
}

.menu-secondary .menu-caption {
  grid-row: 1 / 4;
  color: #777;
}

.menu-secondary p {
  margin: 0;
  font-size: 13px;
}

.menu-contact-link {
  min-width: 230px;
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  color: #fff;
  background: var(--glass-green-strong);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  font-size: 14px;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 800ms ease, transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 800ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.hero-photo,
.hero-photo img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  display: block;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  transition: transform 7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-slide.is-active .hero-photo img {
  transform: scale(1);
}

.hero-photo-performance img {
  object-position: 52% center;
}

.hero-photo-management img {
  object-position: 58% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, transparent 48%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-index {
  position: absolute;
  top: 82px;
  right: var(--pad);
  z-index: 2;
  color: rgba(255, 255, 255, 0.17);
  font-size: clamp(130px, 20vw, 380px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.hero-social {
  background: #151515;
}

.social-scene,
.search-scene,
.meta-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.social-word {
  position: absolute;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(100px, 16vw, 300px);
  font-weight: 500;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.word-one {
  top: 5%;
  left: -2%;
}

.word-two {
  right: -3%;
  bottom: 9%;
}

.social-poster {
  position: absolute;
  top: 12%;
  left: 52%;
  width: min(32vw, 500px);
  aspect-ratio: 0.78;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--black);
  background: var(--acid);
  box-shadow: 28px 35px 0 rgba(52, 13, 45, 0.22);
  transform: rotate(7deg);
}

.social-poster > span {
  font-size: 16px;
  font-weight: 500;
}

.social-poster strong {
  font-size: clamp(52px, 5.3vw, 100px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.social-poster small {
  font-size: 13px;
  text-transform: uppercase;
}

.social-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.orbit-one {
  top: 17%;
  left: 43%;
  width: 45vw;
  height: 45vw;
}

.orbit-two {
  top: 31%;
  left: 56%;
  width: 24vw;
  height: 24vw;
}

.social-stamp {
  position: absolute;
  top: 22%;
  right: 5%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  transform: rotate(12deg);
}

.hero-content {
  position: absolute;
  right: var(--pad);
  bottom: clamp(115px, 15vh, 170px);
  left: var(--pad);
  z-index: 5;
  pointer-events: none;
}

.hero-kicker {
  display: block;
  margin-bottom: 17px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(66px, 8.3vw, 158px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero h1 em,
.hero h2 em {
  font-weight: 500;
  font-style: normal;
}

.hero-sales-content {
  bottom: clamp(138px, 17vh, 205px);
  max-width: min(1180px, calc(100% - (var(--pad) * 2)));
  color: #fff;
  pointer-events: auto;
}

.hero-sales-content .hero-kicker {
  margin-bottom: 20px;
  color: var(--acid);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.hero-sales-content h1 {
  max-width: 1040px;
  font-size: clamp(48px, 6.2vw, 112px);
  font-weight: 350;
  line-height: 0.91;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.48;
  text-wrap: pretty;
}

.hero-support {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-button span {
  font-size: 18px;
}

.hero-button-primary {
  color: #071108;
  background: var(--acid);
  border-color: var(--acid);
}

.hero-button-secondary {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

.hero-search {
  color: #fff;
  background: #151515;
}

.hero-search .hero-content {
  color: #fff;
  mix-blend-mode: normal;
}

.search-ring {
  position: absolute;
  border: 1px solid rgba(11, 11, 11, 0.22);
  border-radius: 50%;
}

.ring-a {
  top: -15vw;
  right: -3vw;
  width: 68vw;
  height: 68vw;
}

.ring-b {
  top: 6vw;
  right: 18vw;
  width: 32vw;
  height: 32vw;
  background: var(--blue);
  border: 0;
  box-shadow: 0 0 0 55px rgba(45, 91, 255, 0.1);
}

.search-box {
  position: absolute;
  top: 16%;
  left: 6%;
  width: min(69vw, 1250px);
  min-height: 94px;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 23px;
  padding: 18px 24px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 100px;
  box-shadow: 18px 18px 0 var(--acid);
}

.search-g {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #fff;
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 500;
}

.search-box strong {
  overflow: hidden;
  font-size: clamp(25px, 3vw, 53px);
  font-weight: 300;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.search-arrow {
  font-size: 35px;
}

.search-result {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--black);
}

.search-result small,
.gw-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.search-result strong {
  font-size: clamp(20px, 2.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.search-result span {
  font-size: 13px;
}

.result-a {
  top: 37%;
  right: 8%;
  width: min(38vw, 660px);
  transform: rotate(-2deg);
}

.result-b {
  top: 50%;
  left: 11%;
  width: min(31vw, 480px);
  background: var(--acid);
  transform: rotate(3deg);
}

.search-index {
  position: absolute;
  top: 33%;
  left: 5%;
  font-size: 15px;
  font-weight: 500;
  transform: rotate(-90deg);
}

.hero-meta {
  background: #151515;
}

.meta-marquee {
  position: absolute;
  top: 7%;
  left: -2%;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(78px, 10vw, 190px);
  font-weight: 500;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.meta-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 2px solid #fff;
  box-shadow: 20px 24px 0 rgba(9, 6, 52, 0.24);
}

.meta-card-one {
  top: 18%;
  right: 12%;
  width: min(27vw, 440px);
  aspect-ratio: 0.82;
  color: var(--black);
  background: var(--orange);
  transform: rotate(6deg);
}

.meta-card-one strong {
  font-size: clamp(45px, 5vw, 86px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.meta-card-two {
  top: 28%;
  left: 44%;
  width: min(23vw, 370px);
  aspect-ratio: 0.88;
  background: var(--black);
  transform: rotate(-8deg);
}

.meta-card-two > span {
  font-size: 50px;
}

.meta-card-two strong {
  font-size: clamp(31px, 3.6vw, 65px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.meta-disc {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.disc-one {
  top: 20%;
  left: 8%;
  width: 22vw;
  height: 22vw;
  background: var(--blue);
}

.disc-two {
  top: 30%;
  left: 19%;
  width: 18vw;
  height: 18vw;
  background: var(--pink);
}

.disc-three {
  top: 42%;
  left: 12%;
  width: 15vw;
  height: 15vw;
  background: var(--acid);
}

.hero-bottom {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  left: var(--pad);
  z-index: 8;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  padding: 18px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-caption {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 20px;
}

.slide-counter {
  font-size: 12px;
  font-weight: 400;
}

.hero-caption p {
  max-width: 610px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.hero-controls {
  display: flex;
}

.hero-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-controls button + button {
  margin-left: -1px;
}

.hero-controls button:hover {
  color: #fff;
  background: var(--brand-green);
  border-color: var(--brand-green);
  transform: scale(1.06);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.scroll-cue i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  font-size: 20px;
  font-style: normal;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
}

.problems-section {
  padding: clamp(96px, 11vw, 170px) var(--pad);
  color: var(--black);
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--brand-green-rgb), 0.11), transparent 28%),
    #eef0eb;
}

.problems-intro {
  display: grid;
  grid-template-columns: 0.42fr 1.15fr 0.72fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 88px;
}

.problems-intro h2 {
  margin: 0;
  font-size: clamp(54px, 6.7vw, 118px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.problems-intro h2 em {
  color: var(--brand-green);
  font-style: normal;
  font-weight: 500;
}

.problems-intro > p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.62;
}

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

.problem-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 17, 8, 0.12);
  border-radius: 30px;
}

.problem-card > span {
  color: var(--brand-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.problem-card h3 {
  margin: auto 0 0;
  font-size: clamp(28px, 2.7vw, 48px);
  font-weight: 350;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.problem-card p {
  margin: 20px 0 0;
  color: rgba(6, 17, 8, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.work-section,
.method-section {
  padding: 140px var(--pad);
  background: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.7fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 130px;
}

.section-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.section-intro h2,
.method-heading h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 132px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.section-intro h2 em,
.method-heading h2 em,
.contact-intro h2 em {
  font-weight: 500;
  font-style: normal;
}

.section-intro > p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 120px 32px;
}

.work-card {
  display: block;
}

.work-social {
  grid-column: 1 / 13;
}

.work-google {
  grid-column: 1 / 8;
}

.work-meta-card {
  grid-column: 8 / 13;
  margin-top: 260px;
}

.work-visual {
  position: relative;
  overflow: hidden;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-card:hover .work-visual {
  transform: scale(0.985);
}

.work-photo {
  aspect-ratio: 4 / 3;
  background: #151515;
}

.work-social .work-photo {
  aspect-ratio: 16 / 9;
}

.work-photo picture,
.work-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.work-photo img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-social .work-photo img {
  object-position: center 25%;
}

.work-google .work-photo img {
  object-position: center 56%;
}

.work-card:hover .work-photo img {
  transform: scale(1.035);
}

.work-photo-performance img {
  object-position: 53% center;
}

.work-photo-social img {
  object-position: 60% center;
}

.photo-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 17px;
  color: #fff;
  background: var(--glass-green-strong);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-work-art {
  min-height: min(70vw, 900px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 72%, rgba(216, 255, 54, 0.92), transparent 14%),
    linear-gradient(115deg, #e83728, #a61655 60%, #4d1f91);
}

.sw-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 11vw 11vw;
}

.sw-kicker {
  position: absolute;
  top: 5%;
  left: 4%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.social-work-art > strong {
  position: absolute;
  bottom: 5%;
  left: 4%;
  font-size: clamp(72px, 13vw, 250px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.social-work-art > strong i {
  color: var(--acid);
  font-style: normal;
}

.sw-card {
  position: absolute;
  top: 14%;
  right: 8%;
  width: min(29vw, 430px);
  aspect-ratio: 0.73;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  color: var(--black);
  background: #ffcaea;
  box-shadow: 26px 30px 0 rgba(25, 6, 52, 0.22);
  transform: rotate(8deg);
}

.sw-card span {
  font-size: 60px;
  font-weight: 300;
}

.sw-card p {
  margin: 0;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.sw-dot {
  position: absolute;
  top: 12%;
  left: 42%;
  width: 9vw;
  height: 9vw;
  min-width: 80px;
  min-height: 80px;
  background: var(--blue);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.work-meta {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.7fr auto;
  gap: 28px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--black);
}

.work-meta > span {
  font-size: 11px;
}

.work-meta h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 45px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.work-meta p {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.work-meta > i {
  font-size: 24px;
  font-style: normal;
}

.google-work-art {
  min-height: 680px;
  padding: 34px;
  color: var(--black);
  background: #f1d943;
}

.gw-label {
  position: relative;
  z-index: 2;
}

.gw-query {
  position: absolute;
  top: 16%;
  right: -8%;
  left: 8%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  align-items: center;
  gap: 18px;
  padding: 15px 19px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 60px;
  transform: rotate(-4deg);
}

.gw-query > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
}

.gw-query strong {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 300;
}

.gw-query i {
  font-size: 28px;
  font-style: normal;
}

.gw-lines {
  position: absolute;
  top: 38%;
  right: 8%;
  left: 8%;
  display: grid;
  gap: 18px;
}

.gw-lines span {
  height: 18px;
  background: rgba(11, 11, 11, 0.16);
}

.gw-lines span:nth-child(1) {
  width: 82%;
}

.gw-lines span:nth-child(2) {
  width: 100%;
}

.gw-lines span:nth-child(3) {
  width: 63%;
}

.gw-word {
  position: absolute;
  bottom: 6%;
  left: 5%;
  color: var(--blue);
  font-size: clamp(62px, 8.7vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.09em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.gw-number {
  position: absolute;
  right: 4%;
  bottom: 4%;
  font-size: clamp(100px, 15vw, 260px);
  font-weight: 500;
  letter-spacing: -0.1em;
  opacity: 0.85;
}

.meta-work-art {
  min-height: 620px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 109, 202, 0.95), transparent 26%),
    linear-gradient(150deg, #4d34ec, #1b167d);
}

.mw-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.meta-work-art > strong {
  position: absolute;
  top: 20%;
  right: 8%;
  left: 8%;
  z-index: 2;
  font-size: clamp(48px, 5.5vw, 92px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.meta-work-art > strong i {
  color: var(--acid);
  font-style: normal;
}

.mw-target {
  position: absolute;
  right: -7%;
  bottom: 8%;
  width: 65%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.mw-target span {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
}

.mw-target span:nth-child(1) {
  width: 100%;
  height: 100%;
}

.mw-target span:nth-child(2) {
  width: 64%;
  height: 64%;
}

.mw-target span:nth-child(3) {
  width: 22%;
  height: 22%;
  background: var(--orange);
  border: 0;
}

.mw-ticket {
  position: absolute;
  bottom: 8%;
  left: -5%;
  padding: 14px 18px;
  color: var(--black);
  background: var(--acid);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transform: rotate(6deg);
}

.production-section {
  padding: 140px var(--pad) 160px;
  background: #e8eae5;
}

.production-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.7fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 110px;
}

.production-heading h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 132px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.production-heading h2 em {
  font-weight: 500;
  font-style: normal;
}

.production-heading p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.production-item {
  margin: 0;
}

.production-direction {
  grid-column: 1 / 8;
}

.production-editing {
  grid-column: 8 / 13;
  margin-top: 230px;
}

.production-item picture,
.production-item img {
  width: 100%;
  display: block;
}

.production-item picture {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #151515;
}

.production-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.production-direction img {
  object-position: center 35%;
}

.production-item:hover img {
  transform: scale(1.025);
}

.production-item figcaption {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--black);
}

.production-item figcaption span {
  font-size: 11px;
}

.production-item figcaption strong {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.testimonials-section {
  position: relative;
  padding: 145px var(--pad) 120px;
  overflow: hidden;
  color: #fff;
  background: #101010;
}

.testimonials-section::before {
  content: "VOZES";
  position: absolute;
  top: 32%;
  left: -2vw;
  color: rgba(255, 255, 255, 0.035);
  font-size: 24vw;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.testimonials-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.7fr;
  align-items: start;
  gap: 50px;
}

.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 132px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.testimonials-heading h2 em {
  font-weight: 500;
  font-style: normal;
}

.testimonials-heading p {
  margin: 8px 0 0;
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-carousel {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

.testimonial-placeholder {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 60px 32px;
  border: 1.5px dashed rgba(6, 17, 8, 0.18);
  border-radius: 32px;
  color: rgba(6, 17, 8, 0.55);
}

.testimonial-placeholder-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6, 17, 8, 0.06);
  color: var(--brand-green);
  font-size: 18px;
}

.testimonial-placeholder strong {
  color: var(--black);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  max-width: 520px;
}

.testimonial-placeholder p {
  max-width: 460px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-stage {
  position: relative;
  height: min(65vw, 760px);
  min-height: 630px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(31vw, 390px);
  aspect-ratio: 9 / 16;
  display: block;
  padding: 0;
  overflow: hidden;
  color: #fff;
  outline: 0;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 32px;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 600ms ease,
    filter 600ms ease;
}

.testimonial-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate3d(-72%, 0, 120px) rotateY(0deg) scale(1);
}

.testimonial-card.is-next {
  z-index: 2;
  opacity: 0.72;
  filter: saturate(0.65) brightness(0.65);
  transform: translate3d(15%, 62px, -120px) rotateY(-13deg) scale(0.82);
}

.testimonial-card.is-prev {
  z-index: 2;
  opacity: 0.52;
  filter: saturate(0.5) brightness(0.55);
  transform: translate3d(-155%, 82px, -160px) rotateY(14deg) scale(0.75);
}

.testimonial-card.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(90%, 100px, -240px) rotateY(-20deg) scale(0.7);
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
  border-color: rgba(var(--brand-green-rgb), 0.86);
}

.testimonial-card video,
.testimonial-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonial-card video {
  object-fit: cover;
  pointer-events: none;
}

.testimonial-card-shade {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.83) 0%, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 25%);
}

.testimonial-card-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.testimonial-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.45);
  transition: color 200ms ease, background 200ms ease, transform 300ms ease;
}

.testimonial-card:hover .testimonial-card-play,
.testimonial-card:focus-visible .testimonial-card-play {
  color: #fff;
  background: var(--brand-green);
  border-color: var(--brand-green);
  transform: translate(-50%, -50%) scale(1.08);
}

.testimonial-card-copy {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  text-align: left;
  background: var(--glass-green-strong);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.testimonial-card-copy strong {
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.testimonial-card-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.testimonial-navigation {
  display: grid;
  grid-template-columns: auto minmax(200px, 1fr) auto;
  align-items: center;
  gap: 35px;
  padding-top: 22px;
  border-top: 1px solid #555;
}

.testimonial-arrows {
  display: flex;
}

.testimonial-arrows button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.testimonial-arrows button + button {
  margin-left: -1px;
}

.testimonial-arrows button:hover,
.testimonial-arrows button:focus-visible {
  color: #fff;
  background: var(--acid);
  border-color: var(--acid);
  transform: scale(1.06);
}

.testimonial-status {
  display: grid;
  grid-template-columns: 60px minmax(100px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.testimonial-counter {
  font-size: 11px;
}

.testimonial-progress {
  height: 1px;
  overflow: hidden;
  background: #444;
}

.testimonial-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.testimonial-carousel.is-running .testimonial-progress i {
  animation: testimonial-progress 6.5s linear infinite;
}

.testimonial-autoplay-toggle {
  padding: 7px 10px;
  color: #bbb;
  background: transparent;
  border: 1px solid #555;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  white-space: nowrap;
}

.testimonial-autoplay-toggle:hover,
.testimonial-autoplay-toggle:focus-visible,
.testimonial-autoplay-toggle[aria-pressed="true"] {
  color: #fff;
  border-color: var(--acid);
}

.testimonial-navigation > p {
  margin: 0;
  color: #999;
  font-size: 12px;
}

@keyframes testimonial-progress {
  to {
    transform: scaleX(1);
  }
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 42px;
  visibility: hidden;
  opacity: 0;
  perspective: 1600px;
  transition: opacity 350ms ease, visibility 350ms ease;
}

.testimonial-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.testimonial-modal-backdrop,
.testimonial-modal-glow {
  position: absolute;
  inset: 0;
}

.testimonial-modal-backdrop {
  width: 100%;
  height: 100%;
  padding: 0;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(var(--brand-green-rgb), 0.15),
      transparent 42%
    ),
    rgba(0, 28, 13, 0.58);
  border: 0;
  cursor: default;
  backdrop-filter: blur(36px) saturate(1.25);
  -webkit-backdrop-filter: blur(36px) saturate(1.25);
}

.testimonial-modal-glow {
  background-image: var(--testimonial-poster);
  background-position: center;
  background-size: cover;
  filter: blur(42px) saturate(0.85);
  opacity: 0.28;
  pointer-events: none;
  transform: scale(1.12);
}

.testimonial-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(88vw, 430px);
  max-height: 82svh;
  aspect-ratio: 9 / 16;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.48));
  transform: perspective(1200px) rotateY(9deg) rotateX(2deg) scale(0.86);
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.testimonial-modal.is-open .testimonial-modal-dialog {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1);
}

.testimonial-perspective-card {
  position: absolute;
  inset: 2%;
  z-index: -1;
  background-image: var(--testimonial-poster);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  filter: brightness(0.35);
  transform: translate3d(45px, 18px, -80px) rotateY(-13deg) rotateZ(4deg);
}

.testimonial-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 35px 100px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.testimonial-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  min-width: 68px;
  height: 36px;
  padding: 0 13px;
  color: #fff;
  background: var(--glass-green-strong);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  font-size: 10px;
  text-transform: uppercase;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
}

.testimonial-close:hover,
.testimonial-close:focus-visible {
  color: #fff;
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.testimonial-video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.testimonial-video-controls button {
  min-height: 44px;
  padding: 0 13px;
  color: #fff;
  background: var(--glass-green-strong);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
}

.testimonial-video-controls button:hover,
.testimonial-video-controls button:focus-visible {
  color: #fff;
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.manifesto {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px var(--pad);
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.manifesto::after {
  content: "L2P+";
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  color: rgba(255, 255, 255, 0.025);
  font-size: 28vw;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.13em;
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.section-label-light {
  color: #999;
}

.manifesto-copy {
  max-width: 1870px;
  margin: 105px auto;
  text-align: center;
}

.manifesto-copy p {
  margin: 0 0 45px;
  color: #bbb;
  font-size: clamp(40px, 5vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.manifesto-copy p:last-child {
  color: #fff;
}

.manifesto-copy em {
  color: var(--acid);
  font-weight: 400;
  font-style: normal;
}

.manifesto-inner > a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #555;
  font-size: 14px;
}

.intelligence-section {
  padding: 140px var(--pad);
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--brand-green-rgb), 0.16), transparent 22%),
    radial-gradient(circle at 85% 14%, rgba(var(--brand-green-rgb), 0.1), transparent 18%),
    #0a0d0a;
}

.intelligence-shell {
  display: grid;
  gap: 56px;
}

.intelligence-lead {
  display: grid;
  grid-template-columns: 0.42fr 1.18fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.intelligence-lead h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 122px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.intelligence-lead h2 em {
  color: var(--acid);
  font-style: normal;
  font-weight: 500;
}

.intelligence-lead p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.intelligence-board,
.intelligence-panel,
.intelligence-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(14, 18, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.26);
}

.intelligence-board {
  padding: clamp(28px, 3vw, 36px);
}

.intelligence-board::before,
.intelligence-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.intelligence-board-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: start;
}

.intelligence-board-head h3 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(54px, 5.5vw, 86px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.intelligence-pill {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  color: #f5f4ee;
  background: rgba(var(--brand-green-rgb), 0.08);
  border: 1px solid rgba(var(--brand-green-rgb), 0.24);
  border-radius: 24px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.intelligence-pill:hover,
.intelligence-pill:focus-visible {
  background: rgba(var(--brand-green-rgb), 0.14);
  border-color: rgba(var(--brand-green-rgb), 0.42);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.intelligence-map {
  position: relative;
  min-height: clamp(700px, 58vw, 820px);
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  background: rgba(7, 10, 8, 0.66);
}

.intelligence-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intelligence-line {
  fill: none;
  stroke: rgba(var(--brand-green-rgb), 0.18);
  stroke-width: 2.2;
  stroke-dasharray: 8 10;
  transition: stroke 220ms ease, opacity 220ms ease, stroke-width 220ms ease;
}

.intelligence-map[data-active-line="brand"] .intelligence-line-brand,
.intelligence-map[data-active-line="traffic"] .intelligence-line-traffic,
.intelligence-map[data-active-line="sales"] .intelligence-line-sales,
.intelligence-map[data-active-line="data"] .intelligence-line-data,
.intelligence-map[data-active-line="conversion"] .intelligence-line {
  stroke: rgba(var(--brand-green-rgb), 0.52);
  stroke-width: 2.8;
}

.intelligence-node {
  position: absolute;
  z-index: 2;
  top: var(--node-y);
  left: var(--node-x);
  width: min(30%, 238px);
  display: grid;
  gap: 10px;
  padding: 18px 18px 18px 20px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 11, 10, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  outline: none;
  text-align: left;
  transform: translate3d(0, 0, 0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.intelligence-node:hover,
.intelligence-node:focus-visible,
.intelligence-node.is-active {
  z-index: 12;
  border-color: rgba(var(--brand-green-rgb), 0.48);
  background: rgba(15, 20, 15, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(var(--brand-green-rgb), 0.18);
  transform: translateY(-4px);
}

.intelligence-node-center {
  width: min(32%, 250px);
}

.node-dot {
  width: 11px;
  height: 11px;
  display: block;
  background: var(--acid);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(var(--brand-green-rgb), 0.1),
    0 0 20px rgba(var(--brand-green-rgb), 0.4);
}

.intelligence-node strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.intelligence-node small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.node-preview {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(240px, 25vw);
  overflow: hidden;
  background: #101410;
  border: 1px solid rgba(var(--brand-green-rgb), 0.38);
  border-radius: 20px;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.035);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.96);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.node-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 5, 0.9), transparent 64%);
}

.node-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.node-preview > span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.intelligence-node:hover .node-preview,
.intelligence-node:focus-visible .node-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.intelligence-node[data-intelligence-target="brand"] .node-preview,
.intelligence-node[data-intelligence-target="sales"] .node-preview {
  left: 0;
  transform: translate(0, -8px) scale(0.96);
  transform-origin: top left;
}

.intelligence-node[data-intelligence-target="traffic"] .node-preview,
.intelligence-node[data-intelligence-target="data"] .node-preview {
  right: 0;
  left: auto;
  transform: translate(0, -8px) scale(0.96);
  transform-origin: top right;
}

.intelligence-node[data-intelligence-target="brand"]:hover .node-preview,
.intelligence-node[data-intelligence-target="brand"]:focus-visible .node-preview,
.intelligence-node[data-intelligence-target="sales"]:hover .node-preview,
.intelligence-node[data-intelligence-target="sales"]:focus-visible .node-preview,
.intelligence-node[data-intelligence-target="traffic"]:hover .node-preview,
.intelligence-node[data-intelligence-target="traffic"]:focus-visible .node-preview,
.intelligence-node[data-intelligence-target="data"]:hover .node-preview,
.intelligence-node[data-intelligence-target="data"]:focus-visible .node-preview {
  transform: translate(0, 0) scale(1);
}

.intelligence-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.intelligence-metric {
  min-height: 132px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px 18px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(10, 11, 10, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.intelligence-metric strong {
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.intelligence-metric span {
  font-size: 14px;
  line-height: 1.45;
}

.intelligence-metric:hover,
.intelligence-metric:focus-visible,
.intelligence-metric.is-active {
  color: #fff;
  background: rgba(var(--brand-green-rgb), 0.11);
  border-color: rgba(var(--brand-green-rgb), 0.38);
  transform: translateY(-3px);
}

.intelligence-panels {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.intelligence-panel {
  padding: 30px 34px;
}

.intelligence-panel.is-active {
  border-color: rgba(var(--brand-green-rgb), 0.28);
}

.intelligence-card-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  color: #d6d7cf;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intelligence-panel-media {
  position: relative;
  z-index: 1;
  min-height: 245px;
  margin: -12px -16px 26px;
  overflow: hidden;
  background: #080b08;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.intelligence-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 9, 6, 0.92), transparent 58%),
    linear-gradient(90deg, rgba(var(--brand-green-deep-rgb), 0.28), transparent 60%);
  pointer-events: none;
}

.intelligence-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: block;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
  transform: scale(1.02);
  transition:
    transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 300ms ease;
}

#intelligence-panel-traffic .intelligence-panel-media img {
  object-position: center 56%;
}

.intelligence-panel.is-active:hover .intelligence-panel-media img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.055);
}

.intelligence-panel-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.intelligence-panel-media figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intelligence-panel-media figcaption strong {
  max-width: 240px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.12;
  text-align: right;
}

.intelligence-panel h3,
.intelligence-panel p,
.intelligence-tags {
  position: relative;
  z-index: 1;
}

.intelligence-panel h3 {
  margin: 0;
  font-size: clamp(40px, 3.8vw, 60px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.intelligence-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.intelligence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intelligence-tags button {
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.intelligence-tags button:hover,
.intelligence-tags button:focus-visible,
.intelligence-tags button.is-active {
  color: #0a0d0a;
  background: var(--acid);
  border-color: var(--acid);
}

.intelligence-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 26px;
  color: #10130f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
    var(--acid);
  border-color: rgba(255, 255, 255, 0.18);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.intelligence-cta i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 19, 15, 0.08);
  font-style: normal;
}

.intelligence-cta:hover,
.intelligence-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.ecosystem-section {
  padding: 150px var(--pad);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--brand-green-rgb), 0.18), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(var(--brand-green-rgb), 0.12), transparent 24%),
    #060806;
}

.ecosystem-intro,
.proof-heading,
.tech-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.12fr 0.72fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 90px;
}

.ecosystem-intro h2,
.proof-heading h2,
.tech-heading h2 {
  margin: 0;
  font-size: clamp(54px, 6.6vw, 116px);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.ecosystem-intro h2 em,
.proof-heading h2 em,
.tech-heading h2 em {
  color: var(--acid);
  font-style: normal;
  font-weight: 500;
}

.ecosystem-intro p,
.proof-heading p,
.tech-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.ecosystem-tabs {
  display: grid;
  gap: 14px;
}

.solution-tab,
.solution-panel,
.proof-card,
.tech-grid span {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(13, 18, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.22);
}

.solution-tab {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 18px;
  align-content: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  cursor: pointer;
  text-align: left;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.solution-tab span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--acid);
  background: rgba(var(--brand-green-rgb), 0.08);
  border: 1px solid rgba(var(--brand-green-rgb), 0.28);
  border-radius: 50%;
  font-size: 12px;
}

.solution-tab strong {
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.solution-tab small {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.45;
}

.solution-tab:hover,
.solution-tab:focus-visible,
.solution-tab.is-active {
  color: #fff;
  border-color: rgba(var(--brand-green-rgb), 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(var(--brand-green-rgb), 0.13)),
    rgba(13, 18, 13, 0.96);
  transform: translateY(-3px);
}

.solution-panels {
  min-height: 100%;
  display: grid;
}

.solution-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 56px);
  border-color: rgba(var(--brand-green-rgb), 0.34);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 20%, rgba(var(--brand-green-rgb), 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(10, 14, 10, 0.96);
}

.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
  pointer-events: none;
}

.solution-panel > * {
  position: relative;
  z-index: 1;
}

.solution-panel > span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solution-panel h3 {
  max-width: 880px;
  margin: 34px 0 0;
  font-size: clamp(44px, 5vw, 86px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.solution-panel p {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.62;
}

.solution-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.solution-panel li {
  padding: 11px 15px;
  color: #061108;
  background: var(--acid);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.proof-section {
  padding: 150px var(--pad);
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--brand-green-rgb), 0.15), transparent 26%),
    linear-gradient(180deg, #0a0d0a, #060806);
}

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

.proof-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:not(.proof-card-wide):hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 55, 25, 0.14);
}

.proof-card:not(.proof-card-wide) {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.proof-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.proof-card-copy strong {
  margin-top: auto;
}

.proof-card-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  transition: transform 0.3s ease;
}

.proof-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.proof-card:not(.proof-card-wide):hover .proof-card-icon {
  transform: scale(1.12) rotate(-4deg);
}

.proof-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card strong {
  margin-top: auto;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.proof-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.proof-card-wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 84% 20%, rgba(var(--brand-green-rgb), 0.2), transparent 32%),
    rgba(13, 18, 13, 0.92);
}

.segment-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.segment-cloud b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px 13px 14px;
  color: #061108;
  background: var(--acid);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.segment-cloud b img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.segment-cloud b:hover {
  transform: translateY(-3px) scale(1.04);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 55, 25, 0.2);
}

.segment-cloud b:hover img {
  transform: scale(1.15) rotate(-6deg);
}

.tech-section {
  padding: 140px var(--pad);
  color: #fff;
  background:
    radial-gradient(circle at 82% 70%, rgba(var(--brand-green-rgb), 0.14), transparent 28%),
    #070907;
}

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

.tech-grid span {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 28px;
  color: #fff;
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
}

.method-heading {
  display: grid;
  grid-template-columns: 0.44fr 1.56fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 135px;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.method-list li {
  min-height: 160px;
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 1fr 60px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--black);
}

.method-number {
  font-size: 12px;
}

.method-list h3 {
  margin: 0;
  font-size: clamp(39px, 4.4vw, 78px);
  font-weight: 300;
  letter-spacing: -0.065em;
}

.method-list p {
  max-width: 530px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.method-mark {
  font-size: 37px;
  text-align: right;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  color: var(--black);
  background: var(--acid);
}

.contact-intro,
.contact-form {
  padding: 120px var(--pad) 70px;
}

.contact-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--black);
}

.contact-intro h2 {
  margin-top: 80px;
  font-size: clamp(58px, 6vw, 114px);
}

.contact-intro > p {
  max-width: 540px;
  margin: auto 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.contact-big-arrow {
  position: absolute;
  right: 5%;
  bottom: 4%;
  font-size: clamp(85px, 10vw, 180px);
  font-weight: 200;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
}

.form-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  font-size: 11px;
}

.contact-form label {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 95px;
  border-top: 1px solid var(--line);
}

.contact-form label > span {
  font-size: 11px;
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 20px 0;
  color: var(--black);
  outline: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(19px, 1.8vw, 32px);
  font-weight: 300;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--acid);
}

.form-hint {
  margin: -14px 0 12px 220px;
  color: #666;
  font-size: 11px;
  line-height: 1.45;
}

.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
}

.contact-form .privacy-consent {
  min-height: 0;
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  padding: 18px 0;
}

.contact-form .privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--brand-green);
}

.contact-form .privacy-consent > span {
  font-size: 12px;
  line-height: 1.5;
}

.privacy-consent a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-button {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 28px;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.04) 42%
    ),
    rgba(var(--brand-green-deep-rgb), 0.94);
  border: 1px solid rgba(var(--brand-green-rgb), 0.64);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 20px 48px rgba(var(--brand-green-deep-rgb), 0.22);
  cursor: pointer;
  font-size: clamp(22px, 2vw, 34px);
  transition: color 180ms ease, background 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  color: #fff;
  background: var(--acid);
  border-color: var(--acid);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  font-size: 12px;
}

.form-status.success {
  color: #20782a;
}

.form-status.error {
  color: #c8372d;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: start;
  gap: 50px;
  padding: 80px var(--pad) 30px;
  color: #fff;
  background: var(--black);
}

.footer-brand {
  position: relative;
  width: min(37vw, 480px);
}

.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer > p {
  margin: 0;
  color: #aaa;
  font-size: 20px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: #aaa;
  font-size: 12px;
}

.footer-links > a:hover,
.footer-links > a:focus-visible {
  color: #fff;
}

.footer-top-link {
  display: flex;
  gap: 20px;
  padding: 14px 18px;
  color: #fff;
  background: var(--glass-green);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  font-size: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  padding-top: 18px;
  color: #777;
  border-top: 1px solid #333;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.scroll-flow-text {
  --flow-x: 0px;
  --flow-y: 0px;
  transform: translate3d(var(--flow-x), var(--flow-y), 0);
  will-change: transform;
}

.reveal.scroll-flow-text {
  transform: translate3d(
    var(--flow-x),
    calc(var(--flow-y) + 35px),
    0
  );
}

.reveal.scroll-flow-text.is-visible {
  transform: translate3d(var(--flow-x), var(--flow-y), 0);
  transition: opacity 700ms ease, transform 90ms linear;
}

@media (max-width: 1100px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .menu-primary nav {
    grid-template-columns: 1fr 1fr;
  }

  .menu-primary a {
    min-height: 160px;
  }

  .menu-secondary {
    margin-top: 50px;
  }

  .section-intro,
  .production-heading,
  .testimonials-heading,
  .intelligence-lead,
  .ecosystem-intro,
  .proof-heading,
  .tech-heading {
    grid-template-columns: 0.35fr 1.15fr;
  }

  .section-intro > p,
  .production-heading > p,
  .testimonials-heading > p,
  .intelligence-lead > p,
  .ecosystem-intro > p,
  .proof-heading > p,
  .tech-heading > p {
    grid-column: 2;
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intelligence-layout {
    grid-template-columns: 1fr;
  }

  .problems-intro {
    grid-template-columns: 0.35fr 1.15fr;
  }

  .problems-intro > p {
    grid-column: 2;
  }

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

  .intelligence-panels {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .intelligence-cta {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    width: min(38vw, 370px);
  }

  .work-meta {
    grid-template-columns: 0.5fr 1fr auto;
  }

  .work-meta p {
    grid-column: 2;
  }

  .work-meta > i {
    grid-column: 3;
    grid-row: 1;
  }

  .work-meta-card {
    margin-top: 170px;
  }

  .contact-form label {
    grid-template-columns: 165px 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 17px;
  }

  html {
    scroll-behavior: auto;
  }

  .site-header {
    padding-top: 18px;
  }

  .brand {
    width: 122px;
    padding: 8px 11px;
    border-radius: 21px;
  }

  .menu-label {
    display: none;
  }

  .menu-toggle {
    padding: 7px 9px;
  }

  .menu-icon,
  .menu-icon i {
    width: 30px;
  }

  .menu-panel {
    grid-template-rows: auto auto;
    padding-top: 95px;
  }

  .menu-primary nav {
    grid-template-columns: 1fr;
  }

  .menu-primary a {
    min-height: auto;
    display: grid;
    grid-template-columns: 38px 1fr;
    padding: 14px 0;
  }

  .menu-primary strong {
    margin: 0;
    font-size: 39px;
  }

  .menu-primary small {
    display: none;
  }

  .menu-secondary {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    margin-top: 35px;
  }

  .menu-secondary > div {
    grid-template-columns: 120px 1fr;
  }

  .menu-contact-link {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo img {
    object-position: 50% center;
  }

  .hero-photo-performance img {
    object-position: 57% center;
  }

  .hero-photo-management img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent);
  }

  .hero-index {
    top: 105px;
    font-size: 42vw;
  }

  .hero-content {
    bottom: 120px;
  }

  .hero-sales-content {
    max-width: none;
  }

  .hero-sales-content h1 {
    font-size: clamp(40px, 11.6vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .hero-sales-content .hero-kicker {
    max-width: 310px;
    margin-bottom: 13px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-lead {
    max-width: 560px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-support {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.38;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-button {
    min-height: 48px;
    width: 100%;
    padding: 0 18px;
    font-size: 13px;
  }

  .problems-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .problems-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 52px;
  }

  .problems-intro h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .problems-intro > p {
    grid-column: auto;
    font-size: 15px;
  }

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

  .problem-card {
    min-height: 260px;
    padding: 23px;
  }

  .problem-card h3 {
    font-size: 38px;
  }

  .social-poster {
    top: 17%;
    left: 32%;
    width: 62vw;
    padding: 17px;
  }

  .social-poster strong {
    font-size: 13vw;
  }

  .social-stamp {
    top: 17%;
    right: 2%;
    width: 76px;
    height: 76px;
    font-size: 10px;
  }

  .social-word {
    font-size: 31vw;
  }

  .word-two {
    bottom: 25%;
  }

  .orbit-one {
    top: 15%;
    left: 3%;
    width: 94vw;
    height: 94vw;
  }

  .orbit-two {
    top: 28%;
    left: 44%;
    width: 48vw;
    height: 48vw;
  }

  .search-box {
    top: 17%;
    right: 16px;
    left: 16px;
    width: auto;
    min-height: 65px;
    grid-template-columns: 36px 1fr 28px;
    gap: 10px;
    padding: 10px 12px;
    box-shadow: 8px 9px 0 var(--acid);
  }

  .search-g {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .search-box strong {
    font-size: 17px;
  }

  .search-arrow {
    font-size: 21px;
  }

  .result-a {
    top: 32%;
    right: 6%;
    width: 75vw;
  }

  .result-b {
    top: 47%;
    left: 7%;
    width: 68vw;
  }

  .ring-a {
    top: 12%;
    right: -70%;
    width: 160vw;
    height: 160vw;
  }

  .ring-b {
    top: 28%;
    right: -12%;
    width: 70vw;
    height: 70vw;
  }

  .search-index {
    display: none;
  }

  .meta-marquee {
    top: 10%;
    font-size: 28vw;
  }

  .meta-card-one {
    top: 20%;
    right: 3%;
    width: 60vw;
    padding: 17px;
  }

  .meta-card-two {
    top: 31%;
    left: 5%;
    width: 53vw;
    padding: 17px;
  }

  .meta-card-one strong {
    font-size: 12vw;
  }

  .meta-card-two strong {
    font-size: 9vw;
  }

  .disc-one {
    top: 16%;
    left: -8%;
    width: 50vw;
    height: 50vw;
  }

  .disc-two {
    top: 24%;
    left: 12%;
    width: 39vw;
    height: 39vw;
  }

  .disc-three {
    top: 36%;
    left: 0;
    width: 32vw;
    height: 32vw;
  }

  .hero-bottom {
    min-height: 84px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .hero-caption {
    grid-template-columns: 55px 1fr;
    gap: 8px;
  }

  .hero-caption p {
    font-size: 10px;
  }

  .hero-controls {
    display: none;
  }

  .scroll-cue span {
    display: none;
  }

  .scroll-cue i {
    width: 40px;
    height: 40px;
  }

  .work-section,
  .method-section,
  .production-section,
  .testimonials-section,
  .intelligence-section,
  .ecosystem-section,
  .proof-section,
  .tech-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-intro,
  .method-heading,
  .production-heading,
  .testimonials-heading,
  .intelligence-lead,
  .ecosystem-intro,
  .proof-heading,
  .tech-heading {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 65px;
  }

  .section-intro h2,
  .method-heading h2,
  .production-heading h2,
  .testimonials-heading h2,
  .intelligence-lead h2,
  .ecosystem-intro h2,
  .proof-heading h2,
  .tech-heading h2,
  .contact-intro h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .section-intro > p,
  .production-heading > p,
  .testimonials-heading > p,
  .intelligence-lead > p,
  .ecosystem-intro > p,
  .proof-heading > p,
  .tech-heading > p {
    grid-column: auto;
  }

  .solution-tab {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    padding: 17px;
    border-radius: 22px;
  }

  .solution-tab span {
    width: 34px;
    height: 34px;
  }

  .solution-tab strong {
    font-size: 24px;
  }

  .solution-tab small {
    font-size: 12px;
  }

  .solution-panel {
    min-height: 520px;
    padding: 24px;
    border-radius: 26px;
  }

  .solution-panel h3 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .solution-panel p {
    font-size: 14px;
  }

  .proof-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .tech-grid span {
    min-height: 190px;
    border-radius: 24px;
  }

  .proof-card-wide {
    grid-column: auto;
  }

  .intelligence-board {
    padding: 18px;
    border-radius: 26px;
  }

  .intelligence-board-head {
    grid-template-columns: 1fr;
  }

  .intelligence-board-head h3 {
    max-width: none;
    font-size: clamp(40px, 12vw, 58px);
  }

  .intelligence-pill {
    min-height: 0;
    padding: 16px 18px;
    font-size: 14px;
  }

  .intelligence-map {
    min-height: 680px;
    margin-top: 18px;
  }

  .intelligence-node[data-intelligence-target="brand"] {
    top: 7%;
    left: 4%;
  }

  .intelligence-node[data-intelligence-target="traffic"] {
    top: 7%;
    left: 52%;
  }

  .intelligence-node[data-intelligence-target="conversion"] {
    top: 35%;
    left: 28%;
  }

  .intelligence-node[data-intelligence-target="sales"] {
    top: 66%;
    left: 4%;
  }

  .intelligence-node[data-intelligence-target="data"] {
    top: 66%;
    left: 52%;
  }

  .intelligence-node,
  .intelligence-node-center {
    width: min(44%, 168px);
    padding: 14px;
    border-radius: 20px;
  }

  .intelligence-node strong {
    font-size: 15px;
  }

  .intelligence-node small {
    font-size: 12px;
  }

  .intelligence-metrics {
    grid-template-columns: 1fr;
  }

  .intelligence-panels {
    grid-template-columns: 1fr;
  }

  .intelligence-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .intelligence-panel-media {
    min-height: 210px;
    margin: -8px -8px 22px;
    border-radius: 20px;
  }

  .intelligence-panel-media img {
    min-height: 210px;
  }

  .intelligence-panel-media figcaption {
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .intelligence-panel-media figcaption strong {
    max-width: 180px;
    font-size: 15px;
  }

  .intelligence-panel h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .intelligence-panel p {
    font-size: 14px;
  }

  .intelligence-tags button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .intelligence-cta {
    min-height: 72px;
    padding: 0 18px;
    border-radius: 22px;
    font-size: 15px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .work-social,
  .work-google,
  .work-meta-card {
    grid-column: 1;
    margin-top: 0;
  }

  .social-work-art {
    min-height: 570px;
  }

  .social-work-art > strong {
    bottom: 7%;
    font-size: 22vw;
  }

  .sw-card {
    top: 12%;
    right: 3%;
    width: 60vw;
    padding: 17px;
  }

  .sw-card span {
    font-size: 38px;
  }

  .sw-card p {
    font-size: 8vw;
  }

  .sw-dot {
    top: 10%;
    left: 9%;
    width: 30vw;
    height: 30vw;
  }

  .work-meta {
    grid-template-columns: 1fr auto;
    gap: 13px;
  }

  .work-meta > span,
  .work-meta h3,
  .work-meta p {
    grid-column: 1;
  }

  .work-meta > i {
    grid-column: 2;
    grid-row: 1;
  }

  .work-meta h3 {
    font-size: 31px;
  }

  .work-social .work-photo,
  .work-photo {
    aspect-ratio: 4 / 5;
  }

  .work-photo img {
    object-position: center;
  }

  .work-photo-performance img {
    object-position: 55% center;
  }

  .work-photo-social img {
    object-position: 66% center;
  }

  .photo-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
    font-size: 9px;
  }

  .production-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .production-direction,
  .production-editing {
    grid-column: 1;
    margin-top: 0;
  }

  .production-item figcaption strong {
    font-size: 27px;
  }

  .testimonial-carousel {
    margin-top: 20px;
  }

  .testimonial-stage {
    height: 560px;
    min-height: 0;
  }

  .testimonial-card {
    width: min(74vw, 300px);
  }

  .testimonial-card.is-active {
    transform: translate3d(-58%, 0, 80px) rotateY(0deg) scale(1);
  }

  .testimonial-card.is-next {
    opacity: 0.56;
    transform: translate3d(26%, 48px, -100px) rotateY(-14deg) scale(0.76);
  }

  .testimonial-card-play {
    width: 66px;
    height: 66px;
  }

  .testimonial-navigation {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .testimonial-status {
    grid-template-columns: 48px 1fr;
  }

  .testimonial-autoplay-toggle {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .testimonial-navigation > p {
    grid-column: 1 / -1;
  }

  .testimonial-modal {
    padding: 20px;
  }

  .testimonial-modal-dialog {
    width: min(86vw, 390px);
    max-height: 80svh;
  }

  .testimonial-perspective-card {
    transform: translate3d(20px, 13px, -60px) rotateY(-10deg) rotateZ(3deg);
  }

  .google-work-art,
  .meta-work-art {
    min-height: 570px;
  }

  .gw-word {
    font-size: 20vw;
  }

  .gw-number {
    font-size: 42vw;
  }

  .meta-work-art > strong {
    font-size: 13vw;
  }

  .manifesto {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .manifesto-copy {
    margin: 65px 0 80px;
  }

  .manifesto-copy p {
    margin-bottom: 30px;
    font-size: 11vw;
  }

  .method-list li {
    min-height: 190px;
    grid-template-columns: 45px 1fr 40px;
    gap: 10px;
    padding: 25px 0;
  }

  .method-list h3 {
    font-size: 43px;
  }

  .method-list p {
    grid-column: 2 / 4;
    font-size: 13px;
  }

  .method-mark {
    grid-column: 3;
    grid-row: 1;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro,
  .contact-form {
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 45px;
  }

  .contact-intro {
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .contact-intro h2 {
    margin-top: 70px;
  }

  .contact-big-arrow {
    right: 5%;
    bottom: 12%;
  }

  .contact-form label {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 21px;
  }

  .form-hint {
    margin: -4px 0 10px;
  }

  .contact-form .privacy-consent {
    flex-direction: row;
    padding: 18px 0;
  }

  .submit-button {
    margin-top: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 70px;
  }

  .footer-brand {
    width: min(88vw, 390px);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    margin-top: 45px;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .brand,
  .menu-toggle,
  .hero-controls button,
  .scroll-cue i,
  .photo-label,
  .testimonial-card-play,
  .testimonial-card-copy,
  .testimonial-arrows button,
  .testimonial-close,
  .testimonial-video-controls button,
  .footer-top-link {
    background: rgba(var(--brand-green-deep-rgb), 0.92);
  }

  .menu-panel {
    background: rgba(247, 247, 243, 0.97);
  }
}

@media (hover: none) {
  .node-preview {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  .brand,
  .menu-toggle,
  .hero-controls button,
  .scroll-cue i,
  .photo-label,
  .testimonial-card-play,
  .testimonial-card-copy,
  .testimonial-arrows button,
  .testimonial-close,
  .testimonial-video-controls button,
  .footer-top-link {
    background: rgba(var(--brand-green-deep-rgb), 0.9);
    border-color: rgba(255, 255, 255, 0.68);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-panel {
    background: rgba(247, 247, 243, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .testimonial-modal-backdrop {
    background: rgba(0, 28, 13, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-flow-text,
  .reveal.scroll-flow-text,
  .reveal.scroll-flow-text.is-visible {
    transform: none;
    will-change: auto;
  }
}

/* 2026-06-19: tema claro unificado e funil de conversão compacto */

.intelligence-panel[hidden],
.solution-panel[hidden] {
  display: none !important;
}
:root {
  --surface: #f4f5f0;
  --surface-soft: #eaede7;
  --surface-glass: rgba(255, 255, 255, 0.66);
  --green-glass: rgba(var(--brand-green-rgb), 0.1);
  --green-line: rgba(var(--brand-green-deep-rgb), 0.18);
}

body,
main {
  background: var(--surface);
}

a,
button {
  touch-action: manipulation;
}

.quick-contact-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.5fr);
  gap: 42px;
  align-items: center;
  padding: 34px var(--pad);
  color: var(--black);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.78), rgba(var(--brand-green-rgb), 0.08)),
    var(--surface);
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}

.quick-contact-strip > div > span {
  color: rgba(6, 17, 8, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-contact-strip h2 {
  max-width: 520px;
  margin: 8px 0 0;
  font-size: clamp(27px, 2.8vw, 46px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.quick-contact-strip nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-contact-strip a {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(var(--brand-green-deep-rgb), 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(0, 55, 25, 0.07);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quick-contact-strip a:hover,
.quick-contact-strip a:focus-visible {
  background: rgba(var(--brand-green-rgb), 0.13);
  border-color: rgba(var(--brand-green-rgb), 0.38);
  transform: translateY(-3px);
}

.quick-contact-strip a span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #073719;
  background: rgba(var(--brand-green-rgb), 0.14);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.problems-section,
.work-section,
.production-section,
.method-section,
.intelligence-section,
.ecosystem-section,
.proof-section,
.tech-section,
.testimonials-section {
  color: var(--black);
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--brand-green-rgb), 0.1), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(var(--brand-green-rgb), 0.055), transparent 24%),
    var(--surface);
}

.problems-section,
.work-section,
.production-section,
.method-section,
.intelligence-section,
.ecosystem-section,
.proof-section,
.tech-section,
.testimonials-section {
  padding-top: clamp(74px, 7vw, 104px);
  padding-bottom: clamp(74px, 7vw, 104px);
}

.problems-intro,
.section-intro,
.production-heading,
.ecosystem-intro,
.proof-heading,
.tech-heading,
.testimonials-heading {
  margin-bottom: clamp(54px, 6vw, 82px);
}

.problem-card {
  min-height: 250px;
  background: var(--surface-glass);
  border-color: var(--green-line);
  box-shadow: 0 18px 52px rgba(0, 55, 25, 0.055);
}

.problems-grid {
  gap: 18px;
}

.problem-card {
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 17, 8, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 40, 18, 0.07);
}

.problem-card > img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  display: block;
  object-fit: cover;
}

.problem-card-copy {
  min-height: 210px;
  padding: 28px 28px 30px;
}

.problem-card h3 {
  margin: 0;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.problem-card h3 span {
  margin-right: 8px;
  color: var(--problem-accent, var(--brand-green));
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0;
}

.problem-card p {
  margin: 24px 0 0;
  color: rgba(6, 17, 8, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.problem-card:nth-child(1) { --problem-accent: #287fe8; }
.problem-card:nth-child(2) { --problem-accent: #e6aa00; }
.problem-card:nth-child(3) { --problem-accent: #16a34a; }
.problem-card:nth-child(4) { --problem-accent: #e12932; }

.intelligence-lead p,
.ecosystem-intro p,
.proof-heading p,
.tech-heading p,
.testimonials-heading p,
.intelligence-panel p,
.solution-panel p,
.proof-card p {
  color: rgba(6, 17, 8, 0.7);
}

.intelligence-board,
.intelligence-panel,
.solution-tab,
.solution-panel,
.proof-card,
.tech-grid span {
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(var(--brand-green-rgb), 0.075)),
    rgba(240, 244, 239, 0.84);
  border-color: var(--green-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 22px 60px rgba(0, 55, 25, 0.07);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

.intelligence-board::before,
.intelligence-panel::before,
.solution-panel::before {
  background:
    linear-gradient(rgba(var(--brand-green-deep-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-green-deep-rgb), 0.035) 1px, transparent 1px);
}

.intelligence-pill,
.intelligence-node,
.intelligence-metric {
  color: rgba(6, 17, 8, 0.88);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--green-line);
  box-shadow: 0 14px 40px rgba(0, 55, 25, 0.06);
}

.intelligence-pill {
  color: var(--black);
}

.intelligence-map {
  min-height: clamp(560px, 47vw, 650px);
  color: var(--black);
  background: rgba(236, 241, 235, 0.72);
  border-color: var(--green-line);
}

.intelligence-node small,
.intelligence-metric,
.intelligence-card-kicker,
.intelligence-tags button {
  color: rgba(6, 17, 8, 0.66);
}

.intelligence-node:hover,
.intelligence-node:focus-visible,
.intelligence-node.is-active,
.intelligence-metric:hover,
.intelligence-metric:focus-visible,
.intelligence-metric.is-active {
  color: var(--black);
  background: rgba(var(--brand-green-rgb), 0.13);
  border-color: rgba(var(--brand-green-rgb), 0.4);
  box-shadow: 0 20px 52px rgba(0, 55, 25, 0.1);
}

.intelligence-node small {
  color: rgba(6, 17, 8, 0.64);
}

.intelligence-tags button {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--green-line);
}

.intelligence-tags button:hover,
.intelligence-tags button:focus-visible,
.intelligence-tags button.is-active {
  color: #061108;
}

.solution-tab strong,
.solution-panel h3,
.proof-card strong {
  color: var(--black);
}

.proof-card span {
  color: rgba(6, 17, 8, 0.66);
}

.solution-tab {
  color: rgba(6, 17, 8, 0.68);
}

.solution-tab:hover,
.solution-tab:focus-visible,
.solution-tab.is-active {
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(var(--brand-green-rgb), 0.14)),
    var(--surface-soft);
}

.solution-panel {
  min-height: 540px;
}

.proof-card,
.tech-grid span {
  border-color: var(--green-line);
}

.testimonials-section::before {
  color: rgba(var(--brand-green-deep-rgb), 0.035);
}

.testimonial-navigation {
  border-top-color: rgba(6, 17, 8, 0.22);
}

.testimonial-navigation > p,
.testimonial-counter,
.testimonial-autoplay-toggle {
  color: rgba(6, 17, 8, 0.62);
}

.testimonial-progress {
  background: rgba(6, 17, 8, 0.18);
}

.testimonial-arrows button {
  color: #fff;
}

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

.work-social,
.work-google,
.work-meta-card {
  grid-column: auto;
  margin-top: 0;
}

.work-social .work-photo,
.work-photo {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
}

.work-meta {
  grid-template-columns: 1fr;
  gap: 11px;
  min-height: 235px;
  padding: 18px 4px 0;
  border-top-color: rgba(6, 17, 8, 0.24);
}

.work-meta h3 {
  font-size: clamp(28px, 2.25vw, 42px);
}

.work-meta > i {
  position: absolute;
  right: 4px;
  bottom: 4px;
}

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

.production-direction,
.production-editing {
  grid-column: auto;
  margin-top: 0;
}

.production-item picture {
  border-radius: 28px;
}

.contact-section {
  min-height: auto;
  color: var(--black);
  background: var(--surface);
}

.contact-intro {
  min-height: 760px;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--brand-green-rgb), 0.16), transparent 34%),
    linear-gradient(145deg, rgba(var(--brand-green-rgb), 0.1), rgba(255, 255, 255, 0.3));
  border-color: var(--green-line);
}

.contact-form {
  background: rgba(255, 255, 255, 0.7);
}

.contact-intro,
.contact-form {
  padding-top: 88px;
  padding-bottom: 60px;
}

.contact-intro h2 {
  margin-top: 48px;
}

.contact-intro > p {
  margin: 48px 0 0;
}

.contact-big-arrow {
  color: rgba(var(--brand-green-deep-rgb), 0.52);
  font-size: clamp(70px, 8vw, 130px);
}

.site-footer {
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(var(--brand-green-rgb), 0.075)),
    var(--surface-soft);
  border-top: 1px solid var(--green-line);
}

.site-footer > p,
.footer-links,
.footer-bottom {
  color: rgba(6, 17, 8, 0.62);
}

.footer-bottom {
  border-top-color: rgba(6, 17, 8, 0.18);
}

.whatsapp-concierge {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.whatsapp-fab,
.whatsapp-panel {
  pointer-events: auto;
}

.whatsapp-fab {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 9px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 50%),
    rgba(0, 73, 32, 0.88);
  border: 1px solid rgba(202, 255, 218, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 55, 25, 0.24);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background-color: rgba(0, 103, 45, 0.94);
  transform: translateY(-2px);
}

.whatsapp-fab-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 23px;
}

.whatsapp-fab i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-left: 2px;
  color: #062b14;
  background: #8affad;
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.whatsapp-concierge.is-open .whatsapp-fab i {
  display: none;
}

.whatsapp-panel {
  position: relative;
  width: min(370px, calc(100vw - 28px));
  padding: 26px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(var(--brand-green-rgb), 0.09)),
    var(--surface);
  border: 1px solid rgba(var(--brand-green-deep-rgb), 0.2);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 55, 25, 0.2);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.whatsapp-concierge.is-open .whatsapp-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-panel-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: rgba(6, 17, 8, 0.68);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--green-line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.whatsapp-panel-label {
  display: block;
  margin-bottom: 12px;
  color: #087d30;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.whatsapp-panel > strong {
  max-width: 290px;
  display: block;
  font-size: 25px;
  font-weight: 450;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.whatsapp-panel > p {
  margin: 13px 0 18px;
  color: rgba(6, 17, 8, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.whatsapp-options {
  display: grid;
  gap: 8px;
}

.whatsapp-options button,
.whatsapp-direct {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #073719;
  background: rgba(var(--brand-green-rgb), 0.09);
  border: 1px solid rgba(var(--brand-green-rgb), 0.2);
  border-radius: 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease;
}

.whatsapp-options button:hover,
.whatsapp-options button:focus-visible {
  background: rgba(var(--brand-green-rgb), 0.16);
  border-color: rgba(var(--brand-green-rgb), 0.42);
}

.whatsapp-direct {
  justify-content: center;
  margin-top: 12px;
  color: #fff;
  background: rgba(0, 90, 39, 0.9);
  border-color: rgba(0, 90, 39, 0.9);
  text-decoration: none;
}

.whatsapp-panel small {
  display: block;
  margin-top: 11px;
  color: rgba(6, 17, 8, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

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

  .work-social {
    grid-column: 1 / -1;
  }

  .work-social .work-photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .quick-contact-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px var(--pad);
  }

  .quick-contact-strip nav {
    grid-template-columns: 1fr;
  }

  .quick-contact-strip a {
    min-height: 62px;
  }

  .problems-section,
  .work-section,
  .production-section,
  .method-section,
  .intelligence-section,
  .ecosystem-section,
  .proof-section,
  .tech-section,
  .testimonials-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .problem-card {
    min-height: 0;
  }

  .problem-card-copy {
    min-height: 0;
    padding: 24px;
  }

  .problem-card h3 {
    font-size: 28px;
  }

  .work-grid,
  .production-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-social {
    grid-column: auto;
  }

  .work-social .work-photo,
  .work-photo {
    aspect-ratio: 4 / 5;
  }

  .work-meta {
    min-height: 0;
  }

  .intelligence-map {
    min-height: 610px;
  }

  .solution-panel {
    min-height: 470px;
  }

  .contact-intro {
    min-height: 78svh;
  }

  .whatsapp-concierge {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .whatsapp-fab {
    width: 100%;
    justify-content: center;
    border-radius: 20px;
  }

  .whatsapp-panel {
    width: 100%;
    transform-origin: bottom center;
  }
}

/* 2026-06-19: enquadramento responsivo final */

:root {
  --content-max: 1800px;
}

.problems-section > *,
.intelligence-section > *,
.ecosystem-section > *,
.work-section > *,
.production-section > *,
.method-section > *,
.proof-section > *,
.tech-section > *,
.testimonials-section > * {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.problems-intro h2,
.section-intro h2,
.production-heading h2,
.method-heading h2,
.intelligence-lead h2,
.ecosystem-intro h2,
.proof-heading h2,
.tech-heading h2,
.testimonials-heading h2,
.contact-intro h2 {
  text-wrap: balance;
}

.problem-card > img,
.work-photo img,
.production-item img,
.intelligence-panel-media img,
.testimonial-card img {
  max-width: 100%;
}

.problem-card > img {
  object-position: center 43%;
}

.problem-card:nth-child(2) > img {
  object-position: center 46%;
}

.problem-card:nth-child(4) > img {
  object-position: center 40%;
}

.contact-intro > * {
  width: min(100%, 820px);
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    min-height: auto;
  }

  .contact-intro,
  .contact-form {
    padding: 76px var(--pad) 64px;
  }

  .contact-intro > * {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: clip;
  }

  .hero {
    height: max(100svh, 760px);
  }

  .problem-card > img {
    aspect-ratio: 16 / 10;
  }

  .problem-card-copy {
    padding: 24px 22px 26px;
  }

  .problem-card p {
    margin-top: 18px;
  }

  .contact-intro,
  .contact-form {
    padding: 64px var(--pad) 54px;
  }

  .whatsapp-panel {
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 14px;
  }

  .brand {
    width: 108px;
  }

  .hero-sales-content h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-button {
    min-height: 46px;
  }

  .problem-card h3 {
    font-size: 26px;
  }

  .whatsapp-fab span:not(.whatsapp-fab-icon) {
    display: none;
  }
}
