@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-cyrillic-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0b0d0b;
  --ink-soft: #131713;
  --ink-lift: #1c211c;
  --paper: #f4f2eb;
  --paper-soft: #e9e5da;
  --white: #fffefa;
  --lime: #a8ef72;
  --lime-strong: #8bdd55;
  --gold: #c9aa62;
  --steel: #82908d;
  --text: #111410;
  --muted: #626760;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 20, 15, 0.15);
  --display-font: "Onest", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font: "Onest", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --accent-font: "Cormorant Garamond", Georgia, serif;
  --page-pad: clamp(20px, 4.8vw, 72px);
  --content-width: 1300px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body-font);
}

img {
  display: block;
  max-width: 100%;
}

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

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

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

button {
  border: 0;
}

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

.site-shell {
  overflow: clip;
  background: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 10, 0.76);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 8, 0.94);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: inherit;
  font-size: 20px;
  font-weight: 820;
  line-height: 1;
}

.brand-mark img {
  width: 41px;
  height: 41px;
  border-radius: 6px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 14px;
  font-weight: 740;
  color: rgba(255, 255, 255, 0.7);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.primary-action,
.secondary-action,
.submit-button,
.qualification-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.header-cta,
.primary-action,
.submit-button {
  color: var(--ink);
  background: var(--lime);
}

.header-cta:hover,
.primary-action:hover,
.submit-button:hover {
  background: var(--lime-strong);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: min(920px, 94svh);
  padding: calc(var(--header-height) + 68px) var(--page-pad) 162px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black 0%, transparent 58%);
}

.hero-media,
.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.78) contrast(1.08);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 6, 0.98) 0%, rgba(6, 8, 6, 0.92) 37%, rgba(6, 8, 6, 0.45) 72%, rgba(6, 8, 6, 0.32) 100%),
    linear-gradient(0deg, rgba(6, 8, 6, 0.96) 0%, transparent 42%);
}

.hero-content,
.hero-proof {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.hero-content {
  max-width: var(--content-width);
}

.eyebrow,
.section-kicker,
.panel-label,
.case-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--lime);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 13px;
  border: 1px solid rgba(168, 239, 114, 0.34);
  border-radius: 99px;
  background: rgba(168, 239, 114, 0.08);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 820;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--lime);
}

.hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 610;
  line-height: 1.44;
}

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

.primary-action,
.secondary-action {
  min-height: 56px;
  padding-right: 28px;
  padding-left: 28px;
  font-size: 15px;
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.secondary-action:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}

.hero-note {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 690;
}

.hero-proof {
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content-width);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  background: rgba(9, 12, 9, 0.8);
  backdrop-filter: blur(16px);
}

.hero-proof > div {
  display: grid;
  min-height: 124px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.hero-proof strong {
  align-self: end;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 820;
  line-height: 1;
}

.hero-proof small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 690;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 54px;
  padding: 0 var(--page-pad);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #090b09;
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip span {
  position: relative;
  padding: 0 clamp(16px, 2.8vw, 40px);
}

.signal-strip span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-2px, -50%);
}

.section {
  padding: clamp(88px, 9vw, 138px) var(--page-pad);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px 76px;
  width: min(100%, var(--content-width));
  margin: 0 auto 58px;
}

.section-intro .section-kicker {
  grid-column: 1 / -1;
}

.section-intro h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 810;
  line-height: 1.01;
}

.section-intro > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 570;
  line-height: 1.58;
}

.services-section {
  color: var(--text);
  background: var(--paper);
}

.services-section .section-kicker,
.fit-section .section-kicker,
.faq-section .section-kicker {
  color: #598736;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: clamp(32px, 4vw, 54px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.22);
}

.card-index {
  display: block;
  margin-bottom: 74px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 840;
}

.service-card h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 790;
  line-height: 1.08;
}

.service-card > p {
  max-width: 550px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.service-card ul,
.qualification-panel ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.qualification-panel li {
  position: relative;
  padding-left: 18px;
  color: #343934;
  font-size: 14px;
  font-weight: 680;
}

.service-card li::before,
.qualification-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--lime-strong);
  transform: translateY(-50%);
}

.positioning-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  padding: clamp(84px, 8vw, 124px) var(--page-pad);
  color: var(--white);
  background: var(--ink-soft);
}

.positioning-copy,
.positioning-points {
  width: 100%;
  max-width: 650px;
}

.positioning-copy {
  justify-self: end;
}

.positioning-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 810;
  line-height: 1.02;
}

.positioning-points {
  display: grid;
  align-content: center;
}

.positioning-points > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.positioning-points > div:first-child {
  border-top: 1px solid var(--line-dark);
}

.positioning-points strong {
  color: var(--gold);
  font-size: 12px;
}

.positioning-points span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 610;
}

.results-section {
  color: var(--white);
  background: var(--ink);
}

.results-intro .section-kicker {
  color: var(--lime);
}

.results-intro > p {
  color: rgba(255, 255, 255, 0.58);
}

.case-list {
  display: grid;
  gap: 20px;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.case-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--ink-lift);
}

.case-featured {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  min-height: 520px;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 58px);
}

.case-label {
  color: var(--gold);
}

.case-copy h3 {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 820;
  line-height: 1;
}

.case-copy > p {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.58;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.case-metrics > div {
  display: grid;
  padding: 20px 14px 0 0;
}

.case-metrics strong {
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1;
}

.case-metrics span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card figure {
  min-width: 0;
  margin: 0;
  background: #eef0e9;
}

.case-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-compact {
  grid-template-rows: auto minmax(260px, 0.8fr);
}

.case-compact .case-copy {
  min-height: 390px;
}

.case-compact .case-copy h3 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.case-compact .case-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-note {
  width: min(100%, var(--content-width));
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.fit-section {
  color: var(--text);
  background: var(--paper);
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 34px;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

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

.fit-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
}

.fit-row > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 840;
}

.fit-row h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 790;
  line-height: 1.12;
}

.fit-row p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.qualification-panel {
  align-self: start;
  min-height: 100%;
  padding: clamp(34px, 4vw, 54px);
  color: var(--white);
  border-radius: 6px;
  background: var(--ink-soft);
}

.qualification-panel h3 {
  margin: 24px 0 0;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 790;
  line-height: 1.08;
}

.qualification-panel li {
  color: rgba(255, 255, 255, 0.72);
}

.qualification-panel > a {
  width: 100%;
  margin-top: 34px;
  color: var(--ink);
  background: var(--lime);
}

.process-section {
  position: relative;
  padding: clamp(94px, 10vw, 148px) var(--page-pad);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.process-media,
.process-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.74) contrast(1.08);
}

.process-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.98) 0%, rgba(7, 9, 7, 0.86) 55%, rgba(7, 9, 7, 0.64) 100%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.96) 0%, rgba(7, 9, 7, 0.3) 100%);
}

.process-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.process-intro {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.process-intro > p {
  color: rgba(255, 255, 255, 0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-step {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 14, 11, 0.66);
  backdrop-filter: blur(10px);
}

.process-step > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 840;
}

.process-step h3 {
  margin: 76px 0 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 790;
}

.process-step p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.operating-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border: 1px solid var(--line-dark);
  background: rgba(11, 14, 11, 0.75);
  backdrop-filter: blur(10px);
}

.operating-line > div {
  display: grid;
  gap: 7px;
  padding: 24px 30px;
  border-right: 1px solid var(--line-dark);
}

.operating-line > div:last-child {
  border-right: 0;
}

.operating-line span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
}

.operating-line strong {
  font-size: 17px;
  font-weight: 720;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  color: var(--white);
  background: #20251f;
}

.diagnostic-copy {
  align-self: start;
  max-width: 610px;
  margin-left: auto;
}

.diagnostic-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(43px, 5.1vw, 72px);
  font-weight: 810;
  line-height: 1.01;
}

.diagnostic-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.diagnostic-meta {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.diagnostic-meta > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.diagnostic-meta span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 840;
}

.diagnostic-meta strong {
  font-size: 14px;
  font-weight: 710;
}

.lead-form {
  width: 100%;
  max-width: 760px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--text);
  border-radius: 6px;
  background: var(--white);
}

.form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading span {
  color: #598736;
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #30352f;
  font-size: 12px;
  font-weight: 780;
}

.field-label {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.field-label small {
  color: #7a8078;
  font-size: 10px;
  font-weight: 620;
}

.form-wide {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--text);
  border: 1px solid #c9cbc4;
  border-radius: 5px;
  outline: 0;
  background: #f7f6f1;
  font-size: 15px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.lead-form input,
.lead-form select {
  height: 52px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #6ba83f;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 168, 63, 0.14);
}

.lead-form [aria-invalid="true"] {
  border-color: #b94b45;
  box-shadow: 0 0 0 3px rgba(185, 75, 69, 0.12);
}

.consent-row {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #6da941;
}

.consent-row a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  font-size: 15px;
}

.submit-button:disabled {
  color: #5b6057;
  background: #d7dbd1;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #3f7130;
  font-size: 13px;
  font-weight: 680;
  text-align: center;
}

.form-status.is-error {
  color: #a33d38;
}

.form-footnote {
  margin: 4px 0 0;
  color: #757a72;
  font-size: 11px;
  text-align: center;
}

.faq-section {
  color: var(--text);
  background: var(--paper);
}

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

.faq-section .section-intro h2 {
  max-width: 720px;
}

.faq-list {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "+";
  color: #598736;
  font-size: 28px;
  font-weight: 560;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 800px;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 48px;
  padding: 72px var(--page-pad) 28px;
  color: var(--white);
  background: #090b09;
}

.footer-brand,
.footer-address,
.footer-links {
  max-width: 420px;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-address {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-address > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
}

.footer-address address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-style: normal;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 680;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.legal-page {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 64px 0 90px;
  color: var(--text);
}

.legal-page .brand-mark {
  color: var(--text);
}

.legal-page h1 {
  margin: 64px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.legal-page h2 {
  margin: 42px 0 10px;
  font-size: 26px;
}

.legal-page h3 {
  margin: 26px 0 8px;
  font-size: 19px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a:not(.brand-mark) {
  color: #4f7d31;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  display: inline-flex;
  margin-top: 44px;
}

.reveal {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

:focus-visible {
  outline: 3px solid rgba(168, 239, 114, 0.9);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 900px;
  }

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

  .section-intro > p {
    max-width: 720px;
  }

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

  .positioning-copy,
  .positioning-points {
    max-width: none;
  }

  .case-featured {
    grid-template-columns: 1fr;
  }

  .case-featured figure {
    min-height: 420px;
  }

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

  .qualification-panel {
    min-height: 0;
  }

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

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

  .diagnostic-copy {
    max-width: 760px;
    margin: 0;
  }

  .lead-form {
    max-width: 860px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand-mark {
    font-size: 18px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    align-content: start;
    min-height: 0;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 0;
  }

  .hero::after {
    background-size: 58px 58px;
  }

  .hero-media img {
    object-position: 62% top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 8, 6, 0.52) 0%, rgba(6, 8, 6, 0.92) 42%, rgba(6, 8, 6, 1) 76%),
      linear-gradient(90deg, rgba(6, 8, 6, 0.88) 0%, rgba(6, 8, 6, 0.24) 100%);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.2vw, 55px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    margin-top: 26px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-note {
    margin-bottom: 32px;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .hero-proof > div {
    min-width: 0;
    min-height: 116px;
    padding: 18px 14px;
  }

  .hero-proof strong {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .hero-proof small {
    font-size: 10px;
    line-height: 1.25;
  }

  .signal-strip {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .signal-strip::-webkit-scrollbar {
    display: none;
  }

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

  .section-intro {
    gap: 20px;
    margin-bottom: 38px;
  }

  .section-intro h2,
  .positioning-copy h2,
  .diagnostic-copy h2 {
    font-size: clamp(37px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .section-intro > p {
    font-size: 16px;
  }

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

  .service-card {
    min-height: 0;
    padding: 30px 26px 34px;
  }

  .card-index {
    margin-bottom: 44px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .positioning-band {
    gap: 52px;
    padding: 82px 20px;
  }

  .positioning-points > div {
    grid-template-columns: 40px 1fr;
  }

  .case-featured figure {
    min-height: 280px;
  }

  .case-pair {
    grid-template-columns: 1fr;
  }

  .case-copy {
    padding: 30px 26px;
  }

  .case-compact .case-copy {
    min-height: 0;
  }

  .case-card figure {
    min-height: 270px;
  }

  .case-metrics {
    gap: 10px;
  }

  .case-metrics strong {
    font-size: 22px;
  }

  .fit-row {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .qualification-panel {
    padding: 32px 26px;
  }

  .process-section {
    padding: 84px 20px;
  }

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

  .process-step {
    min-height: 220px;
    padding: 28px 25px;
  }

  .process-step h3 {
    margin-top: 54px;
  }

  .operating-line {
    grid-template-columns: 1fr;
  }

  .operating-line > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .operating-line > div:last-child {
    border-bottom: 0;
  }

  .diagnostic-section {
    gap: 52px;
  }

  .diagnostic-copy {
    margin: 0;
  }

  .lead-form {
    padding: 28px 20px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 20px 26px;
  }

  .footer-bottom {
    grid-column: auto;
    display: grid;
  }
}

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

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

  .reveal,
  .reveal.is-visible {
    transform: none;
  }
}

/* Final V3 overrides sit after the legacy cinematic layer. */

.hero {
  min-height: max(720px, 94svh);
}

.hero-media img {
  height: 106%;
  object-position: center 48%;
  filter: saturate(0.92) contrast(1.03);
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.035);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.84) 0%, rgba(4, 6, 5, 0.5) 42%, rgba(4, 6, 5, 0.07) 74%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.86) 0%, transparent 44%);
}

.hero-stage {
  min-height: max(720px, 94svh);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 170px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 5.7vw, 88px);
  line-height: 0.92;
}

.hero h1 .hero-line-accent {
  font-size: 1.02em;
  line-height: 0.82;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.hero-side {
  min-height: 330px;
}

.hero-proof > div {
  min-height: 116px;
}

.section {
  padding-top: clamp(92px, 8.6vw, 132px);
  padding-bottom: clamp(92px, 8.6vw, 132px);
}

.section-intro {
  margin-bottom: clamp(54px, 6vw, 84px);
}

.section-intro h2,
.positioning-copy h2,
.diagnostic-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.02;
}

.service-experience {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 7vw, 104px);
}

.service-visual {
  height: min(560px, calc(100svh - 132px));
  min-height: 500px;
}

.service-chapter {
  min-height: min(470px, 60svh);
  padding-top: 46px;
  padding-bottom: 46px;
}

.service-chapter h3 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.02;
}

.service-chapter p {
  font-size: 16px;
}

.manifesto-band {
  gap: clamp(50px, 7vw, 108px);
  padding-top: clamp(140px, 13vw, 190px);
  padding-bottom: clamp(100px, 9vw, 140px);
}

.manifesto-marquee span,
.manifesto-marquee em {
  font-size: clamp(58px, 6.8vw, 104px);
}

.case-copy h3 {
  font-size: clamp(32px, 3.4vw, 52px);
}

.case-compact .case-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.process-section {
  min-height: 830px;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: clamp(52px, 7.3vw, 76px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: max(700px, 100svh);
  }

  .hero-media img {
    width: 138%;
    height: 100%;
    margin-left: -38%;
    object-position: 70% center;
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 6, 5, 0.85) 0%, rgba(4, 6, 5, 0.43) 100%),
      linear-gradient(0deg, rgba(4, 6, 5, 0.94) 0%, transparent 54%);
  }

  .hero-stage {
    min-height: max(700px, 100svh);
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.8vw, 53px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 14px;
  }

  .hero-proof > div {
    min-height: 98px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-intro h2,
  .positioning-copy h2,
  .diagnostic-copy h2 {
    font-size: clamp(35px, 9.7vw, 43px);
  }

  .service-visual {
    height: min(390px, 100vw);
    min-height: 350px;
  }

  .service-chapter {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .service-chapter h3 {
    font-size: 29px;
  }

  .manifesto-band {
    padding-top: 125px;
  }

  .manifesto-marquee span,
  .manifesto-marquee em {
    font-size: 58px;
  }
}

/* V3: sharper commerce studio direction */

.hero {
  min-height: max(720px, 94svh);
}

.hero-media img {
  height: 106%;
  object-position: center 48%;
  filter: saturate(0.92) contrast(1.03);
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.035);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.84) 0%, rgba(4, 6, 5, 0.5) 42%, rgba(4, 6, 5, 0.07) 74%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.86) 0%, transparent 44%);
}

.hero-stage {
  min-height: max(720px, 94svh);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 170px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 5.7vw, 88px);
  line-height: 0.92;
}

.hero h1 .hero-line-accent {
  font-size: 1.02em;
  line-height: 0.82;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.hero-side {
  min-height: 330px;
}

.hero-proof > div {
  min-height: 116px;
}

.section {
  padding-top: clamp(92px, 8.6vw, 132px);
  padding-bottom: clamp(92px, 8.6vw, 132px);
}

.section-intro {
  margin-bottom: clamp(54px, 6vw, 84px);
}

.section-intro h2,
.positioning-copy h2,
.diagnostic-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.02;
}

.platform-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 9vw, 142px) var(--page-pad);
  color: var(--ink);
  background: #eeece4;
}

.platform-intro,
.channel-stage {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.55fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 74px);
}

.platform-intro h2 {
  max-width: 780px;
  margin: 20px 0 0;
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 680;
  line-height: 0.98;
}

.platform-intro h2 em {
  color: var(--gold);
  font-family: var(--accent-font);
  font-size: 1.04em;
  font-style: italic;
  font-weight: 500;
}

.platform-intro > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.channel-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.35fr) minmax(0, 0.65fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(11, 13, 11, 0.17);
}

.channel-tabs {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.channel-tab {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 7px 13px;
  align-content: center;
  width: 100%;
  padding: 24px 28px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 240ms ease,
    background-color 240ms ease;
}

.channel-tab:last-child {
  border-bottom: 0;
}

.channel-tab:hover,
.channel-tab:focus-visible,
.channel-tab.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.channel-tab > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--accent-font);
  font-size: 17px;
  font-style: italic;
}

.channel-tab strong {
  font-size: 17px;
  font-weight: 650;
}

.channel-tab small {
  max-width: 235px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

.channel-tab i {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.channel-tab.is-active i {
  animation: channel-timer 5.6s linear forwards;
}

.channel-panels {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
}

.channel-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.025);
  transition:
    visibility 0s linear 520ms,
    opacity 420ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-panel.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.channel-panel figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f3f3ef;
}

.channel-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5.8s linear;
}

.channel-panel.is-active figure img {
  transform: scale(1.035);
}

.channel-panel[data-channel-panel="tiktok"] figure img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 46px);
}

.channel-panel .channel-commerce-image img {
  object-position: 68% center;
}

.channel-panel .channel-creator-image img {
  object-position: 88% center;
}

.channel-caption {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 104px;
  padding: 24px clamp(26px, 4vw, 52px);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #111411;
}

.channel-caption span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 780;
  text-transform: uppercase;
}

.channel-caption strong {
  max-width: 650px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 570;
  line-height: 1.35;
}

.service-experience {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 7vw, 104px);
}

.service-visual {
  height: min(560px, calc(100svh - 132px));
  min-height: 500px;
}

.service-chapter {
  min-height: min(470px, 60svh);
  padding-top: 46px;
  padding-bottom: 46px;
}

.service-chapter h3 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.02;
}

.service-chapter p {
  font-size: 16px;
}

.manifesto-band {
  gap: clamp(50px, 7vw, 108px);
  padding-top: clamp(140px, 13vw, 190px);
  padding-bottom: clamp(100px, 9vw, 140px);
}

.manifesto-marquee span,
.manifesto-marquee em {
  font-size: clamp(58px, 6.8vw, 104px);
}

.case-copy h3 {
  font-size: clamp(32px, 3.4vw, 52px);
}

.case-compact .case-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.process-section {
  min-height: 830px;
}

@keyframes channel-timer {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: clamp(52px, 7.3vw, 76px);
  }

  .platform-intro {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 50px;
  }

  .channel-stage {
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 560px;
  }

  .channel-panels {
    min-height: 560px;
  }

  .channel-tab {
    padding: 20px 22px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: max(700px, 100svh);
  }

  .hero-media img {
    width: 138%;
    height: 100%;
    margin-left: -38%;
    object-position: 70% center;
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 6, 5, 0.85) 0%, rgba(4, 6, 5, 0.43) 100%),
      linear-gradient(0deg, rgba(4, 6, 5, 0.94) 0%, transparent 54%);
  }

  .hero-stage {
    min-height: max(700px, 100svh);
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.8vw, 53px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 14px;
  }

  .hero-proof > div {
    min-height: 98px;
  }

  .platform-section {
    padding: 86px 20px;
  }

  .platform-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .platform-intro h2 {
    font-size: clamp(37px, 10vw, 44px);
    line-height: 1;
  }

  .platform-intro > p {
    font-size: 15px;
  }

  .channel-stage {
    display: block;
    min-height: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .channel-tabs {
    display: flex;
    gap: 8px;
    padding-bottom: 14px;
    overflow-x: auto;
    border-right: 0;
    scrollbar-width: none;
  }

  .channel-tabs::-webkit-scrollbar {
    display: none;
  }

  .channel-tab {
    display: grid;
    flex: 0 0 auto;
    width: auto;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    color: rgba(11, 13, 11, 0.48);
    border: 1px solid rgba(11, 13, 11, 0.16);
    border-radius: 4px;
    background: transparent;
  }

  .channel-tab:hover,
  .channel-tab:focus-visible,
  .channel-tab.is-active {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
  }

  .channel-tab > span {
    grid-row: auto;
    align-self: center;
    font-size: 14px;
  }

  .channel-tab strong {
    align-self: center;
    font-size: 12px;
  }

  .channel-tab small,
  .channel-tab i {
    display: none;
  }

  .channel-panels {
    min-height: 480px;
    border-radius: 6px;
    background: var(--ink);
  }

  .channel-caption {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 126px;
    padding: 22px 20px;
  }

  .channel-caption strong {
    font-size: 16px;
  }

  .channel-panel[data-channel-panel="tiktok"] figure img {
    padding: 12px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-intro h2,
  .positioning-copy h2,
  .diagnostic-copy h2 {
    font-size: clamp(35px, 9.7vw, 43px);
  }

  .service-visual {
    height: min(390px, 100vw);
    min-height: 350px;
  }

  .service-chapter {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .service-chapter h3 {
    font-size: 29px;
  }

  .manifesto-band {
    padding-top: 125px;
  }

  .manifesto-marquee span,
  .manifesto-marquee em {
    font-size: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .channel-tab.is-active i,
  .channel-panel.is-active figure img {
    animation: none !important;
    transform: none !important;
  }
}

/* Cinematic growth-system direction */

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

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

.site-header {
  min-height: 72px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 8, 0.58);
}

.site-header.is-scrolled {
  background: rgba(8, 10, 8, 0.9);
}

.brand-mark {
  font-size: 18px;
  font-weight: 800;
}

.brand-mark img {
  width: 36px;
  height: 36px;
}

.desktop-nav {
  font-size: 13px;
  font-weight: 650;
}

.header-cta,
.primary-action,
.secondary-action,
.submit-button,
.qualification-panel > a {
  position: relative;
  overflow: hidden;
}

.header-cta::after,
.primary-action::after,
.submit-button::after,
.qualification-panel > a::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -40%;
  width: 28%;
  content: "";
  background: rgba(255, 255, 255, 0.48);
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover::after,
.primary-action:hover::after,
.submit-button:hover::after,
.qualification-panel > a:hover::after {
  transform: translateX(620%) skewX(-18deg);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  display: block;
  min-height: max(760px, 100svh);
  padding: 0;
  overflow: hidden;
}

.hero::after {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center 40%;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.08);
  filter: saturate(0.78) contrast(1.08);
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.97) 0%, rgba(4, 6, 5, 0.81) 46%, rgba(4, 6, 5, 0.2) 78%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.95) 0%, transparent 40%),
    rgba(7, 9, 7, 0.2);
}

.hero-beam {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 66%;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.hero-beam::after {
  position: absolute;
  top: -25%;
  left: 0;
  width: 1px;
  height: 25%;
  content: "";
  background: var(--lime);
  animation: beam-scan 5.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  box-shadow: 0 0 14px rgba(168, 239, 114, 0.65);
}

.hero-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: clamp(60px, 8vw, 130px);
  width: min(100%, calc(var(--content-width) + var(--page-pad) * 2));
  min-height: max(760px, 100svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 86px) var(--page-pad) 190px;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(900px, 100%);
  max-width: none;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 0;
  margin-bottom: 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--lime);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(62px, 7.4vw, 118px);
  font-weight: 720;
  line-height: 0.87;
}

.hero h1 .hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  color: var(--white);
}

.hero h1 .hero-line > span {
  display: block;
  color: inherit;
  transform: translateY(0);
  transition: transform 940ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

body.motion-ready .hero h1 .hero-line > span {
  transform: translateY(112%);
}

.hero h1 .hero-line:nth-child(2) > span {
  transition-delay: 100ms;
}

.hero h1 .hero-line:nth-child(3) > span {
  transition-delay: 190ms;
}

body.motion-ready.is-ready .hero h1 .hero-line > span {
  transform: translateY(0);
}

.hero h1 .hero-line-accent {
  color: var(--lime);
  font-family: var(--accent-font);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
  line-height: 0.75;
}

.hero-copy {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  gap: 10px;
  margin-top: 30px;
}

.secondary-action {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(8, 10, 8, 0.35);
  backdrop-filter: blur(10px);
}

.secondary-action:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.hero-side {
  display: grid;
  align-content: end;
  min-height: 390px;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-side-label {
  max-width: 110px;
  line-height: 1.6;
}

.hero-side-line {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-side-list {
  display: grid;
  gap: 13px;
}

.hero-side-list span {
  position: relative;
  display: block;
  padding-left: 17px;
}

.hero-side-list span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--lime);
  transform: translateY(-50%);
}

.hero-proof {
  z-index: 4;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(150px, 0.6fr);
  width: auto;
  max-width: var(--content-width);
  margin: 0 auto;
  background: rgba(8, 10, 8, 0.78);
  backdrop-filter: blur(18px);
}

.hero-proof > div {
  min-height: 132px;
  padding: 23px clamp(18px, 2.4vw, 34px);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 670;
}

.hero-proof-action {
  display: grid;
  align-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  text-transform: uppercase;
}

.hero-proof-action i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-proof-action i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  content: "";
  background: var(--lime);
  animation: scroll-pulse 2.6s ease-in-out infinite;
}

.signal-strip {
  position: relative;
  display: block;
  min-height: 48px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border: 0;
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  animation: signal-run 30s linear infinite;
  will-change: transform;
}

.signal-strip span {
  flex: 0 0 auto;
  padding: 0 27px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-strip span + span::before {
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--ink);
  transform: rotate(45deg);
}

.section {
  padding-top: clamp(108px, 11vw, 174px);
  padding-bottom: clamp(108px, 11vw, 174px);
}

.section-intro {
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  row-gap: 28px;
  margin-bottom: clamp(68px, 8vw, 118px);
}

.section-intro .section-kicker {
  grid-column: 1 / -1;
}

.section-intro h2,
.positioning-copy h2,
.diagnostic-copy h2 {
  max-width: 960px;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 680;
  line-height: 0.98;
}

.section-intro h2 em,
.positioning-copy h2 em,
.diagnostic-copy h2 em,
.process-intro h2 em {
  color: var(--gold);
  font-family: var(--accent-font);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
}

.section-intro > p {
  align-self: end;
  max-width: 430px;
  margin: 0;
}

.services-section {
  padding-right: 0;
  padding-left: 0;
  background: var(--paper);
}

.services-section > .section-intro,
.service-experience {
  width: min(100%, calc(var(--content-width) + var(--page-pad) * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.service-experience {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(58px, 8vw, 126px);
}

.service-visual {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: space-between;
  height: min(680px, calc(100svh - 132px));
  min-height: 570px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(34, 42, 35, 0.38), transparent 52%),
    var(--ink-soft);
  box-shadow: 0 28px 70px rgba(10, 12, 10, 0.18);
}

.service-visual::before,
.service-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-visual::after {
  top: 0;
  bottom: 0;
  left: 27%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.growth-orbit {
  position: relative;
  z-index: 1;
  width: min(100%, 490px);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
}

.growth-orbit::before,
.growth-orbit::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.growth-orbit::before {
  width: 100%;
  height: 1px;
}

.growth-orbit::after {
  width: 1px;
  height: 100%;
}

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

.orbit-ring::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(168, 239, 114, 0.6);
}

.orbit-ring-outer {
  inset: 4%;
  animation: orbit-turn 22s linear infinite;
}

.orbit-ring-inner {
  inset: 23%;
  animation: orbit-turn-reverse 16s linear infinite;
}

.growth-orbit > strong {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 650;
  line-height: 0.95;
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 88px;
  height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: rgba(13, 16, 13, 0.92);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 340ms ease,
    border-color 340ms ease,
    background-color 340ms ease,
    transform 340ms ease;
}

.orbit-product {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-brand {
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
}

.orbit-content {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-scale {
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
}

.service-visual[data-active="product"] .orbit-product,
.service-visual[data-active="brand"] .orbit-brand,
.service-visual[data-active="content"] .orbit-content,
.service-visual[data-active="scale"] .orbit-scale {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.service-visual[data-active="product"] .orbit-product,
.service-visual[data-active="content"] .orbit-content {
  transform: translateX(-50%) scale(1.08);
}

.service-visual[data-active="brand"] .orbit-brand,
.service-visual[data-active="scale"] .orbit-scale {
  transform: translateY(-50%) scale(1.08);
}

.service-visual-status {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-visual-status span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-visual-status strong {
  font-size: 15px;
  font-weight: 650;
  text-align: right;
}

.service-chapters {
  min-width: 0;
}

.service-chapter {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-content: center;
  min-height: min(650px, 76svh);
  padding: 64px 0;
  color: var(--ink);
  border-top: 1px solid var(--line-light);
  opacity: 0.32;
  transform: translateX(24px);
  transition:
    opacity 440ms ease,
    transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-chapter:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-chapter.is-active {
  opacity: 1;
  transform: translateX(0);
}

.service-chapter .card-index {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: var(--accent-font);
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
}

.service-chapter h3 {
  max-width: 560px;
  margin: 0 0 22px;
  font-family: var(--display-font);
  font-size: clamp(34px, 3.7vw, 57px);
  font-weight: 650;
  line-height: 0.98;
}

.service-chapter p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-chapter ul {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-chapter li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 690;
}

.service-chapter li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.manifesto-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(60px, 9vw, 150px);
  overflow: hidden;
  padding: clamp(180px, 17vw, 250px) var(--page-pad) clamp(110px, 11vw, 170px);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.manifesto-band::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.manifesto-marquee {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.manifesto-marquee > div {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: manifesto-run 34s linear infinite;
}

.manifesto-marquee span,
.manifesto-marquee em {
  font-family: var(--display-font);
  font-size: clamp(68px, 9vw, 150px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.manifesto-marquee em {
  color: rgba(168, 239, 114, 0.28);
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 500;
}

.manifesto-band .positioning-copy,
.manifesto-band .positioning-points {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.manifesto-band .positioning-copy {
  margin-left: 0;
}

.manifesto-band .positioning-copy h2 {
  max-width: 770px;
  color: var(--white);
}

.manifesto-band .positioning-copy h2 em {
  color: var(--lime);
}

.manifesto-band .positioning-points {
  align-self: end;
}

.manifesto-band .positioning-points > div {
  grid-template-columns: 52px 1fr;
  padding: 29px 0;
  border-color: rgba(255, 255, 255, 0.16);
}

.manifesto-band .positioning-points strong {
  color: var(--lime);
  font-family: var(--accent-font);
  font-size: 20px;
  font-style: italic;
}

.manifesto-band .positioning-points span {
  color: rgba(255, 255, 255, 0.67);
}

.results-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(11, 13, 11, 0.055) 50%, transparent 50.04%),
    var(--paper);
}

.results-section .section-kicker {
  color: var(--gold);
}

.results-section .section-intro > p {
  color: var(--muted);
}

.results-intro h2 {
  max-width: 920px;
}

.case-card {
  --case-x: 50%;
  --case-y: 50%;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-radius: 6px;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms ease;
}

.case-card::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--case-x);
  width: 1px;
  content: "";
  background: rgba(168, 239, 114, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.case-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(11, 13, 11, 0.18);
}

.case-card:hover::after {
  opacity: 1;
}

.case-card figure {
  overflow: hidden;
}

.case-card figure img {
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover figure img {
  transform: scale(1.055);
}

.case-copy h3 {
  font-weight: 650;
}

.case-metrics strong {
  font-weight: 650;
}

.fit-row {
  transition:
    background-color 240ms ease,
    transform 240ms ease;
}

.fit-row:hover {
  background: rgba(201, 170, 98, 0.08);
  transform: translateX(8px);
}

.qualification-panel {
  border-radius: 6px;
}

.process-section {
  --process-progress: 0;
  min-height: 930px;
  padding-top: clamp(120px, 12vw, 190px);
  padding-bottom: clamp(100px, 10vw, 150px);
  overflow: hidden;
}

.process-media img {
  height: 112%;
  object-position: center 48%;
  transform: translateY(calc((var(--process-progress) - 0.5) * -50px)) scale(1.04);
  filter: saturate(0.58) contrast(1.06);
  will-change: transform;
}

.process-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 6, 0.95) 0%, rgba(6, 8, 6, 0.65) 55%, rgba(6, 8, 6, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 8, 6, 0.95) 0%, transparent 55%),
    rgba(6, 8, 6, 0.24);
}

.process-intro h2 em {
  color: var(--lime);
}

.process-grid {
  position: relative;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-progress-line {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(var(--process-progress));
  transform-origin: left;
  box-shadow: 0 0 15px rgba(168, 239, 114, 0.45);
  will-change: transform;
}

.process-step {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 8, 0.38);
  backdrop-filter: blur(8px);
}

.process-step::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover::after {
  transform: scaleX(1);
}

.process-step h3 {
  font-weight: 630;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
}

.diagnostic-section::before {
  position: absolute;
  top: 0;
  right: var(--page-pad);
  left: var(--page-pad);
  height: 1px;
  content: "";
  background: var(--line-light);
}

.diagnostic-copy h2 {
  font-weight: 680;
}

.lead-form {
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(10, 12, 10, 0.12);
}

.lead-form:focus-within {
  border-color: rgba(201, 170, 98, 0.65);
}

.faq-list details {
  transition:
    background-color 220ms ease,
    padding 220ms ease;
}

.faq-list details[open] {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(201, 170, 98, 0.07);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 760ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes hero-drift {
  from {
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
      scale(1.08);
  }
  to {
    transform: translate3d(
        calc(var(--hero-x) - 12px),
        calc(var(--hero-y) + var(--hero-scroll) - 9px),
        0
      )
      scale(1.095);
  }
}

@keyframes beam-scan {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(500%);
  }
}

@keyframes scroll-pulse {
  0% {
    transform: translateX(-110%);
  }
  55%,
  100% {
    transform: translateX(300%);
  }
}

@keyframes signal-run {
  to {
    transform: translateX(-50%);
  }
}

@keyframes manifesto-run {
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbit-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-turn-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1080px) {
  .hero-stage {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(58px, 8.2vw, 88px);
  }

  .service-experience {
    grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
    gap: 52px;
  }

  .service-visual {
    height: min(590px, calc(100svh - 120px));
    min-height: 510px;
    padding: 25px;
  }

  .service-chapter {
    min-height: 560px;
  }

  .manifesto-band {
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-media img {
    width: 128%;
    max-width: none;
    margin-left: -28%;
    object-position: 56% 44%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 6, 5, 0.94) 0%, rgba(4, 6, 5, 0.6) 100%),
      linear-gradient(0deg, rgba(4, 6, 5, 0.98) 0%, rgba(4, 6, 5, 0.1) 68%),
      rgba(7, 9, 7, 0.2);
  }

  .hero-beam {
    left: 82%;
  }

  .hero-stage {
    display: block;
    min-height: max(720px, 100svh);
    padding: calc(var(--header-height) + 68px) 20px 166px;
  }

  .hero-side {
    display: none;
  }

  .hero .eyebrow {
    max-width: 280px;
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(48px, 13.2vw, 62px);
    line-height: 0.9;
  }

  .hero h1 .hero-line-accent {
    font-size: 1.05em;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-actions a {
    min-height: 47px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 12px;
  }

  .hero-note {
    display: none;
  }

  .hero-proof {
    right: 0;
    left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0;
  }

  .hero-proof > div {
    min-height: 106px;
    padding: 17px 10px;
  }

  .hero-proof strong {
    font-size: clamp(19px, 5.8vw, 24px);
  }

  .hero-proof small {
    font-size: 8px;
  }

  .hero-proof > .hero-proof-action {
    display: none;
  }

  .signal-track {
    animation-duration: 24s;
  }

  .section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .section-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 52px;
  }

  .section-intro .section-kicker,
  .section-intro h2,
  .section-intro > p {
    grid-column: auto;
  }

  .section-intro h2,
  .positioning-copy h2,
  .diagnostic-copy h2 {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 0.98;
  }

  .services-section > .section-intro,
  .service-experience {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-experience {
    display: block;
  }

  .service-visual {
    position: relative;
    top: auto;
    height: min(420px, 108vw);
    min-height: 360px;
    margin-bottom: 34px;
    padding: 20px;
  }

  .growth-orbit {
    width: min(100%, 330px);
  }

  .orbit-node {
    width: 72px;
    height: 29px;
    font-size: 8px;
  }

  .service-visual-status {
    gap: 12px;
    padding-top: 16px;
  }

  .service-visual-status strong {
    font-size: 12px;
  }

  .service-chapter {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 55px 0;
    opacity: 0.58;
    transform: none;
  }

  .service-chapter.is-active {
    opacity: 1;
  }

  .service-chapter .card-index {
    font-size: 20px;
  }

  .service-chapter h3 {
    font-size: 31px;
  }

  .service-chapter p {
    font-size: 15px;
  }

  .manifesto-band {
    display: block;
    padding: 145px 20px 90px;
  }

  .manifesto-band::before {
    display: none;
  }

  .manifesto-marquee {
    top: 34px;
  }

  .manifesto-marquee > div {
    gap: 26px;
  }

  .manifesto-marquee span,
  .manifesto-marquee em {
    font-size: 68px;
  }

  .manifesto-band .positioning-points {
    margin-top: 52px;
  }

  .manifesto-band .positioning-points > div {
    grid-template-columns: 38px 1fr;
  }

  .case-card:hover {
    transform: none;
    box-shadow: none;
  }

  .case-card::after {
    display: none;
  }

  .fit-row:hover {
    transform: none;
  }

  .process-section {
    min-height: 0;
    padding-top: 100px;
  }

  .process-grid {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-progress-line {
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    transform: scaleY(var(--process-progress));
    transform-origin: top;
  }

  .process-step {
    min-height: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .faq-list details[open] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero h1 .hero-line > span,
  .signal-track,
  .manifesto-marquee > div,
  .orbit-ring-outer,
  .orbit-ring-inner,
  .hero-beam::after,
  .hero-proof-action i::after {
    animation: none !important;
    transform: none !important;
  }

  .hero h1 .hero-line > span {
    transition: none;
  }

  .signal-track,
  .manifesto-marquee > div {
    width: max-content;
  }
}

/* V3 cascade guard */
.hero {
  min-height: max(720px, 94svh);
}

.hero-media img {
  height: 106%;
  object-position: center 48%;
  filter: saturate(0.92) contrast(1.03);
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.035);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.84) 0%, rgba(4, 6, 5, 0.5) 42%, rgba(4, 6, 5, 0.07) 74%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.86) 0%, transparent 44%);
}

.hero-stage {
  min-height: max(720px, 94svh);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 170px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 5.7vw, 88px);
  line-height: 0.92;
}

.hero h1 .hero-line-accent {
  font-size: 1.02em;
  line-height: 0.82;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.hero-side {
  min-height: 330px;
}

.hero-proof > div {
  min-height: 116px;
}

.section {
  padding-top: clamp(92px, 8.6vw, 132px);
  padding-bottom: clamp(92px, 8.6vw, 132px);
}

.section-intro {
  margin-bottom: clamp(54px, 6vw, 84px);
}

.section-intro h2,
.positioning-copy h2,
.diagnostic-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.02;
}

.service-experience {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 7vw, 104px);
}

.service-visual {
  height: min(560px, calc(100svh - 132px));
  min-height: 500px;
}

.service-chapter {
  min-height: min(470px, 60svh);
  padding-top: 46px;
  padding-bottom: 46px;
}

.service-chapter h3 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.02;
}

.service-chapter p {
  font-size: 16px;
}

.manifesto-band {
  gap: clamp(50px, 7vw, 108px);
  padding-top: clamp(140px, 13vw, 190px);
  padding-bottom: clamp(100px, 9vw, 140px);
}

.manifesto-marquee span,
.manifesto-marquee em {
  font-size: clamp(58px, 6.8vw, 104px);
}

.case-copy h3 {
  font-size: clamp(32px, 3.4vw, 52px);
}

.case-compact .case-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.process-section {
  min-height: 830px;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: clamp(52px, 7.3vw, 76px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: max(700px, 100svh);
  }

  .hero-media img {
    width: 138%;
    height: 100%;
    margin-left: -38%;
    object-position: 70% center;
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 6, 5, 0.85) 0%, rgba(4, 6, 5, 0.43) 100%),
      linear-gradient(0deg, rgba(4, 6, 5, 0.94) 0%, transparent 54%);
  }

  .hero-stage {
    min-height: max(700px, 100svh);
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.8vw, 53px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 14px;
  }

  .hero-proof > div {
    min-height: 98px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-intro h2,
  .positioning-copy h2,
  .diagnostic-copy h2 {
    font-size: clamp(35px, 9.7vw, 43px);
  }

  .service-visual {
    height: min(390px, 100vw);
    min-height: 350px;
  }

  .service-chapter {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .service-chapter h3 {
    font-size: 29px;
  }

  .manifesto-band {
    padding-top: 125px;
  }

  .manifesto-marquee span,
  .manifesto-marquee em {
    font-size: 58px;
  }
}

@media (max-width: 760px) {
  .hero .hero-proof {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 761px) {
  .service-experience {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: stretch;
  }

  .service-visual {
    position: relative;
    top: auto;
    align-self: stretch;
    height: auto;
    min-height: 590px;
  }

  .service-chapters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .service-chapter,
  .service-chapter.is-active {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    min-height: 295px;
    padding: 34px 26px;
    border-top: 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    opacity: 1;
    transform: none;
  }

  .service-chapter h3 {
    margin-bottom: 16px;
    font-size: clamp(25px, 2.1vw, 31px);
    line-height: 1.08;
  }

  .service-chapter p {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-chapter ul {
    gap: 8px;
    margin-top: 20px;
  }

  .service-chapter li {
    font-size: 11px;
  }
}

/* V4 cinematic commerce system */
.header-cta::after,
.primary-action::after,
.submit-button::after,
.qualification-panel > a::after {
  display: none;
}

.hero {
  min-height: max(760px, 100svh);
  padding: 0;
  overflow: hidden;
}

.hero::after {
  z-index: -1;
  opacity: 0.12;
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.7) 42%, transparent 72%);
}

.hero-media {
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media img {
  margin: 0;
  filter: saturate(0.9) contrast(1.03);
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.025);
  transition: opacity 600ms ease;
}

.hero-video {
  opacity: 0;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.025);
  transition: opacity 800ms ease;
}

.hero.has-video .hero-poster {
  opacity: 0;
}

.hero.has-video .hero-video {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 6, 5, 0.98) 0%,
      rgba(4, 6, 5, 0.93) 31%,
      rgba(4, 6, 5, 0.6) 48%,
      rgba(4, 6, 5, 0.1) 74%
    ),
    linear-gradient(0deg, rgba(4, 6, 5, 0.96) 0%, transparent 40%);
}

.hero-stage {
  display: flex;
  align-items: center;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-width));
  min-height: max(760px, 100svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 52px) 0 166px;
}

.hero-content {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 0;
}

.hero .eyebrow {
  gap: 10px;
  min-height: 0;
  margin-bottom: 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
}

.hero .eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(55px, 5.25vw, 78px);
  font-weight: 790;
  line-height: 0.98;
}

.hero h1 .hero-line,
.hero h1 .hero-line > span {
  color: var(--white);
}

.hero h1 .hero-line-accent,
.hero h1 .hero-line-accent > span {
  color: var(--lime);
  font-family: var(--display-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 660;
  line-height: inherit;
}

.hero-copy {
  max-width: 590px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 520;
  line-height: 1.54;
}

.hero-actions {
  margin-top: 29px;
}

.hero .primary-action,
.hero .secondary-action {
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
}

.hero-note {
  max-width: 540px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 570;
}

.hero-proof {
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-width));
  max-width: var(--content-width);
  background: rgba(7, 9, 7, 0.79);
  backdrop-filter: blur(20px);
}

.hero-proof > div {
  min-height: 108px;
  padding: 20px 25px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.hero-proof strong {
  color: var(--white);
  font-size: clamp(25px, 2.3vw, 35px);
}

.hero-proof small {
  margin-top: 6px;
  font-size: 11px;
}

.hero-proof .hero-proof-action {
  display: grid;
}

.hero-proof .hero-proof-action strong {
  color: var(--lime);
}

.signal-strip {
  min-height: 46px;
}

.commerce-story {
  --story-progress: 0;
  position: relative;
  height: 430svh;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #090b09;
  background-size: 88px 88px;
}

.commerce-story-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-width));
  height: 100svh;
  min-height: 700px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 32px) 0 38px;
  overflow: hidden;
}

.commerce-story-copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.story-heading h2 {
  max-width: 540px;
  margin: 17px 0 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 720;
  line-height: 1.03;
}

.story-heading h2 em {
  color: var(--lime);
  font-family: var(--display-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 570;
}

.story-chapters {
  position: relative;
  min-height: 205px;
  margin-top: clamp(44px, 6vh, 74px);
}

.story-chapter {
  position: absolute;
  inset: 0;
  max-width: 500px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.story-chapter.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-chapter > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
}

.story-chapter h3 {
  margin: 15px 0 13px;
  color: var(--white);
  font-size: clamp(25px, 2.4vw, 35px);
  font-weight: 690;
  line-height: 1.08;
}

.story-chapter p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.62;
}

.story-index {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 7px;
  width: 100%;
  max-width: 500px;
  margin-top: auto;
}

.story-index strong {
  color: var(--lime);
  font-size: 17px;
  font-weight: 760;
}

.story-index > span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.story-index i {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.story-index b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.commerce-story-media {
  position: relative;
  width: 100%;
  height: min(70svh, 720px);
  min-height: 480px;
}

.story-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #111411;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 560ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.story-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.story-visual.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.story-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual-product > img {
  object-position: 52% center;
}

.story-visual-product::before,
.story-visual-amazon::before,
.story-visual-scale::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(6, 8, 6, 0.88) 0%, transparent 46%);
}

.visual-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.visual-label span,
.visual-label strong {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-label strong {
  color: var(--white);
  text-align: right;
}

.story-visual-tiktok {
  padding: 76px 24px 24px;
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 244, 238, 0.13), transparent 32%),
    #0d100f;
}

.story-visual-tiktok > img {
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: #fff;
}

.marketplace-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marketplace-bar strong {
  color: var(--white);
  font-size: 17px;
}

.marketplace-bar span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-proof {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: grid;
  min-width: 190px;
  padding: 17px 19px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(6, 8, 7, 0.88);
  backdrop-filter: blur(14px);
}

.visual-proof span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-proof strong {
  margin-top: 5px;
  font-size: 25px;
  line-height: 1;
}

.visual-proof small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
}

.story-visual-amazon {
  padding: 0;
  background: #111411;
}

.story-visual-amazon > img {
  object-position: 52% center;
}

.amazon-console {
  width: min(100%, 660px);
  overflow: hidden;
  color: #e9ece8;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0c0f0e;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.amazon-console > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.amazon-console > header strong {
  font-size: 23px;
  font-weight: 780;
}

.amazon-console > header strong::after {
  display: inline-block;
  width: 27px;
  height: 5px;
  margin-left: -24px;
  content: "";
  border-bottom: 2px solid #ffb046;
  border-radius: 50%;
  transform: translate(0, 7px) rotate(-5deg);
}

.amazon-console > header span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 790;
  text-transform: uppercase;
}

.amazon-console-body {
  padding: 23px;
}

.amazon-product {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.amazon-product img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
}

.amazon-product div {
  display: grid;
}

.amazon-product span,
.amazon-product small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.amazon-product strong {
  margin: 4px 0;
  font-size: 17px;
}

.amazon-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.amazon-modules > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  row-gap: 11px;
  min-height: 108px;
  padding: 17px;
  background: #111513;
}

.amazon-modules span {
  color: #ffb046;
  font-size: 10px;
  font-weight: 780;
}

.amazon-modules strong {
  font-size: 14px;
}

.amazon-modules i {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.amazon-modules i::after {
  display: block;
  width: var(--readiness);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #ffb046, var(--lime));
}

.amazon-console-body > p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.55;
}

.story-visual-scale > img {
  object-position: 52% center;
  filter: saturate(0.92) contrast(1.02);
}

.scale-overlay {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.scale-overlay span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(6, 8, 7, 0.55);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.scale-overlay span:last-child {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

@media (max-width: 980px) {
  .commerce-story-sticky {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 30px;
  }

  .commerce-story-media {
    min-height: 430px;
  }

  .story-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .brand-mark {
    font-size: 17px;
  }

  .brand-mark img {
    width: 35px;
    height: 35px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-media img,
  .hero-media video {
    width: 178%;
    height: 100%;
    margin-left: -78%;
    object-position: 67% center;
  }

  .hero-media img {
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 6, 5, 0.91) 0%, rgba(4, 6, 5, 0.47) 100%),
      linear-gradient(0deg, rgba(4, 6, 5, 0.98) 0%, rgba(4, 6, 5, 0.5) 54%, transparent 78%);
  }

  .hero-stage {
    align-items: end;
    min-height: max(720px, 100svh);
    padding-top: 110px;
    padding-bottom: 216px;
  }

  .hero-content {
    width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 1;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 350px);
    margin-top: 22px;
  }

  .hero .primary-action,
  .hero .secondary-action {
    min-height: 47px;
    padding: 0 17px;
    font-size: 13px;
  }

  .hero-note {
    display: none;
  }

  .hero .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .hero-proof > div {
    min-height: 92px;
    padding: 14px 13px;
  }

  .hero-proof > .hero-proof-action {
    display: none;
  }

  .hero-proof strong {
    font-size: clamp(19px, 5.5vw, 25px);
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-proof small {
    font-size: 9px;
    line-height: 1.2;
  }

  .signal-strip {
    min-height: 42px;
  }

  .commerce-story {
    height: 440svh;
    background-size: 56px 56px;
  }

  .commerce-story-sticky {
    display: grid;
    grid-template-areas:
      "heading"
      "media"
      "chapters"
      "index";
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(250px, 39svh) 142px auto;
    gap: 17px;
    align-content: center;
    min-height: 640px;
    padding: 78px 0 18px;
    overflow: hidden;
  }

  .commerce-story-copy {
    display: contents;
  }

  .story-heading {
    grid-area: heading;
  }

  .story-heading .section-kicker {
    font-size: 9px;
  }

  .story-heading h2 {
    max-width: 360px;
    margin-top: 8px;
    font-size: clamp(27px, 7.7vw, 34px);
    line-height: 1.06;
  }

  .commerce-story-media {
    grid-area: media;
    height: 100%;
    min-height: 250px;
  }

  .story-chapters {
    grid-area: chapters;
    min-height: 142px;
    margin: 0;
  }

  .story-chapter {
    max-width: 360px;
  }

  .story-chapter > span {
    font-size: 8px;
  }

  .story-chapter h3 {
    margin: 8px 0;
    font-size: 22px;
  }

  .story-chapter p {
    font-size: 12px;
    line-height: 1.46;
  }

  .story-index {
    grid-area: index;
    max-width: none;
    margin: 0;
  }

  .story-visual {
    border-radius: 6px;
  }

  .visual-label {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .visual-label span,
  .visual-label strong {
    font-size: 7px;
  }

  .story-visual-tiktok {
    padding: 50px 10px 10px;
  }

  .marketplace-bar {
    min-height: 40px;
    padding: 0 13px;
  }

  .marketplace-bar strong {
    font-size: 13px;
  }

  .marketplace-bar span {
    font-size: 7px;
  }

  .visual-proof {
    right: 18px;
    bottom: 18px;
    min-width: 135px;
    padding: 10px 12px;
  }

  .visual-proof strong {
    font-size: 17px;
  }

  .visual-proof small {
    font-size: 8px;
  }

  .story-visual-amazon {
    padding: 0;
  }

  .amazon-console > header {
    min-height: 39px;
    padding: 0 12px;
  }

  .amazon-console > header strong {
    font-size: 15px;
  }

  .amazon-console-body {
    padding: 11px;
  }

  .amazon-product {
    gap: 9px;
    padding-bottom: 10px;
  }

  .amazon-product img {
    width: 32px;
    height: 32px;
  }

  .amazon-product strong {
    font-size: 12px;
  }

  .amazon-modules > div {
    grid-template-columns: 19px 1fr;
    row-gap: 6px;
    min-height: 62px;
    padding: 8px;
  }

  .amazon-modules strong {
    font-size: 9px;
  }

  .amazon-console-body > p {
    display: none;
  }

  .scale-overlay {
    top: 12px;
    right: 12px;
  }

  .scale-overlay span {
    padding: 5px 6px;
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero.has-video .hero-poster {
    opacity: 1;
  }

  .story-chapter,
  .story-visual {
    transition: none;
  }
}

/* V5 bilingual conversion layer */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-width: 72px;
  min-height: 34px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch a {
  display: grid;
  place-items: center;
  min-height: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 820;
}

.language-switch a.is-active {
  color: var(--ink);
  border-radius: 3px;
  background: var(--lime);
}

#lead-form {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.engagement-section {
  padding: clamp(104px, 9vw, 142px) var(--page-pad);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0c0f0d;
  background-size: 80px 80px;
}

.engagement-intro,
.engagement-steps,
.engagement-note {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.engagement-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.engagement-intro .section-kicker {
  grid-column: 1 / -1;
}

.engagement-intro h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 690;
  line-height: 1.03;
}

.engagement-intro h2 em {
  color: var(--lime);
  font-family: var(--display-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 560;
}

.engagement-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.65;
}

.engagement-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 90px);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.engagement-steps article {
  min-height: 270px;
  padding: 27px 25px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.engagement-steps article > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 820;
}

.engagement-steps h3 {
  margin: 64px 0 14px;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 650;
  line-height: 1.12;
}

.engagement-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.58;
}

.engagement-note {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 70px;
  border-bottom: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.engagement-note > * {
  display: grid;
  place-items: center start;
  align-self: stretch;
  padding: 16px 20px;
  border-right: 1px solid var(--line-dark);
}

.engagement-note strong {
  flex: 1.35;
  color: var(--white);
  font-size: 12px;
}

.engagement-note span {
  flex: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.faq-list summary {
  font-size: clamp(17px, 1.45vw, 21px);
}

.faq-list p {
  max-width: 920px;
}

.footer-bottom a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.legal-document {
  color: var(--text);
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(11, 13, 11, 0.045) 50%, transparent 50.04%),
    var(--paper);
}

.legal-document .legal-page {
  min-height: 100vh;
}

.legal-document .brand-mark,
.legal-document .legal-page h1,
.legal-document .legal-page h2,
.legal-document .legal-page h3 {
  color: var(--text);
}

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

  .engagement-intro {
    grid-template-columns: 1fr;
  }

  .engagement-intro .section-kicker {
    grid-column: auto;
  }

  .engagement-intro p {
    max-width: 660px;
  }

  .engagement-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switch {
    min-width: 60px;
    min-height: 32px;
    padding: 2px;
  }

  .language-switch a {
    min-height: 26px;
    font-size: 8px;
  }

  .header-cta {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-visual {
    display: none;
  }

  .service-experience {
    display: block;
  }

  .service-chapters {
    display: block;
    border-left: 0;
  }

  .service-chapter,
  .service-chapter.is-active {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    opacity: 1;
    transform: none;
  }

  .service-chapter h3 {
    margin-bottom: 11px;
    font-size: 24px;
  }

  .service-chapter p {
    font-size: 13px;
  }

  .service-chapter ul {
    margin-top: 15px;
  }

  .engagement-section {
    padding: 88px var(--page-pad);
    background-size: 56px 56px;
  }

  .engagement-intro {
    gap: 24px;
  }

  .engagement-intro h2 {
    font-size: clamp(34px, 9.5vw, 43px);
  }

  .engagement-intro p {
    font-size: 14px;
  }

  .engagement-steps {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .engagement-steps article {
    min-height: 0;
    padding: 23px 20px 26px;
  }

  .engagement-steps h3 {
    margin: 25px 0 10px;
    font-size: 22px;
  }

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

  .engagement-note > * {
    min-height: 62px;
  }

  .engagement-note strong {
    grid-column: 1 / -1;
  }

  .faq-list summary {
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 17px;
  }

  .faq-list p {
    font-size: 14px;
  }
}

/* Preserve the complete cinematic frame at every browser aspect ratio. */
.hero.has-video .hero-poster {
  opacity: 0;
}

.hero-media {
  background: #050705;
}

.hero-media .hero-poster,
.hero-media .hero-video {
  inset: var(--header-height) auto auto 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 33 / 14;
  margin: 0;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  filter: saturate(0.92) contrast(1.04) brightness(0.9);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.hero-media .hero-poster {
  animation: none;
  will-change: opacity;
}

@media (min-aspect-ratio: 33 / 14) {
  .hero-media .hero-poster,
  .hero-media .hero-video {
    width: auto;
    height: calc(100% - var(--header-height));
  }
}

@media (min-width: 761px) {
  .hero,
  .hero-stage {
    min-height: clamp(760px, 100svh, 960px);
  }

  html[lang="ru"] .hero-content,
  html[lang="ru"] .hero h1,
  html[lang="en"] .hero-content,
  html[lang="en"] .hero h1 {
    width: min(100%, 780px);
    max-width: 780px;
  }

  html[lang="ru"] .hero h1 {
    font-size: 72px;
  }

  html[lang="ru"] .hero h1 .hero-line {
    white-space: nowrap;
  }

  html[lang="en"] .hero h1 {
    font-size: 64px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  html[lang="ru"] .hero h1 {
    font-size: 56px;
  }

  html[lang="en"] .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 760px) {
  html[lang="ru"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 43px;
  }
}

@media (max-width: 340px) {
  html[lang="ru"] .hero h1 {
    font-size: 36px;
  }
}

/* V10 executive motion and visual polish */
.section-intro h2,
.engagement-intro h2,
.process-intro h2,
.diagnostic-copy h2,
.qualification-panel h3 {
  text-wrap: balance;
}

.section-intro p,
.engagement-intro p,
.story-chapter p,
.service-chapter p,
.fit-row p,
.process-step p,
.diagnostic-copy p {
  text-wrap: pretty;
}

.services-section .section-intro h2 em,
.results-section .section-intro h2 em,
.fit-section .section-intro h2 em,
.faq-section .section-intro h2 em {
  color: #9b762b;
}

.services-section .section-intro > p,
.results-section .section-intro > p,
.fit-row p,
.faq-list p {
  color: #555c54;
}

.story-chapter p {
  color: rgba(255, 255, 255, 0.69);
}

.story-visual {
  --visual-scale: 1.055;
  --visual-y: 5px;
  clip-path: inset(0 4% 0 4%);
  will-change: opacity, transform, clip-path;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual.is-active {
  clip-path: inset(0);
}

.story-visual > img {
  transform: translate3d(0, var(--visual-y), 0) scale(var(--visual-scale));
  transform-origin: 50% 48%;
  transition: transform 160ms linear;
  will-change: transform;
}

.story-visual-tiktok > img {
  transform: none;
}

.story-visual::after {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.08);
}

.engagement-intro p,
.engagement-steps p {
  color: rgba(255, 255, 255, 0.66);
}

.engagement-steps article {
  position: relative;
  overflow: hidden;
  transition:
    background-color 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.engagement-steps article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.engagement-steps article.is-visible::before {
  transform: scaleX(1);
  transition-delay: var(--reveal-delay, 0ms);
}

.engagement-steps article:hover {
  background: rgba(168, 239, 114, 0.045);
}

.case-card figure {
  overflow: hidden;
}

.case-card figure img {
  transform: scale(1.012);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover figure img {
  transform: scale(1.045);
}

.fit-row {
  position: relative;
  transition:
    padding-left 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease;
}

.fit-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--lime-strong);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 320ms ease;
}

.fit-row:hover {
  padding-left: 18px;
  background: rgba(155, 118, 43, 0.035);
}

.fit-row:hover::before {
  transform: scaleY(1);
}

.process-step {
  position: relative;
  opacity: 0.62;
  transition:
    opacity 260ms ease,
    background-color 260ms ease;
}

.process-step::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.is-active {
  opacity: 1;
  background: rgba(168, 239, 114, 0.055);
}

.process-step.is-active::after {
  transform: scaleX(1);
}

.lead-form {
  position: relative;
  overflow: hidden;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.lead-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--lime), var(--gold), var(--lime));
  background-size: 200% 100%;
  animation: form-signal 8s linear infinite;
}

.reveal.is-visible {
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes form-signal {
  to {
    background-position: 200% 0;
  }
}

@media (max-width: 760px) {
  .story-visual > img {
    transform: scale(1.025);
  }

  .fit-row:hover {
    padding-left: 0;
    background: transparent;
  }

  .fit-row:hover::before {
    transform: scaleY(0);
  }

  .process-step {
    opacity: 0.76;
  }

  .process-step.is-active {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-visual,
  .story-visual > img,
  .case-card figure img,
  .engagement-steps article,
  .process-step,
  .lead-form::before {
    animation: none;
    transition: none;
  }

  .process-step {
    opacity: 1;
  }
}

/* V11: company credibility and verified operating proof */
.company-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 8vw, 124px) var(--page-pad);
  color: var(--text);
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(11, 13, 11, 0.055) 50%, transparent 50.04%),
    #eef0e9;
}

.company-proof-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.company-proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: 32px clamp(48px, 8vw, 120px);
  align-items: end;
}

.company-proof-intro .section-kicker {
  grid-column: 1 / -1;
  color: #6b8f43;
}

.company-proof-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 680;
  line-height: 1;
  text-wrap: balance;
}

.company-proof-intro h2 em {
  color: var(--gold);
  font-family: var(--accent-font);
  font-weight: 520;
}

.company-proof-intro p {
  max-width: 520px;
  margin: 0;
  color: #555c54;
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.company-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(52px, 6vw, 78px);
  border-top: 1px solid rgba(11, 13, 11, 0.18);
  border-bottom: 1px solid rgba(11, 13, 11, 0.18);
}

.company-proof-grid > div {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 30px clamp(20px, 2.3vw, 34px);
}

.company-proof-grid > div + div {
  border-left: 1px solid rgba(11, 13, 11, 0.16);
}

.company-proof-grid span,
.company-proof-grid small {
  color: #697068;
}

.company-proof-grid span {
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
}

.company-proof-grid strong {
  margin-top: 24px;
  color: #111411;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.company-proof-grid small {
  max-width: 220px;
  margin-top: 11px;
  font-size: 12px;
  line-height: 1.45;
}

.company-proof-meta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-top: 24px;
}

.company-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.company-proof-links a {
  color: #293225;
  border-bottom: 1px solid rgba(41, 50, 37, 0.35);
  font-size: 13px;
  font-weight: 740;
}

.company-proof-links a:hover {
  color: #568232;
  border-color: #568232;
}

.company-proof-meta p {
  max-width: 450px;
  margin: 0;
  color: #747a73;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.footer-address address strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 720;
}

.footer-address address a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-address address a:hover {
  color: var(--lime);
}

@media (max-width: 1080px) {
  .company-proof-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .company-proof-intro .section-kicker {
    grid-column: auto;
  }

  .company-proof-intro p {
    max-width: 720px;
  }

  .company-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-proof-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(11, 13, 11, 0.16);
  }

  .company-proof-grid > div:nth-child(4) {
    border-top: 1px solid rgba(11, 13, 11, 0.16);
  }
}

@media (max-width: 760px) {
  .company-proof {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .company-proof-intro h2 {
    font-size: clamp(35px, 9.6vw, 42px);
  }

  .company-proof-grid {
    margin-top: 44px;
  }

  .company-proof-grid > div {
    min-height: 165px;
    padding: 24px 18px;
  }

  .company-proof-grid strong {
    margin-top: 19px;
    font-size: clamp(23px, 7vw, 30px);
  }

  .company-proof-meta {
    display: grid;
  }

  .company-proof-links {
    display: grid;
    gap: 12px;
  }

  .company-proof-meta p {
    max-width: 520px;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .company-proof-grid {
    grid-template-columns: 1fr;
  }

  .company-proof-grid > div + div,
  .company-proof-grid > div:nth-child(3) {
    border-top: 1px solid rgba(11, 13, 11, 0.16);
    border-left: 0;
  }
}
