:root {
  --ink: #070a0e;
  --ink-2: #0d1219;
  --navy: #0b1b2d;
  --navy-light: #102942;
  --wine: #9f1830;
  --red: #d61f39;
  --red-light: #f04b5f;
  --blue: #247cbd;
  --cyan: #61c5e8;
  --paper: #f2f4f6;
  --white: #fff;
  --text: #f5f7fa;
  --muted: #9ea7b3;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(8, 17, 28, .15);
  --shell: min(1220px, calc(100% - 56px));
  --header-height: 78px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

img,
video,
svg {
  display: block;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}

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

.utility-bar {
  height: 28px;
  background: #030507;
  color: #b9c1ca;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  letter-spacing: .02em;
}

.utility-inner,
.utility-inner div {
  height: 100%;
  display: flex;
  align-items: center;
}

.utility-inner {
  justify-content: space-between;
}

.utility-inner div {
  gap: 24px;
}

.utility-inner a {
  color: var(--white);
  font-weight: 600;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.availability i,
.signal i,
.film-label i,
.response-note > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2cd47c;
  box-shadow: 0 0 0 5px rgba(44, 212, 124, .1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(7, 10, 14, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 14, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .24);
}

.nav {
  height: 100%;
  display: grid;
  grid-template-columns: 252px 1fr auto auto;
  grid-template-areas: "brand menu language cta";
  align-items: center;
  gap: 20px;
}

.brand {
  grid-area: brand;
}

.brand img {
  width: 220px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.main-menu {
  grid-area: menu;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 13px;
  color: #c1c8d0;
}

.main-menu a {
  position: relative;
  padding-block: 29px;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--red);
  transition: right .25s var(--ease);
}

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

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
  right: 0;
}

.language-switch {
  grid-area: language;
  display: grid;
  grid-template-columns: repeat(2, 34px);
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  background: rgba(255, 255, 255, .04);
}

.language-switch button {
  height: 28px;
  padding: 0;
  color: #7f8994;
  background: transparent;
  border: 0;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--red);
}

.nav-cta {
  grid-area: cta;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease;
}

.nav-cta svg {
  width: 17px;
}

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

.menu-toggle {
  grid-area: toggle;
  display: none;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 138px));
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-gridline,
.hero-scan {
  position: absolute;
  inset: 0;
}

.hero-image {
  animation: heroBreath 18s ease-in-out infinite alternate;
}

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

.hero-image::before {
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 4 / 3;
  background: url("assets/team.jpeg") center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .16) 3%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .16) 3%, #000 16%, #000 100%);
}

.hero-image::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, .99) 0%, rgba(7, 10, 14, .94) 30%, rgba(7, 10, 14, .38) 50%, rgba(7, 10, 14, .04) 70%, rgba(7, 10, 14, .18) 100%),
    linear-gradient(0deg, rgba(7, 10, 14, .42) 0%, transparent 24%),
    linear-gradient(90deg, rgba(36, 124, 189, .07), transparent 44%, rgba(159, 24, 48, .07));
}

.hero-gridline {
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-scan {
  width: 1px;
  left: 64%;
  right: auto;
  background: linear-gradient(transparent 15%, rgba(97, 197, 232, .82), transparent 85%);
  box-shadow: 0 0 28px rgba(97, 197, 232, .7);
  animation: scanLine 9s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 48px 52px;
}

.hero-copy {
  width: min(670px, 62%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  color: #c7d0da;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.eyebrow i {
  font-style: normal;
  color: #75808d;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(56px, 6.5vw, 92px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  width: min(600px, 100%);
  margin: 24px 0 0;
  color: #c1c8d0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 14px 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button svg,
.text-link svg,
.assessment-link svg {
  width: 18px;
  transition: transform .25s var(--ease);
}

.button > svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .23);
  background: rgba(0, 0, 0, .12);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg,
.assessment-link:hover svg {
  transform: translateX(4px);
}

.button-red {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--wine), var(--red));
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 16px 40px rgba(214, 31, 57, .2);
}

.button-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .24) 50%, transparent 70%);
  transform: translateX(-130%);
}

.button-red:hover {
  background: var(--red-light);
  box-shadow: 0 18px 46px rgba(214, 31, 57, .3);
}

.button-red:hover::before {
  animation: buttonShine .8s ease;
}

.button-quiet,
.button-outline {
  background: rgba(8, 14, 21, .55);
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(8px);
}

.button-quiet:hover,
.button-outline:hover {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .46);
}

.button-quiet svg,
.button-outline svg {
  width: 17px;
}

.hero-proof {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof div {
  padding: 18px 18px 0 0;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.hero-proof span {
  color: #939ca6;
  font-size: 11px;
  line-height: 1.45;
}

.expert-id {
  display: none;
  position: absolute;
  right: clamp(260px, 22vw, 330px);
  bottom: 46px;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0 13px 15px;
  border-left: 1px solid rgba(255, 255, 255, .38);
}

.expert-id > div {
  display: grid;
}

.expert-id strong {
  font-size: 13px;
}

.expert-id span {
  color: #a9b1bb;
  font-size: 10px;
}

.expert-line {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.3) 49%, rgba(255,255,255,.3) 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255,255,255,.3) 49%, rgba(255,255,255,.3) 51%, transparent 52%);
}

.expert-id .signal {
  position: absolute;
  right: 0;
  top: -23px;
  display: flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  color: #b9c1ca;
  font-size: 9px;
  text-transform: uppercase;
}

.expert-id .signal i {
  width: 5px;
  height: 5px;
}

.scroll-cue {
  position: absolute;
  left: 24px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7d8792;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue svg {
  width: 17px;
  animation: scrollCue 1.8s ease-in-out infinite;
}

.diagnostic-strip {
  background: var(--paper);
  color: #0c1420;
  border-bottom: 1px solid var(--dark-line);
}

.diagnostic-grid {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.diagnostic-heading,
.diagnostic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 50px;
}

.diagnostic-heading {
  position: relative;
  padding-right: clamp(36px, 7vw, 100px);
  border-right: 1px solid var(--dark-line);
}

.section-index {
  position: absolute;
  top: 26px;
  left: 0;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.diagnostic-heading h2,
.section-heading h2,
.expert-copy h2,
.field-copy h2,
.evaluation-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}

.diagnostic-copy {
  padding-left: clamp(36px, 6vw, 88px);
}

.diagnostic-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #52606e;
  font-size: 16px;
  line-height: 1.7;
}

.text-link,
.assessment-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #111c29;
  font-size: 12px;
  font-weight: 700;
}

.solutions,
.method {
  padding: 112px 0;
}

.solutions {
  background: #0a0f15;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}

.kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--red-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.solution-stage {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 590px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 14, .78), transparent 58%);
  pointer-events: none;
}

.solution-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .8s var(--ease);
}

.solution-visual.is-changing img {
  opacity: .35;
  transform: scale(1.03);
}

.visual-readout {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}

.visual-readout span {
  color: var(--cyan);
  font-weight: 700;
}

.visual-readout strong {
  font-size: 13px;
}

.visual-readout i {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 58%, rgba(255, 255, 255, .2) 58%);
}

.solution-list {
  display: flex;
  flex-direction: column;
}

.solution-item {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: transparent;
  color: var(--white);
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .3s ease;
}

.solution-item:last-child {
  border-bottom: 0;
}

.solution-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform .3s var(--ease);
}

.solution-item > span {
  align-self: start;
  color: #69737f;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
}

.solution-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 600;
}

.solution-item p {
  max-width: 500px;
  margin: 0;
  color: #8f99a5;
  font-size: 13px;
  line-height: 1.6;
}

.solution-item svg {
  width: 22px;
  color: #67717c;
  transition: color .25s ease, transform .25s var(--ease);
}

.solution-item:hover,
.solution-item.is-active {
  background: rgba(255, 255, 255, .035);
}

.solution-item.is-active::before {
  transform: scaleY(1);
}

.solution-item.is-active > span,
.solution-item.is-active svg {
  color: var(--red-light);
}

.solution-item.is-active svg {
  transform: translateX(4px);
}

.film-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.film-section video,
.film-overlay,
.film-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-section video {
  z-index: -3;
  object-fit: cover;
}

.film-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, .95), rgba(7, 10, 14, .42) 65%, rgba(7, 10, 14, .68)),
    linear-gradient(0deg, rgba(7, 10, 14, .9), transparent 55%);
}

.film-grid {
  z-index: -1;
  opacity: .16;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}

.film-content {
  padding-block: 100px;
}

.film-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #bac3cc;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.film-content blockquote {
  width: min(920px, 90%);
  margin: 70px 0 80px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 500;
  line-height: 1;
}

.film-meta {
  display: flex;
  gap: clamp(24px, 6vw, 80px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: #a3adb7;
  font-size: 11px;
  text-transform: uppercase;
}

.method {
  background: var(--paper);
  color: #101923;
}

.method .section-heading > p {
  color: #65717e;
}

.method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}

.method-graph {
  position: relative;
  height: 330px;
  margin: 12px 0 70px;
  overflow: hidden;
  border-top: 1px solid #c9ced3;
  border-bottom: 1px solid #c9ced3;
  background:
    linear-gradient(90deg, transparent 24.8%, rgba(16, 25, 35, .07) 25%, transparent 25.2%, transparent 49.8%, rgba(16, 25, 35, .07) 50%, transparent 50.2%, transparent 74.8%, rgba(16, 25, 35, .07) 75%, transparent 75.2%),
    linear-gradient(180deg, rgba(255, 255, 255, .4), rgba(222, 226, 229, .2));
}

.graph-plot {
  position: absolute;
  inset: 38px 34px 48px 74px;
  width: calc(100% - 108px);
  height: calc(100% - 86px);
  overflow: visible;
}

.graph-guide {
  fill: none;
  stroke: rgba(16, 25, 35, .12);
  stroke-width: 1;
}

.graph-area {
  fill: rgba(36, 124, 189, .06);
  stroke: none;
}

.graph-line {
  fill: none;
  stroke: url("#methodStroke");
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  transition: stroke-dashoffset 1.8s var(--ease);
}

.method-graph.is-visible .graph-line {
  stroke-dashoffset: 0;
}

.graph-axis {
  position: absolute;
  z-index: 2;
  color: #65717e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.graph-axis-y {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.graph-axis-x {
  left: 74px;
  bottom: 16px;
}

.graph-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  color: #46525e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s var(--ease);
}

.method-graph.is-visible .graph-node {
  opacity: 1;
  transform: translateY(0);
}

.graph-node i {
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(16, 25, 35, .28), 0 0 0 8px rgba(214, 31, 57, .08);
}

.graph-node-1 {
  left: 14%;
  top: 66%;
  transition-delay: .25s;
}

.graph-node-2 {
  left: 37%;
  top: 48%;
  transition-delay: .55s;
}

.graph-node-3 {
  left: 61%;
  top: 34%;
  transition-delay: .85s;
}

.graph-node-4 {
  left: 82%;
  top: 18%;
  transition-delay: 1.15s;
}

.graph-outcome {
  position: absolute;
  right: 22px;
  top: 20px;
  display: grid;
  text-align: right;
}

.graph-outcome small {
  color: #7a8692;
  font-size: 9px;
  text-transform: uppercase;
}

.graph-outcome strong {
  color: #14202c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
}

.method-line::before,
.method-line::after {
  content: "";
  position: absolute;
  top: 57px;
  left: 0;
  height: 1px;
}

.method-line::before {
  right: 0;
  background: #c9ced3;
}

.method-line::after {
  width: var(--method-progress, 0%);
  background: var(--red);
  transition: width 1.4s var(--ease);
}

.method-step {
  position: relative;
  padding-right: 30px;
}

.method-step > span {
  color: #7b8690;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
}

.method-marker {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  margin: 29px 0 36px;
  border: 1px solid #8a949d;
  border-radius: 50%;
  background: var(--paper);
}

.method-marker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.method-step h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 600;
}

.method-step p {
  max-width: 245px;
  margin: 0;
  color: #65717e;
  font-size: 13px;
  line-height: 1.7;
}

.expert-section {
  padding: 0;
  background: #0a0f15;
}

.expert-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 800px;
}

.expert-photo {
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.expert-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 14, .88), transparent 45%);
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  display: grid;
}

.photo-caption span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.photo-caption strong {
  color: #959faa;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expert-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px clamp(38px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.expert-copy h2 {
  max-width: 680px;
  font-size: clamp(46px, 4.6vw, 64px);
}

.expert-intro {
  max-width: 650px;
  margin: 30px 0 38px;
  color: #aeb7c0;
  font-size: 16px;
  line-height: 1.75;
}

.expert-principles {
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
}

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

.expert-principles span {
  color: var(--red-light);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
}

.expert-principles p {
  margin: 0;
  color: #bcc4cc;
  font-size: 13px;
}

.expert-copy .button {
  width: fit-content;
}

.field-proof {
  padding: 112px 0;
  background: var(--navy);
}

.field-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.field-copy h2 {
  max-width: 570px;
}

.team-image {
  position: relative;
  margin: 0;
}

.team-image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 86px;
  height: 86px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.team-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.84) contrast(1.04);
}

.team-image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 15px;
  background: rgba(7, 10, 14, .88);
  color: #bcc5ce;
  font-size: 10px;
}

.clients {
  padding: 23px 0 27px;
  background: var(--paper);
  color: #101923;
  overflow: hidden;
  border-top: 1px solid #d9dde1;
  border-bottom: 1px solid #d9dde1;
}

.clients-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: #54616e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clients-head i {
  flex: 1;
  height: 1px;
  background: #c9ced3;
}

.logo-rail {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.logo-track,
.logo-set {
  display: flex;
  align-items: center;
}

.logo-track {
  width: max-content;
  animation: logoRail 42s linear infinite;
}

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

.logo-set figure {
  width: 154px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin: 0 9px;
  padding: 5px 7px;
  overflow: hidden;
}

.logo-set img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.reviews {
  position: relative;
  padding: 78px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 25, 35, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 25, 35, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  color: #101923;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red) 52%, transparent 88%);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .6fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
  margin-bottom: 32px;
}

.reviews-heading > div:first-child {
  position: relative;
  padding-top: 34px;
}

.reviews-heading .section-index {
  top: 0;
  color: #7d8893;
}

.reviews-heading h2 {
  max-width: 760px;
  margin-top: 12px;
  color: #101923;
  font-size: clamp(40px, 4.3vw, 58px);
}

.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0 14px 20px;
  border-left: 2px solid var(--red);
}

.rating-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Barlow Condensed", sans-serif;
}

.rating-score strong {
  color: #101923;
  font-size: 50px;
  line-height: .85;
}

.rating-score span {
  color: #6d7883;
  font-size: 17px;
  font-weight: 600;
}

.rating-stars {
  font-size: 16px;
  letter-spacing: .14em;
  background: linear-gradient(90deg, #d6a11d 0 92%, #c8ced3 92% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rating-summary p {
  margin: 5px 0 4px;
  color: #4f5c68;
  font-size: 12px;
}

.rating-note {
  display: inline-block;
  color: #101923;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfd5da;
  border-left: 1px solid #cfd5da;
}

.review-card {
  position: relative;
  min-height: 220px;
  padding: 20px 22px;
  overflow: hidden;
  border-right: 1px solid #cfd5da;
  border-bottom: 1px solid #cfd5da;
  background: rgba(255, 255, 255, .74);
  transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 16px;
  bottom: -22px;
  color: rgba(159, 24, 48, .08);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.review-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 24px 54px rgba(16, 25, 35, .12);
}

.review-card-featured {
  background:
    linear-gradient(135deg, rgba(159, 24, 48, .07), transparent 48%),
    #fff;
}

.review-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.review-card-top > div {
  display: grid;
  gap: 3px;
}

.review-card-top strong {
  color: #101923;
  font-size: 13px;
}

.review-card-top span {
  color: #6f7a85;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.review-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px !important;
  letter-spacing: 0 !important;
}

.review-avatar-red { background: var(--red); }
.review-avatar-blue { background: var(--blue); }
.review-avatar-navy { background: #17283a; }
.review-avatar-steel { background: #66717b; }

.review-source {
  display: inline-flex;
  align-items: center;
  color: #586570;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.proof-card {
  background:
    linear-gradient(135deg, rgba(36, 124, 189, .07), transparent 54%),
    rgba(255, 255, 255, .8);
}

.proof-card blockquote {
  max-width: 560px;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 24px 0 11px;
  color: #17212b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(24px, 1.85vw, 30px);
  font-weight: 600;
  line-height: 1.08;
}

.review-card > p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: -2px 0 0;
  color: #5a6671;
  font-size: 11px;
  line-height: 1.55;
}

.evaluation {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, .97), rgba(7, 10, 14, .9)),
    url("assets/nitrogen-system.png") center / cover;
}

.evaluation::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 80px 80px;
}

.evaluation-layout {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.evaluation-copy {
  position: sticky;
  top: 120px;
  padding-top: 48px;
}

.evaluation-copy .section-index {
  top: 0;
}

.evaluation-copy > p {
  max-width: 540px;
  margin: 28px 0;
  color: #aab3bd;
  font-size: 15px;
  line-height: 1.75;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.response-note > i {
  flex: 0 0 auto;
}

.response-note div {
  display: grid;
}

.response-note strong {
  font-size: 13px;
}

.response-note span {
  color: #8f99a4;
  font-size: 11px;
}

.assessment-link {
  margin-top: 28px;
  color: #d3dae1;
  line-height: 1.5;
}

.lead-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(12, 18, 25, .78);
  backdrop-filter: blur(16px);
}

.form-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -38px -38px 32px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
}

.form-top span {
  font-weight: 700;
}

.form-top strong {
  color: #77828e;
  font-weight: 500;
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: #bec6ce;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 3px;
  outline: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8d97a2 50%),
    linear-gradient(135deg, #8d97a2 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field select option {
  color: #111820;
  background: var(--white);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #636e79;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 3px rgba(97, 197, 232, .09);
}

.field small {
  display: none;
  margin-top: 7px;
  color: #ff7889;
  font-size: 10px;
}

.field.has-error input,
.field.has-error select {
  border-color: #ff5b70;
}

.field.has-error small {
  display: block;
}

.submit-button {
  width: 100%;
  margin-top: 26px;
  border: 0;
}

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

.form-privacy {
  margin: 12px 0 0;
  color: #717c87;
  font-size: 10px;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(44, 212, 124, .34);
  color: #b8f6d4;
  background: rgba(44, 212, 124, .07);
  font-size: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #ffb4bd;
  background: rgba(214, 31, 57, .08);
  border-color: rgba(214, 31, 57, .38);
}

.site-footer {
  padding: 70px 0 22px;
  background: #030507;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .6fr .8fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: #7f8994;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: #87919c;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #656f7a;
  font-size: 10px;
}

.contact-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.contact-invite {
  position: absolute;
  right: 0;
  bottom: 59px;
  width: 214px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 7px 10px 7px 7px;
  color: #13231a;
  text-align: left;
  background: #f7fff9;
  border: 1px solid rgba(32, 186, 98, .42);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  cursor: pointer;
  transform-origin: bottom right;
  animation: inviteEnter .65s 1.1s var(--ease) both, inviteFloat 3.6s 2s ease-in-out infinite;
  transition: border-color .2s ease, background .2s ease;
}

.contact-invite::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #f7fff9;
  border-right: 1px solid rgba(32, 186, 98, .42);
  border-bottom: 1px solid rgba(32, 186, 98, .42);
  transform: rotate(45deg);
}

.contact-invite:hover {
  background: #fff;
  border-color: #20ba62;
}

.contact-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  animation: avatarGreet 4.8s 2.4s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 16%;
  background: #e7eef2;
  border: 1px solid rgba(13, 74, 43, .2);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15, 60, 35, .18);
}

.contact-avatar::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  background: #20ba62;
  border: 2px solid #f7fff9;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(32, 186, 98, .16);
}

.contact-invite:hover .contact-avatar {
  animation: none;
  transform: translateY(-2px) scale(1.04);
}

.contact-invite-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.contact-invite-copy > span {
  color: #103f24;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-invite-copy small {
  color: #568064;
  font-size: 8.5px;
  line-height: 1.25;
}

.contact-trigger {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-left: auto;
  padding: 0;
  color: var(--white);
  background: #20ba62;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .34), 0 0 0 5px rgba(32, 186, 98, .12);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease;
}

.contact-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  background: #27ca6c;
}

.contact-trigger svg {
  width: 22px;
  height: 22px;
}

.contact-trigger .whatsapp-trigger-icon {
  width: 27px;
  height: 27px;
  stroke: none;
}

.chat-close-icon {
  display: none;
}

.contact-pulse {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(32, 186, 98, .62);
  border-radius: 50%;
  animation: contactPulse 2.5s ease-out infinite;
}

.contact-dock.is-open .chat-open-icon,
.contact-dock.is-open .contact-pulse,
.contact-dock.is-open .contact-invite {
  display: none;
}

.contact-dock.is-open .chat-close-icon {
  display: block;
}

.contact-panel {
  width: min(330px, calc(100vw - 28px));
  margin-bottom: 12px;
  padding: 8px;
  background: rgba(10, 15, 21, .98);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .2s ease, visibility .2s ease, transform .28s var(--ease);
}

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

.contact-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 12px 14px;
  border-bottom: 1px solid var(--line);
}

.contact-panel-head div {
  display: grid;
  gap: 2px;
}

.contact-panel-head strong {
  font-size: 12px;
}

.contact-panel-head span {
  color: #7f8994;
  font-size: 10px;
}

.contact-panel-head button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #8d97a2;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.contact-panel-head button svg {
  width: 17px;
}

.contact-panel > a {
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 10px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .2s ease;
}

.contact-panel > a:last-child {
  border-bottom: 0;
}

.contact-panel > a:hover {
  background: rgba(255, 255, 255, .055);
}

.contact-panel > a > span:nth-child(2) {
  display: grid;
}

.contact-panel > a strong {
  font-size: 12px;
}

.contact-panel > a small {
  color: #7f8994;
  font-size: 9px;
}

.channel-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
}

.channel-icon svg {
  width: 17px;
  height: 17px;
}

.channel-call {
  background: #247cbd;
}

.channel-sms {
  background: #7654c7;
}

.channel-whatsapp {
  background: #20ba62;
}

.channel-whatsapp svg {
  width: 20px;
  height: 20px;
  stroke: none;
}

.channel-email {
  background: #d24d34;
}

.channel-arrow {
  width: 15px;
  color: #66717c;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  animation: heroEnter .9s var(--ease) forwards;
}

.hero-enter:nth-child(2) { animation-delay: .08s; }
.hero-enter:nth-child(3) { animation-delay: .16s; }
.hero-enter:nth-child(4) { animation-delay: .24s; }
.hero-enter:nth-child(5) { animation-delay: .32s; }
.expert-id.hero-enter { animation-delay: .45s; }

@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBreath {
  from { filter: saturate(.96) brightness(.96); }
  to { filter: saturate(1.04) brightness(1.02); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-130px); opacity: 0; }
  18%, 82% { opacity: .55; }
  50% { transform: translateX(260px); opacity: .85; }
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes buttonShine {
  to { transform: translateX(130%); }
}

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

@keyframes contactPulse {
  0% { opacity: .85; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

@keyframes inviteEnter {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes inviteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes avatarGreet {
  0%, 72%, 100% { transform: translateY(0) rotate(0); }
  78% { transform: translateY(-2px) rotate(-2deg); }
  84% { transform: translateY(-2px) rotate(2deg); }
  90% { transform: translateY(0) rotate(0); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 1080px);
  }

  .nav {
    grid-template-columns: 220px 1fr auto auto;
    gap: 20px;
  }

  .brand img {
    width: 200px;
  }

  .main-menu {
    gap: 16px;
  }

  .main-menu a {
    font-size: 11px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .hero-copy {
    width: min(700px, 76%);
  }

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

  .expert-layout {
    grid-template-columns: .8fr 1.2fr;
  }

  .field-layout,
  .evaluation-layout {
    gap: 54px;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 68px;
  }

  .utility-inner > div span {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "brand language toggle";
  }

  .brand img {
    width: 196px;
    height: 48px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 30px);
  }

  .language-switch button {
    height: 26px;
    font-size: 9px;
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform .25s ease;
  }

  .menu-toggle > span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle > span:nth-child(2) {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .main-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 24px;
    background: rgba(7, 10, 14, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
  }

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

  .main-menu a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
  }

  .main-menu a::after,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 120px);
  }

  .hero-image {
    background-image:
      linear-gradient(90deg, rgba(7, 10, 14, .97) 0%, rgba(7, 10, 14, .78) 58%, rgba(7, 10, 14, .22)),
      linear-gradient(0deg, rgba(7, 10, 14, .94) 0%, transparent 45%),
      url("assets/team.jpeg");
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: 43% 48%;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image::after {
    background: linear-gradient(90deg, rgba(36, 124, 189, .08), transparent 42%, rgba(159, 24, 48, .08));
    mix-blend-mode: screen;
  }

  .hero-copy {
    width: 92%;
  }

  .hero h1 {
    font-size: clamp(55px, 11vw, 78px);
  }

  .expert-id,
  .scroll-cue {
    display: none;
  }

  .diagnostic-grid,
  .section-heading,
  .solution-stage,
  .expert-layout,
  .field-layout,
  .reviews-heading,
  .evaluation-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-heading {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .diagnostic-copy {
    padding-left: 0;
  }

  .section-heading {
    gap: 24px;
  }

  .solution-stage {
    border-bottom: 0;
  }

  .solution-visual {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-list {
    min-height: 480px;
  }

  .film-content blockquote {
    width: 100%;
  }

  .method-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
  }

  .method-graph {
    height: 300px;
  }

  .method-line::before,
  .method-line::after {
    display: none;
  }

  .expert-photo {
    min-height: 660px;
  }

  .expert-copy {
    padding: 76px 0;
  }

  .field-layout {
    gap: 48px;
  }

  .field-copy h2 {
    max-width: 760px;
  }

  .reviews-heading {
    gap: 34px;
  }

  .rating-summary {
    max-width: 480px;
  }

  .evaluation-copy {
    position: relative;
    top: auto;
    padding-top: 38px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 26px);
    --header-height: 64px;
  }

  .utility-bar {
    height: 24px;
    font-size: 10px;
  }

  .utility-inner {
    justify-content: center;
  }

  .availability {
    display: none;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand img {
    width: 158px;
    height: 42px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 27px);
    padding: 2px;
  }

  .language-switch button {
    height: 24px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(7, 10, 14, .04) 0%, rgba(7, 10, 14, .08) 24%, rgba(7, 10, 14, .66) 38%, rgba(7, 10, 14, .96) 48%, #070a0e 62%),
      url("assets/team.jpeg");
    background-size: cover, 100% auto;
    background-position: center, center top;
    background-color: var(--ink);
  }

  .hero-inner {
    min-height: 0;
    align-items: flex-start;
    padding: 75vw 0 88px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 8px;
    line-height: 1.35;
  }

  .eyebrow::before,
  .eyebrow i {
    display: none;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 48px;
    line-height: .94;
  }

  .hero-lead {
    max-width: 350px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

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

  .hero-actions .button-quiet {
    display: none;
  }

  .hero-actions .button-red {
    min-height: 52px;
    justify-content: space-between;
    padding-inline: 18px 12px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-gridline,
  .hero-scan {
    display: none;
  }

  .diagnostic-grid {
    min-height: auto;
  }

  .diagnostic-heading,
  .diagnostic-copy {
    padding-block: 54px;
  }

  .diagnostic-heading {
    padding-top: 72px;
  }

  .diagnostic-heading h2,
  .section-heading h2,
  .expert-copy h2,
  .field-copy h2,
  .reviews-heading h2,
  .evaluation-copy h2 {
    font-size: 39px;
    line-height: .98;
  }

  .solutions,
  .method {
    padding: 66px 0;
  }

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

  .solution-visual {
    min-height: 310px;
  }

  .solution-item {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    padding: 24px 16px;
  }

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

  .solution-item p {
    font-size: 11px;
  }

  .film-section {
    min-height: 560px;
  }

  .film-content blockquote {
    margin: 46px 0 54px;
    font-size: 40px;
    line-height: 1;
  }

  .film-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
  }

  .method-line {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .method-graph {
    height: 240px;
    margin-bottom: 46px;
  }

  .graph-plot {
    inset: 44px 18px 42px 42px;
    width: calc(100% - 60px);
    height: calc(100% - 86px);
  }

  .graph-axis-y {
    left: 8px;
  }

  .graph-axis-x {
    left: 42px;
  }

  .graph-node {
    font-size: 10px;
  }

  .graph-node-1 { left: 12%; }
  .graph-node-2 { left: 34%; }
  .graph-node-3 { left: 57%; }
  .graph-node-4 { left: 77%; }

  .graph-outcome {
    right: 10px;
    top: 12px;
  }

  .graph-outcome strong {
    font-size: 17px;
  }

  .method-marker {
    margin: 16px 0 22px;
  }

  .expert-photo {
    min-height: 460px;
  }

  .expert-copy {
    padding: 56px 0;
  }

  .field-proof,
  .evaluation {
    padding: 66px 0;
  }

  .reviews {
    padding: 52px 0;
  }

  .reviews-heading {
    margin-bottom: 25px;
  }

  .reviews-heading > div:first-child {
    padding-top: 34px;
  }

  .rating-summary {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 16px 0 16px 16px;
  }

  .rating-score strong {
    font-size: 48px;
  }

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

  .review-card {
    min-height: 0;
    padding: 19px 18px 20px;
  }

  .review-card-top {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .review-avatar {
    width: 38px;
    height: 38px;
  }

  .review-source {
    grid-column: 2;
    justify-self: start;
  }

  .review-card blockquote {
    margin-top: 23px;
    font-size: 26px;
  }

  .team-image::before {
    top: -10px;
    left: -8px;
  }

  .clients {
    padding: 18px 0 21px;
  }

  .clients-head {
    gap: 12px;
    margin-bottom: 11px;
    font-size: 8px;
  }

  .logo-rail {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
  }

  .logo-track {
    animation-duration: 36s;
  }

  .logo-set figure {
    width: 132px;
    height: 57px;
    margin: 0 6px;
    padding: 4px 6px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .form-top {
    margin: -24px -18px 26px;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .contact-dock {
    right: 12px;
    bottom: 12px;
  }

  .contact-invite {
    width: 174px;
    bottom: 52px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px;
    padding: 5px 8px 5px 5px;
  }

  .contact-avatar {
    width: 34px;
    height: 34px;
  }

  .contact-invite-copy > span {
    font-size: 10px;
    line-height: 1.15;
  }

  .contact-invite-copy small {
    display: none;
  }

  .contact-trigger {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 370px) {
  .brand img {
    width: 146px;
  }

  .hero h1 {
    font-size: 44px;
  }
}

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

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

  .reveal,
  .hero-enter {
    opacity: 1;
    transform: none;
  }
}
