@font-face {
  font-family: "Inter";
  src: url("assets/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/inter-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --paper: #f5f3ed;
  --paper-bright: #fbfaf7;
  --ink: #101012;
  --muted: #686762;
  --rule: rgba(16, 16, 18, 0.18);
  --violet: #a9b8ff;
  --violet-strong: #8d84ff;
  --magenta: #c72bd7;
  --yellow: #e2ea59;
  --white: #ffffff;
  --max: 1380px;
  --side: clamp(22px, 4vw, 72px);
  --radius: 28px;
  --shadow: 0 26px 70px rgba(19, 16, 24, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 2%, rgba(201, 43, 215, 0.13), transparent 22rem),
    var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px var(--side);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, min-height 200ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--rule);
  background: rgba(245, 243, 237, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  transform: translateY(-2px);
}

.button-small {
  justify-self: end;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 16px;
}

.button-hero {
  min-width: 270px;
  justify-content: space-between;
  gap: 34px;
  padding: 17px 18px 17px 28px;
  border-color: #b41fc4;
  background: linear-gradient(115deg, #c626d7, #825cf0);
  box-shadow: 0 16px 38px rgba(172, 35, 192, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-hero::after {
  content: "↗";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 18px;
  line-height: 1;
}

.button-hero:hover {
  border-color: #8d1ca0;
  background: linear-gradient(115deg, #a71eb7, #7248de);
  box-shadow: 0 20px 42px rgba(148, 30, 169, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(42px, 5vw, 90px);
  align-items: center;
  min-height: 930px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--side) 94px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 32px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.proof-intro h2,
.people-copy h2,
.request-copy h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(58px, 5.5vw, 92px);
  line-height: 0.94;
}

.hero-intro {
  max-width: 720px;
  margin: 34px 0 0;
  color: #323238;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.5;
}

.hero-report-contents {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--rule);
}

.hero-report-contents article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.hero-report-contents article > span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-report-contents strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.hero-report-contents p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.hero-action-note {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  min-height: 670px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% -14% 10% 8%;
  border-radius: 50%;
  background: linear-gradient(130deg, rgba(201, 43, 215, 0.9), rgba(163, 171, 255, 0.76) 55%, rgba(226, 234, 89, 0.9));
  filter: blur(52px);
  opacity: 0.34;
  animation: ambient-shift 9s ease-in-out infinite alternate;
}

.hero-video-wrap {
  position: absolute;
  inset: 0 14% 4% 2%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 170px 170px 28px 28px;
  background: #d9d7d0;
  box-shadow: var(--shadow);
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 7, 10, 0.58));
  pointer-events: none;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.report-card {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 0;
  width: min(390px, 72%);
  min-height: 470px;
  overflow: hidden;
  padding: 25px 26px 28px;
  border: 1px solid rgba(16, 16, 18, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 70px rgba(14, 11, 18, 0.28);
  transform: rotate(2.4deg);
}

.report-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.report-card-top img {
  width: 34px;
  height: 34px;
}

.report-kicker {
  margin: 22px 0 8px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-card h2 {
  max-width: 300px;
  margin: 0;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.report-index {
  display: grid;
  gap: 0;
  margin: 25px 0 23px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.report-index li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid var(--rule);
}

.report-index li:last-child {
  border-bottom: 1px solid var(--rule);
}

.report-index span {
  color: var(--violet-strong);
  font-size: 11px;
}

.report-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ecebea;
}

.report-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), var(--violet-strong), var(--yellow));
}

.report-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.report-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 5px rgba(201, 43, 215, 0.13);
}

.scan-line {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta) 18%, var(--yellow) 80%, transparent);
  box-shadow: 0 0 28px rgba(201, 43, 215, 0.7);
  animation: scan 4.8s ease-in-out infinite;
}

.hero-statement {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-space {
  padding: clamp(100px, 11vw, 170px) var(--side);
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto 64px;
}

.section-heading h2 {
  font-size: clamp(45px, 5.5vw, 88px);
  line-height: 0.98;
}

.section-heading > p:not(.eyebrow):last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.recognition {
  max-width: var(--max);
  margin: 0 auto;
}

.recognition .section-heading {
  margin-left: 0;
}

.credibility-compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 18, 0.28);
  border-radius: var(--radius);
  background: #e7e6e1;
  box-shadow: var(--shadow);
}

.compare-side {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.compare-reality img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.compare-reality::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 6, 0.72));
}

.compare-online {
  display: grid;
  place-items: center;
  padding: 58px 54px 150px;
  background:
    radial-gradient(circle at 82% 12%, rgba(226, 234, 89, 0.6), transparent 18rem),
    linear-gradient(145deg, #dedff5, #f8f7f3 55%);
}

.online-presence {
  width: min(470px, 100%);
  padding: 30px;
  border: 1px solid rgba(16, 16, 18, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(17, 16, 20, 0.12);
}

.online-presence-top {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.social-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
}

.online-presence-top p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online-presence-top strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.online-signals {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.online-signals li {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}

.online-signals li:last-child {
  border-bottom: 0;
}

.online-signals span {
  color: var(--muted);
}

.online-signals strong {
  text-align: right;
}

.online-signals li:not(:first-child) strong {
  color: #9c246e;
}

.compare-panel {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding: 22px 24px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.compare-panel p {
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-panel strong {
  display: block;
  font-size: clamp(22px, 2.25vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.compare-panel-real {
  color: var(--white);
  background: rgba(10, 9, 12, 0.58);
}

.compare-panel-online {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.compare-divider {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(13, 12, 15, 0.2);
}

.compare-divider span {
  position: absolute;
  top: 28px;
  left: 50%;
  width: max-content;
  padding: 10px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credibility-summary {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 56px 0 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}

.credibility-summary strong {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.credibility-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px 100px;
  padding: clamp(100px, 10vw, 150px) var(--side);
  color: var(--white);
  background: var(--ink);
}

.proof-intro {
  align-self: end;
}

.eyebrow-light {
  color: var(--yellow);
}

.proof-intro h2 {
  max-width: 600px;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 0.98;
}

.proof-intro > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.proof-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-result {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 24px 0;
}

.proof-result + .proof-result {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-result p {
  margin: 0;
}

.proof-result-label {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-result strong {
  display: block;
  max-width: 260px;
  margin: auto 0 24px;
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.proof-result > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.client-logo-ledger {
  grid-column: 1 / -1;
  padding-top: 10px;
}

.logo-ledger-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.logo-ledger-heading .eyebrow,
.logo-ledger-heading > p:last-child {
  margin: 0;
}

.logo-ledger-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

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

.client-logos figure {
  aspect-ratio: 16 / 8.5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: var(--white);
}

.client-logos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.client-logos figure:hover img {
  opacity: 0.86;
  transform: scale(1.025);
}

.proof-quote {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-quote blockquote {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 68px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.proof-quote figcaption,
.secondary-quote figcaption {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.report-section {
  overflow: hidden;
  background: var(--paper-bright);
}

.section-heading-wide {
  max-width: var(--max);
}

.report-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.pillar {
  min-height: 440px;
  padding: 34px 38px 44px 0;
}

.pillar + .pillar {
  padding-left: 38px;
  border-left: 1px solid var(--rule);
}

.pillar-number {
  margin: 0 0 72px;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 800;
}

.pillar h3 {
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pillar ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.pillar li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
}

.report-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  max-width: var(--max);
  margin: clamp(110px, 12vw, 180px) auto 0;
}

.report-pages {
  position: relative;
  min-height: 680px;
}

.strategy-page,
.report-cover {
  position: absolute;
  overflow: hidden;
  width: 72%;
  margin: 0;
  border: 1px solid rgba(16, 16, 18, 0.18);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 30px 66px rgba(24, 20, 28, 0.18);
}

.strategy-page img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.strategy-page-one {
  top: 4%;
  left: 0;
  transform: rotate(-8deg);
}

.strategy-page-two {
  top: 24%;
  right: 0;
  transform: rotate(7deg);
}

.strategy-page-three {
  left: 2%;
  bottom: 3%;
  transform: rotate(-2deg);
}

.report-cover {
  z-index: 4;
  top: 14%;
  left: 17%;
  width: 62%;
  min-height: 510px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg, #c626d7 0%, #9388ff 54%, #dbe963 100%);
  transform: rotate(1.5deg);
}

.report-cover::after {
  content: "";
  position: absolute;
  inset: auto -34% -45% 26%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.report-cover-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.report-cover-mark img {
  width: 34px;
  height: 34px;
}

.report-cover > p {
  margin: 90px 0 16px;
  font-size: 13px;
  font-weight: 600;
}

.report-cover h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.cover-rule {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.showcase-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.showcase-copy > p:not(.eyebrow):not(.showcase-note) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.showcase-note {
  display: inline-block;
  margin: 32px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.case-proof {
  background:
    radial-gradient(circle at 92% 12%, rgba(172, 184, 255, 0.32), transparent 24rem),
    #ecebe7;
}

.case-proof-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.case-proof .section-heading {
  margin-left: 0;
}

.proof-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-story {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 36px 38px 34px 0;
}

.proof-story + .proof-story {
  padding-left: 38px;
  border-left: 1px solid var(--rule);
}

.proof-story p {
  margin: 0;
}

.proof-story-type {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-story strong {
  display: block;
  margin: auto 0 24px;
  font-size: clamp(34px, 3.7vw, 58px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.proof-story > p:not(.proof-story-type) {
  max-width: 390px;
  color: var(--muted);
  font-size: 17px;
}

.proof-story cite {
  display: block;
  margin-top: 24px;
  color: #6f6d68;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.performance-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-top: 24px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(16, 16, 18, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(125deg, rgba(198, 42, 215, 0.94), rgba(149, 136, 255, 0.92) 54%, rgba(221, 233, 88, 0.95));
  box-shadow: 0 26px 64px rgba(25, 17, 28, 0.12);
}

.performance-proof p {
  margin: 0;
}

.performance-proof .eyebrow {
  margin-bottom: 50px;
}

.performance-proof strong {
  display: block;
  font-size: clamp(46px, 6vw, 88px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.performance-proof > div:last-child {
  padding-top: 24px;
  border-top: 1px solid rgba(16, 16, 18, 0.3);
}

.performance-proof > div:last-child p:first-child {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.performance-proof > div:last-child p:last-child {
  margin-top: 8px;
  font-size: 16px;
}

.process-section {
  max-width: var(--max);
  margin: 0 auto;
}

.process-section .section-heading {
  margin-left: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(16, 16, 18, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.process-list li:nth-child(3) {
  background:
    radial-gradient(circle at 90% 12%, rgba(226, 234, 89, 0.8), transparent 11rem),
    linear-gradient(145deg, rgba(172, 184, 255, 0.56), rgba(251, 250, 247, 0.88));
}

.process-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(16, 16, 18, 0.18);
  border-radius: 50%;
  color: var(--magenta);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.process-list div {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 78px;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.process-list p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.people-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(60px, 7vw, 110px);
  color: var(--white);
  background: var(--ink);
}

.people-copy {
  align-self: center;
}

.people-copy h2 {
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.98;
}

.people-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.secondary-quote {
  margin: 58px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.secondary-quote blockquote {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.relationship-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.relationship-proof article {
  padding: 22px 22px 24px 0;
}

.relationship-proof article + article {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.relationship-proof p {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.relationship-proof strong {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.people-gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: 260px 180px;
  gap: 14px;
  width: min(100%, 660px);
  min-height: 0;
  align-self: center;
  justify-self: end;
}

.people-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.people-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-team {
  grid-column: 1 / -1;
}

.gallery-team img {
  object-position: center 42%;
}

.about-section {
  max-width: var(--max);
  margin: 0 auto;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 18, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(226, 234, 89, 0.68), transparent 18rem),
    linear-gradient(145deg, rgba(172, 184, 255, 0.8), rgba(251, 250, 247, 0.96) 58%);
  box-shadow: var(--shadow);
}

.about-image {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(16, 16, 18, 0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  align-self: stretch;
  padding: clamp(42px, 5vw, 74px);
}

.about-copy h2 {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.about-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 0;
  border-bottom: 1px solid rgba(16, 16, 18, 0.2);
  list-style: none;
}

.about-capabilities li {
  padding: 14px 10px 14px 0;
  border-top: 1px solid rgba(16, 16, 18, 0.2);
  font-size: 14px;
  font-weight: 700;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.about-facts p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.about-facts strong {
  font-size: 17px;
}

.about-facts span {
  color: var(--muted);
  font-size: 13px;
}

.fit-section {
  max-width: var(--max);
  margin: 0 auto;
}

.fit-section .section-heading {
  margin-left: 0;
}

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

.fit-card {
  min-height: 530px;
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.35);
}

.fit-card-positive {
  background: linear-gradient(145deg, rgba(172, 184, 255, 0.64), rgba(226, 234, 89, 0.64));
}

.fit-label {
  margin: 0 0 96px;
  font-size: 16px;
  font-weight: 800;
}

.fit-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-top: 1px solid var(--rule);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  max-width: var(--max);
  margin: 0 auto;
}

.faq-section .section-heading {
  margin: 0;
}

.faq-section .section-heading h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.faq-list {
  border-top: 1px solid var(--rule);
}

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

.faq-list summary {
  position: relative;
  padding: 27px 58px 27px 0;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: 0;
  padding: 0 60px 28px 0;
  color: var(--muted);
  font-size: 17px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 9vw, 130px);
  padding: clamp(100px, 11vw, 170px) var(--side);
  background:
    radial-gradient(circle at 80% 5%, rgba(255, 255, 255, 0.42), transparent 24rem),
    linear-gradient(125deg, #c62ad7 0%, #9588ff 52%, #dde958 100%);
}

.request-copy {
  align-self: start;
  position: sticky;
  top: 125px;
}

.request-copy h2 {
  max-width: 680px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.94;
}

.request-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 0;
  font-size: 19px;
}

.request-aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(16, 16, 18, 0.32);
}

.request-aside p {
  margin: 0;
  padding: 17px 14px 17px 0;
  border-bottom: 1px solid rgba(16, 16, 18, 0.32);
  font-size: 14px;
  font-weight: 600;
}

.request-aside p:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(16, 16, 18, 0.32);
}

.request-trust {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 16, 18, 0.32);
}

.request-trust > p {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-trust > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-trust span {
  padding: 9px 12px;
  border: 1px solid rgba(16, 16, 18, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.request-form {
  align-self: start;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(16, 16, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 32px 80px rgba(25, 17, 28, 0.2);
  backdrop-filter: blur(16px);
}

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

.request-form label {
  grid-column: span 3;
  display: grid;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

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

.optional-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

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

.request-form label.form-third {
  grid-column: span 2;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 18, 0.35);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  transition: border-color 180ms ease;
}

.request-form textarea {
  min-height: 120px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--magenta);
  outline: none;
}

.request-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.consent input {
  flex: 0 0 auto;
  width: 19px;
  min-height: 19px;
  margin: 2px 0 0;
  accent-color: var(--magenta);
}

.form-submit {
  width: 100%;
  margin-top: 30px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.form-success {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 18, 0.2);
  border-radius: 16px;
  background: var(--white);
}

.form-success[hidden] {
  display: none;
}

.form-success img {
  display: block;
  width: 100%;
  height: auto;
}

.form-success > div {
  padding: 22px 24px 24px;
}

.request-form.is-submitted {
  padding: 18px;
}

.request-form.is-submitted > :not(.form-success) {
  display: none;
}

.form-success strong {
  display: block;
  font-size: 18px;
}

.form-success p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-success-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 54px var(--side) 120px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.brand-footer img {
  width: 40px;
  height: 40px;
}

.site-footer p {
  justify-self: center;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
  color: var(--yellow);
  font-weight: 600;
}

.mobile-cta {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes scan {
  0%, 12% { top: 18%; opacity: 0; }
  22% { opacity: 1; }
  78% { opacity: 1; }
  90%, 100% { top: 86%; opacity: 0; }
}

@keyframes ambient-shift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.98); }
  to { transform: translate3d(5%, 3%, 0) scale(1.06); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-note {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(54px, 6vw, 74px);
  }

  .report-card {
    width: 82%;
  }

  .proof-band,
  .people-section,
  .request-section {
    gap: 70px;
  }

  .report-showcase {
    grid-template-columns: 1fr;
  }

  .report-pages {
    width: min(780px, 100%);
    margin: 0 auto;
  }

  .showcase-copy {
    max-width: 780px;
  }

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

  .people-gallery {
    grid-template-rows: 240px 160px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 76px;
    font-size: 17px;
  }

  .site-header {
    position: absolute;
    min-height: 74px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 120px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 76px);
  }

  .hero-actions {
    display: grid;
    align-items: start;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 690px;
    margin-top: 64px;
  }

  .hero-video-wrap {
    inset: 0 20% 2% 0;
  }

  .report-card {
    right: 0;
    width: min(390px, 64%);
  }

  .hero-statement {
    margin-top: 70px;
  }

  .credibility-compare {
    min-height: 570px;
  }

  .compare-online {
    padding: 40px 30px 138px;
  }

  .online-presence {
    padding: 24px;
  }

  .compare-panel {
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 18px;
  }

  .proof-band,
  .people-section,
  .faq-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .proof-intro h2 {
    max-width: 780px;
  }

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

  .proof-story,
  .proof-story + .proof-story {
    min-height: 0;
    padding: 34px 0 38px;
    border-left: 0;
  }

  .proof-story + .proof-story {
    border-top: 1px solid var(--rule);
  }

  .proof-story strong {
    max-width: 720px;
    margin: 84px 0 24px;
  }

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

  .report-pillars {
    grid-template-columns: 1fr;
  }

  .pillar,
  .pillar + .pillar {
    min-height: 0;
    padding: 30px 0 36px;
    border-left: 0;
  }

  .pillar + .pillar {
    border-top: 1px solid var(--rule);
  }

  .pillar-number {
    margin-bottom: 56px;
  }

  .process-list li {
    min-height: 310px;
  }

  .people-section {
    gap: 76px;
  }

  .people-gallery {
    grid-template-rows: 270px 170px;
    width: min(100%, 720px);
    justify-self: start;
  }

  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 18, 0.2);
  }

  .faq-section .section-heading {
    margin-bottom: 0;
  }

  .request-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-bottom: 54px;
  }

  .site-footer p,
  .site-footer > a:last-child {
    justify-self: start;
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 14px 34px rgba(15, 13, 18, 0.25);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(140%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

@media (max-width: 620px) {
  :root {
    --side: 20px;
    --radius: 22px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 78px;
  }

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

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

  .hero-intro {
    margin-top: 26px;
    font-size: 18px;
  }

  .hero-stage {
    min-height: 590px;
    margin-top: 50px;
  }

  .hero-video-wrap {
    inset: 0 24% 12% 0;
    border-radius: 110px 110px 22px 22px;
  }

  .video-label {
    left: 18px;
    bottom: 18px;
    font-size: 12px;
  }

  .report-card {
    right: -2%;
    width: 74%;
    min-height: 378px;
    padding: 18px;
    border-radius: 14px;
  }

  .report-card-top {
    padding-bottom: 12px;
    font-size: 9px;
  }

  .report-card-top img {
    width: 28px;
    height: 28px;
  }

  .report-kicker {
    margin-top: 15px;
    font-size: 9px;
  }

  .report-card h2 {
    font-size: 21px;
  }

  .report-index {
    margin: 16px 0;
    font-size: 11px;
  }

  .report-index li {
    grid-template-columns: 32px 1fr;
    min-height: 38px;
  }

  .report-status {
    font-size: 9px;
  }

  .hero-statement {
    margin-top: 50px;
    padding-top: 28px;
  }

  .section-space {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-heading > p:not(.eyebrow):last-child {
    margin-top: 20px;
    font-size: 17px;
  }

  .credibility-compare {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .compare-reality {
    min-height: 430px;
  }

  .compare-online {
    min-height: 480px;
    padding: 36px 20px 132px;
  }

  .online-presence {
    padding: 20px;
  }

  .online-presence-top {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-bottom: 18px;
  }

  .social-avatar {
    width: 44px;
    height: 44px;
  }

  .online-presence-top strong {
    font-size: 18px;
  }

  .online-signals li {
    gap: 12px;
    min-height: 52px;
    font-size: 15px;
  }

  .compare-panel {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 18px;
  }

  .compare-panel strong {
    font-size: 24px;
  }

  .compare-divider {
    display: none;
  }

  .credibility-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
    padding-top: 24px;
  }

  .credibility-summary p {
    font-size: 17px;
  }

  .proof-band {
    gap: 52px;
  }

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

  .proof-result {
    min-height: 220px;
    padding: 24px 0;
  }

  .proof-result + .proof-result {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .logo-ledger-heading {
    display: block;
  }

  .logo-ledger-heading > p:last-child {
    margin-top: 12px;
  }

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

  .proof-quote {
    padding-top: 48px;
  }

  .proof-quote blockquote {
    font-size: 34px;
  }

  .proof-story strong {
    margin-top: 64px;
  }

  .performance-proof {
    gap: 46px;
    padding: 32px 24px;
  }

  .performance-proof .eyebrow {
    margin-bottom: 36px;
  }

  .performance-proof strong {
    font-size: 48px;
  }

  .report-showcase {
    margin-top: 92px;
  }

  .report-pages {
    min-height: 510px;
  }

  .strategy-page {
    width: 78%;
    border-radius: 10px;
  }

  .report-cover {
    left: 12%;
    width: 76%;
    min-height: 390px;
    padding: 22px;
  }

  .report-cover > p {
    margin-top: 60px;
  }

  .report-cover h3 {
    font-size: 43px;
  }

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

  .process-list li {
    min-height: 240px;
    padding: 24px;
  }

  .process-list div {
    margin-top: 40px;
  }

  .process-list p {
    font-size: 16px;
  }

  .people-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 120px;
    min-height: 0;
  }

  .about-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-copy {
    padding: 34px 22px 38px;
  }

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

  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .about-facts {
    grid-template-columns: 1fr;
  }

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

  .relationship-proof article,
  .relationship-proof article + article {
    padding: 22px 0 24px;
    border-left: 0;
  }

  .relationship-proof article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

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

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

  .fit-label {
    margin-bottom: 58px;
  }

  .faq-list summary {
    padding-right: 50px;
  }

  .request-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .request-copy h2 {
    font-size: 52px;
  }

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

  .request-aside p:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .request-form label,
  .request-form label.form-third {
    grid-column: 1 / -1;
  }

  .request-form {
    padding: 28px 22px;
  }
}

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

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

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