:root {
  --ink: #101722;
  --ink-soft: #3b4650;
  --muted: #6f787c;
  --paper: #eef0f2;
  --paper-soft: #eef0f2;
  --white: #ffffff;
  --green-black: #00301d;
  --green-deep: #006039;
  --green: #006039;
  --green-2: #006039;
  --green-light: #c8e4d3;
  --yellow: #e6af2e;
  --blue: #2f3061;
  --indigo: #ef767a;
  --line: rgba(16, 23, 34, 0.12);
  --shadow-soft: 0 18px 44px rgba(16, 23, 34, 0.08);
  --shadow-dark: 0 24px 72px rgba(0, 20, 13, 0.22);
  --site-max: 1180px;
  --site-gutter: 32px;
  --nav-height: 84px;
  --section-y: 112px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.text-13 {
  font-size: 13px;
}

.section-title,
.hero-title,
.fast-facts-kicker,
.stat-num,
.bm-entry-title h3,
.pt-title,
.contact-title {
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  letter-spacing: 0;
}

.section-title {
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 700;
}

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

.reveal.visible,
.bar-animate.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 170ms;
}

.reveal-delay-3 {
  transition-delay: 250ms;
}

#main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 92px;
  color: #fff;
  background: transparent;
  transform: translateZ(0);
  will-change: transform;
}

#main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 20, 13, 0.96);
  box-shadow: 0 14px 40px rgba(0, 20, 13, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

#main-nav > * {
  position: relative;
  z-index: 1;
}

body.scrolled #main-nav,
body.menu-open #main-nav {
  background: transparent;
}

body.scrolled #main-nav::before,
body.menu-open #main-nav::before {
  opacity: 1;
}

.nav-brand {
  width: max-content;
  min-width: 0;
}

.nav-logo {
  width: auto;
  height: 50px;
  transform: translateZ(0);
}

.nav-links {
  justify-self: center;
}

.nav-actions {
  justify-self: end;
  gap: 16px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
}

.nav-link:hover {
  color: #fff;
}

.nav-phone {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-phone svg {
  opacity: 0.9;
}

.nav-phone:hover {
  color: #fff;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.flag-wrap {
  width: 25px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.flag-wrap svg {
  width: 100%;
  height: 100%;
}

.lang-code {
  font-size: 12px;
  font-weight: 700;
}

.lang-chevron,
.mobile-lang-chev {
  transition: transform 180ms ease;
}

.lang-switch.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  padding: 8px;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 20, 13, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lang-switch.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.lang-option,
.mobile-lang-item {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.lang-option:hover,
.mobile-lang-item:hover {
  background: rgba(0, 96, 57, 0.08);
}

.lang-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
}

.lang-check {
  color: var(--green);
  margin-left: auto;
}

.burger-btn {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.burger-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger-btn.is-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 380ms, opacity 0s linear 380ms;
}

#mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 20, 13, 0.58);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu.open .mobile-backdrop {
  opacity: 1;
}

.mobile-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 86vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 24px calc(28px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 -18px 54px rgba(0, 20, 13, 0.24);
  transform: translateY(104%);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu.open .mobile-sheet {
  transform: translateY(0);
}

.mobile-sheet-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.mobile-sheet-close:hover {
  background: var(--paper);
  transform: scale(1.04);
}

.mobile-sheet-handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(16, 23, 34, 0.18);
}

.mobile-sheet-nav {
  display: grid;
  gap: 0;
  padding-top: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0;
  border-bottom: 1px solid rgba(16, 23, 34, 0.11);
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1), color 160ms ease;
}

.mobile-nav-link:hover {
  color: var(--green);
}

#mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: none;
}

#mobile-menu.open .mobile-sheet-nav .mobile-nav-link:nth-child(1) { transition-delay: 70ms; }
#mobile-menu.open .mobile-sheet-nav .mobile-nav-link:nth-child(2) { transition-delay: 120ms; }
#mobile-menu.open .mobile-sheet-nav .mobile-nav-link:nth-child(3) { transition-delay: 170ms; }
#mobile-menu.open .mobile-sheet-nav .mobile-nav-link:nth-child(4) { transition-delay: 220ms; }
#mobile-menu.open .mobile-sheet-nav .mobile-nav-link:nth-child(5) { transition-delay: 270ms; }

.mobile-sheet-nav .mobile-nav-link:last-child {
  border-bottom: 0;
}

.mobile-sheet-divider {
  height: 1px;
  margin: 14px 0 10px;
  background: rgba(16, 23, 34, 0.12);
  opacity: 0;
  transition: opacity 260ms ease 240ms;
}

#mobile-menu.open .mobile-sheet-divider {
  opacity: 1;
}

.mobile-lang {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu.open .mobile-lang {
  opacity: 1;
  transform: none;
  transition-delay: 360ms;
}

.mobile-lang-summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(16, 23, 34, 0.12);
  border-radius: 12px;
  background: var(--paper-soft);
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.mobile-lang-summary::-webkit-details-marker {
  display: none;
}

.mobile-lang[open] .mobile-lang-chev {
  transform: rotate(180deg);
}

.mobile-lang[open] .mobile-lang-summary {
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 20, 13, 0.1);
}

.mobile-lang-current {
  flex: 1;
  font-weight: 700;
}

.mobile-lang-options {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 4;
  width: min(238px, calc(100vw - 48px));
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 20, 13, 0.16);
  transform: translateY(6px);
  transform-origin: left bottom;
}

.mobile-lang-item {
  min-height: 36px;
  color: rgba(16, 23, 34, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.mobile-lang-item:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.mobile-lang-item.is-active {
  background: var(--paper-soft);
  color: var(--ink);
}

.mobile-sheet-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 23, 34, 0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu.open .mobile-sheet-contact {
  opacity: 1;
  transform: none;
  transition-delay: 220ms;
}

.mobile-contact-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(16, 23, 34, 0.46);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-contact-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(16, 23, 34, 0.12);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 20, 13, 0.06);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.mobile-contact-phone svg {
  flex: 0 0 auto;
  color: var(--green);
}

.mobile-contact-phone:hover {
  transform: translateY(-1px);
  background: #fff;
  color: var(--green);
}

.hero-bg {
  color: #fff;
  background-color: var(--green-deep);
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 920px;
  display: flex;
  flex-direction: column;
  background-color: var(--green-black);
  background-image:
    linear-gradient(118deg, rgba(0, 13, 8, 1) 0%, rgba(0, 48, 29, 0.98) 52%, rgba(0, 96, 57, 0.82) 100%),
    radial-gradient(ellipse at 78% 28%, rgba(238, 240, 242, 0.12), transparent 46%);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 26, 16, 0.9) 0%, rgba(0, 96, 57, 0.72) 48%, rgba(0, 96, 57, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 26, 16, 0.14) 0%, rgba(0, 26, 16, 0.06) 48%, rgba(0, 26, 16, 0.38) 100%),
    linear-gradient(rgba(0, 96, 57, 0.2), rgba(0, 96, 57, 0.2));
  mix-blend-mode: multiply;
}

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

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.04);
}

.hero-section > .relative.z-10,
.trusted-bar,
.fast-facts-bg > .relative.z-10,
.one-system-section > .relative.z-10,
.pricing-tease-section > .relative.z-10,
.contact-section > .relative.z-10,
footer > .relative.z-10 {
  position: relative;
  z-index: 2;
}

.hero-glow,
.fast-facts-glow,
.pt-glow,
.contact-section-glow {
  display: none;
}

.hero-section > .relative.z-10.flex-1 {
  padding-top: 154px;
  padding-bottom: 84px;
}

.hero-grid {
  display: grid;
}

.hero-text-col {
  max-width: 1120px;
  text-shadow: 0 2px 24px rgba(0, 16, 10, 0.22);
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title {
  max-width: 30ch;
  font-size: 96px;
  line-height: 1.01;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  line-height: 1.36;
}

.hero-fade {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFade 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-fade-d1 { animation-delay: 90ms; }
.hero-fade-d2 { animation-delay: 170ms; }
.hero-fade-d3 { animation-delay: 250ms; }
.hero-fade-d4 { animation-delay: 330ms; }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: #1b1d1c;
}

.btn-primary:hover {
  background: var(--yellow);
}

.btn-ghost {
  background: #fff;
  color: #242827;
}

.btn-ghost:hover {
  background: var(--paper);
}

.trusted-bar {
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 24px;
  background: var(--paper-soft);
  color: var(--ink);
}

.trusted-row {
  display: flex;
  align-items: center;
  gap: 46px;
}

.trusted-label {
  margin: 0;
  color: rgba(16, 23, 34, 0.78);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.trusted-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.trusted-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: trustedScroll 34s linear infinite;
}

.trusted-group {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 76px;
  padding-right: 76px;
}

.trusted-group + .trusted-group {
  display: flex;
}

.trusted-logo {
  width: auto;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

.logo-telia { width: 96px; }
.logo-telenor { width: 70px; }
.logo-trygghansa { width: 118px; }
.logo-finnair { width: 128px; }

@keyframes trustedScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
}

#about {
  background: #fff;
  padding-bottom: 72px;
}

#about > .max-w-6xl,
.fast-facts-bg > .relative.z-10,
#use-cases > .max-w-6xl,
#solutions > .max-w-6xl,
.pricing-tease-section .max-w-6xl,
.contact-section .max-w-6xl,
footer > .relative.z-10 {
  width: min(var(--site-max), calc(100% - (var(--site-gutter) * 2)));
  max-width: var(--site-max);
}

#about,
.fast-facts-bg,
#use-cases,
#solutions,
.pricing-tease-section,
.contact-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.pricing-tease-section > .relative.z-10,
.contact-section > .relative.z-10 {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#about .section-title {
  max-width: 11ch;
}

.about-para {
  margin: 0;
  color: rgba(16, 23, 34, 0.72);
  font-size: 20px;
  line-height: 1.52;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  min-height: 84px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: 22px;
  border-left: 1px solid rgba(16, 23, 34, 0.1);
}

.about-facts > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.af-key {
  color: rgba(16, 23, 34, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.af-val {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.fast-facts-bg {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #fff;
  background-color: var(--green-black);
  background-image:
    linear-gradient(118deg, rgba(0, 8, 5, 1) 0%, rgba(0, 28, 16, 0.92) 18%, rgba(0, 64, 38, 0.85) 42%, rgba(0, 96, 57, 0.7) 70%, rgba(0, 110, 66, 0.52) 100%),
    radial-gradient(ellipse at 78% 14%, rgba(220, 232, 226, 0.3), transparent 52%);
  background-blend-mode: normal, screen;
  background-size: auto, auto;
  background-position: center, center;
  padding-top: 58px;
  padding-bottom: 64px;
}

.section-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.fast-facts-bg-image {
  object-position: 48% 24%;
  mix-blend-mode: multiply;
  opacity: 0.14;
}

.fast-facts-kicker {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.fast-facts-head {
  margin-bottom: 24px;
}

.fast-facts-bg > .relative.z-10 > .flex > .max-w-xl {
  max-width: 660px;
}

.fast-facts-bg .section-title {
  max-width: 680px;
  color: #fff;
}

.fast-facts-bg .text-white\/50,
.fast-facts-bg .text-sm,
.fast-facts-bg .text-15 {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
  margin-top: 22px;
}

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

.stat-cell {
  position: relative;
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(0, 30, 18, 0.28));
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 20, 13, 0.18);
  backdrop-filter: blur(2px);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-cell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(230, 175, 46, 0.18), rgba(255, 255, 255, 0.03) 46%, rgba(255, 255, 255, 0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.stat-cell > * {
  position: relative;
  z-index: 1;
}

.stat-cell:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 30, 18, 0.18));
  box-shadow: 0 24px 54px rgba(0, 20, 13, 0.24);
}

.stat-cell:hover::before {
  opacity: 1;
}

.stat-num {
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 0.95;
  font-weight: 700;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), text-shadow 220ms ease;
}

.stat-num.is-counting {
  transform: translateY(-2px);
  text-shadow: 0 10px 24px rgba(230, 175, 46, 0.18);
}

.stat-num span {
  font-size: 0.48em;
}

.stat-lbl,
.stat-src {
  margin: 0;
}

.stat-lbl {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.stat-src {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.2;
}

.benchmark-section {
  background: var(--paper);
}

.benchmark-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 48px;
  align-items: center;
  max-width: none;
  margin-bottom: 44px;
}

.benchmark-copy {
  max-width: none;
}

.benchmark-section .section-title {
  max-width: 720px;
}

.benchmark-lede,
.benchmark-section .text-gray-600 {
  color: rgba(16, 23, 34, 0.64);
  font-size: 16px;
  line-height: 1.62;
  margin: 20px 0 0;
  max-width: 620px;
  justify-self: start;
}

.benchmark-icon-card {
  width: min(270px, 100%);
  min-height: 250px;
  display: grid;
  place-items: center;
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(16, 23, 34, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.08);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.benchmark-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(16, 23, 34, 0.12);
}

.benchmark-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 18px 34px rgba(0, 96, 57, 0.1));
}

.bm-ledger {
  display: grid;
  gap: 28px;
}

.bm-entry {
  padding: 34px 36px 36px;
  border: 1px solid rgba(16, 23, 34, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.08);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bm-entry:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 96, 57, 0.22);
  box-shadow: 0 24px 62px rgba(16, 23, 34, 0.12);
}

.bm-entry-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.bm-entry-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
}

.bm-entry-delta {
  min-width: 118px;
  display: grid;
  justify-items: end;
  gap: 2px;
  padding-left: 22px;
  border-left: 1px solid rgba(16, 23, 34, 0.12);
  color: var(--green);
  text-align: right;
}

.d-num {
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 42px;
  line-height: 0.9;
  font-weight: 700;
}

.d-num span {
  font-size: 0.46em;
}

.d-key {
  color: rgba(0, 96, 57, 0.76);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.bm-entry-body {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(280px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.bm-entry:nth-child(even) .bm-entry-body {
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.08fr);
}

.bm-entry-desc {
  order: 2;
}

.bm-entry-list {
  order: 1;
}

.bm-entry:nth-child(even) .bm-entry-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.bm-entry:nth-child(even) .bm-entry-title {
  order: initial;
  display: flex;
  justify-content: flex-start;
}

.bm-entry:nth-child(even) .bm-entry-title h3 {
  text-align: left;
}

.bm-entry:nth-child(even) .bm-entry-delta {
  order: initial;
  justify-items: end;
  padding-left: 22px;
  padding-right: 0;
  border-left: 1px solid rgba(16, 23, 34, 0.12);
  border-right: 0;
  text-align: right;
}

.bm-entry:nth-child(even) .bm-entry-desc {
  order: 1;
}

.bm-entry:nth-child(even) .bm-entry-list {
  order: 2;
}

.bm-entry-desc {
  margin: 0;
  color: rgba(16, 23, 34, 0.64);
  font-size: 17px;
  line-height: 1.58;
  max-width: 440px;
}

.bm-entry-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 4px 0;
}

.bm-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 16px;
}

.bm-line dt,
.bm-line-val {
  color: rgba(16, 23, 34, 0.7);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.bm-line.is-winner dt,
.bm-line.is-winner .bm-line-val {
  color: var(--green);
}

.bm-line-logo {
  width: 76px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(58%) saturate(975%) hue-rotate(112deg) brightness(91%) contrast(94%);
}

.bm-line-bar {
  height: 12px;
  margin: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 23, 34, 0.09);
  box-shadow: inset 0 1px 2px rgba(16, 23, 34, 0.1);
}

.bm-line-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bm-line-fill.visible,
.bm-line-fill.bar-animate.visible {
  transform: scaleX(1);
}

.bar-animate-d1 { transition-delay: 90ms; }
.bar-animate-d2 { transition-delay: 180ms; }
.bar-animate-d3 { transition-delay: 270ms; }

.bm-fill-w-100 { width: 100%; }
.bm-fill-w-80 { width: 80%; }
.bm-fill-w-78 { width: 78%; }
.bm-fill-w-74 { width: 74%; }
.bm-fill-w-69 { width: 69%; }
.bm-fill-w-68 { width: 68%; }
.bm-fill-w-56 { width: 56%; }
.bm-fill-w-55 { width: 55%; }
.bm-fill-c-green { background: var(--green-2); }
.bm-fill-c-blue { background: #0c67a3; }
.bm-fill-c-purple { background: #303797; }

#solutions,
.facts-review-section {
  background: #fff;
}

.fr-review-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
  margin: 0 0 46px;
}

.fr-review-feature::before {
  content: "";
  position: absolute;
  left: -34px;
  right: -34px;
  top: 72%;
  height: 72px;
  z-index: 0;
  border-radius: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.fr-review-image-wrap,
.fr-review-panel {
  position: relative;
  z-index: 1;
  min-height: 520px;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-review-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.fr-review-feature:hover .fr-review-image-wrap,
.fr-review-feature:hover .fr-review-panel {
  transform: translateY(-7px);
  border-color: rgba(0, 96, 57, 0.2);
  box-shadow: 0 28px 68px rgba(16, 23, 34, 0.12);
}

.fr-review-feature:hover .fr-review-image {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

.fr-review-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 42px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.07);
}

.fr-kicker,
.fr-data-label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--green);
}

.fr-review-name {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.fr-review-panel blockquote {
  position: relative;
  max-width: 15ch;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
}

.fr-review-panel blockquote::after {
  content: "”";
  position: absolute;
  right: 0;
  top: -72px;
  color: rgba(16, 23, 34, 0.18);
  font-size: 112px;
  line-height: 1;
}

.fr-review-company {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.fr-review-text {
  max-width: 68ch;
  margin: 0;
  color: rgba(16, 23, 34, 0.66);
  font-size: 14.5px;
  line-height: 1.58;
}

.fr-facts-block {
  display: grid;
  padding: 8px 4px 10px;
}

.fr-kicker {
  color: var(--green);
  margin-bottom: 14px;
}

.fr-facts-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.facts-review-section .section-title {
  max-width: 720px;
  font-size: 48px;
}

.fr-facts-copy {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  gap: 0;
  margin: 26px 0 0;
}

.fr-facts-copy p {
  margin: 0;
  color: rgba(16, 23, 34, 0.66);
  font-size: 16px;
  line-height: 1.62;
}

.fr-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 42px;
}

.fr-data-card {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-top: 3px solid rgba(0, 96, 57, 0.68);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, rgba(248, 250, 249, 0.96) 100%);
  box-shadow: 0 14px 40px rgba(16, 23, 34, 0.055);
  text-align: left;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-data-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(0, 96, 57, 0.09), rgba(230, 175, 46, 0.12));
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.fr-data-card > * {
  position: relative;
  z-index: 1;
}

.fr-data-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 96, 57, 0.22);
  box-shadow: 0 26px 62px rgba(16, 23, 34, 0.12);
}

.fr-data-card:hover::before {
  opacity: 1;
}

.fr-data-card h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.fr-data-card p {
  margin: 0;
  color: rgba(16, 23, 34, 0.62);
  font-size: 14px;
  line-height: 1.58;
}

.fr-donut {
  width: 136px;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
  background:
    radial-gradient(circle, #fff 0 48%, transparent 49%),
    conic-gradient(var(--green) 0 46%, var(--yellow) 46% 68%, var(--blue) 68% 86%, var(--indigo) 86% 100%);
}

.fr-data-card:hover .fr-donut {
  transform: scale(1.06);
  filter: drop-shadow(0 14px 22px rgba(0, 96, 57, 0.16));
}

.fr-donut-b {
  background:
    radial-gradient(circle, #fff 0 48%, transparent 49%),
    conic-gradient(var(--green) 0 58%, var(--yellow) 58% 76%, var(--blue) 76% 91%, var(--indigo) 91% 100%);
}

.fr-donut-c {
  background:
    radial-gradient(circle, #fff 0 48%, transparent 49%),
    conic-gradient(var(--green) 0 50%, var(--yellow) 50% 70%, var(--blue) 70% 88%, var(--indigo) 88% 100%);
}

.fr-data-value {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.fr-data-label {
  max-width: 20ch;
  color: rgba(16, 23, 34, 0.58);
}

.fr-stack {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.6fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.fr-stack-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  text-align: left;
}

.fr-stack-head .fr-kicker {
  margin: 0 0 14px;
  color: var(--green);
}

.fr-stack-head h3 {
  max-width: 16ch;
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.fr-stack-head p:not(.fr-kicker) {
  max-width: 38ch;
  margin: 18px 0 0;
  color: rgba(16, 23, 34, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

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

.fr-stack-item {
  min-height: 0;
  display: grid;
  align-content: start;
  padding: 22px 24px;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 23, 34, 0.06);
}

.fr-stack-item span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fr-stack-item p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.fr-stack-item small {
  display: block;
  margin-top: 10px;
  color: rgba(16, 23, 34, 0.62);
  font-size: 13.5px;
  line-height: 1.5;
}

.one-system-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: var(--paper);
}

.one-system-bg-image {
  display: none;
}

.synergy-head {
  max-width: 780px;
}

.synergy-kicker,
.synergy-card-kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.synergy-head h2 {
  max-width: 21ch;
  margin: 0;
  color: var(--ink);
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 800;
}

.synergy-head p:not(.synergy-kicker) {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(16, 23, 34, 0.62);
  font-size: 17px;
  line-height: 1.55;
}

.synergy-engine {
  position: relative;
  isolation: isolate;
  margin-top: 40px;
}

.synergy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 3;
}

.synergy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 23, 34, 0.075);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms ease,
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.synergy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 96, 57, 0.22);
  box-shadow: 0 24px 54px rgba(16, 23, 34, 0.11);
}

.synergy-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 96, 57, 0.08);
  color: var(--green);
  margin-bottom: 20px;
}

.synergy-icon svg {
  width: 26px;
  height: 26px;
}

.synergy-card-kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.synergy-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}

.synergy-card > p {
  margin: 0 0 20px;
  color: rgba(16, 23, 34, 0.58);
  font-size: 15px;
  line-height: 1.58;
}

.synergy-link {
  display: none;
  position: relative;
}

.synergy-link.reveal {
  opacity: 1;
  transform: none;
}

.synergy-link-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.synergy-link-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.synergy-link.visible .synergy-link-path {
  stroke-dashoffset: 0;
}

.synergy-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--green);
  transform: translate(-50%, 0) scale(0.4);
  opacity: 0;
  transition: opacity 400ms ease 700ms,
              transform 500ms cubic-bezier(0.22, 1, 0.36, 1) 700ms;
}

.synergy-link.visible::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.synergy-beam-mobile {
  display: none;
}

.synergy-card-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 96, 57, 0.16);
}

.synergy-card-tag strong {
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.synergy-card-tag span {
  color: rgba(16, 23, 34, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.synergy-flow {
  position: relative;
  height: 108px;
  margin: 0;
  z-index: 1;
  overflow: visible;
}

.synergy-flow.reveal {
  opacity: 1;
  transform: none;
}

.synergy-flow-svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.synergy-track {
  opacity: 0.1;
  transition: opacity 600ms ease;
}

.synergy-flow.visible .synergy-track {
  opacity: 0.18;
}

.synergy-beam {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.synergy-flow.visible .synergy-beam {
  stroke-dashoffset: 0;
}

.synergy-flow.visible .synergy-beam-1 { transition-delay: 100ms; }
.synergy-flow.visible .synergy-beam-2 { transition-delay: 200ms; }
.synergy-flow.visible .synergy-beam-3 { transition-delay: 300ms; }

.synergy-flow-core {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--green);
  transform: translate(-50%, 0) scale(0);
  opacity: 0;
  transition: opacity 320ms ease 800ms,
              transform 480ms cubic-bezier(0.22, 1, 0.36, 1) 800ms;
}

.synergy-flow-core::after {
  content: none;
}

.synergy-flow.visible .synergy-flow-core {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.synergy-outcome {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 36px 30px;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.94) 100%);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(16, 23, 34, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, auto);
  gap: 24px;
  align-items: center;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms ease;
}

.synergy-frame-line {
  position: absolute;
  display: block;
  background: var(--green);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.synergy-frame-line-top,
.synergy-frame-line-bottom {
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
}

.synergy-frame-line-right,
.synergy-frame-line-left {
  top: 0;
  bottom: 0;
  width: 2px;
  transform: scaleY(0);
}

.synergy-frame-line-top {
  top: 0;
  transform-origin: center center;
}

.synergy-frame-line-right {
  right: 0;
  transform-origin: center top;
}

.synergy-frame-line-bottom {
  bottom: 0;
  background: transparent;
  opacity: 1;
  transform: none;
}

.synergy-frame-line-bottom::before,
.synergy-frame-line-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  background: var(--green);
  opacity: 0.72;
  transform: scaleX(0);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.synergy-frame-line-bottom::before {
  left: 0;
  transform-origin: left center;
}

.synergy-frame-line-bottom::after {
  right: 0;
  transform-origin: right center;
}

.synergy-frame-line-left {
  left: 0;
  transform-origin: center top;
}

.synergy-outcome.visible .synergy-frame-line-top {
  transform: scaleX(1);
  transition-delay: 900ms;
}

.synergy-outcome.visible .synergy-frame-line-right {
  transform: scaleY(1);
  transition-delay: 1350ms;
}

.synergy-outcome.visible .synergy-frame-line-left {
  transform: scaleY(1);
  transition-delay: 1350ms;
}

.synergy-outcome.visible .synergy-frame-line-bottom::before,
.synergy-outcome.visible .synergy-frame-line-bottom::after {
  transform: scaleX(1);
  transition-delay: 2050ms;
}

.synergy-outcome::after {
  content: none;
}

.synergy-outcome > * {
  position: relative;
  z-index: 1;
}

.synergy-outcome .synergy-frame-line {
  position: absolute;
  z-index: 0;
}

.synergy-outcome:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 96, 57, 0.18);
  box-shadow: 0 30px 68px rgba(16, 23, 34, 0.14);
}

.synergy-outcome-head {
  min-width: 0;
}

.synergy-outcome-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.synergy-outcome h3 {
  margin: 0 0 12px;
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.synergy-outcome-head p {
  margin: 0;
  color: rgba(16, 23, 34, 0.62);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
}

.synergy-outcome-formula {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 18px;
  justify-content: end;
  padding-left: 22px;
  border-left: 1px solid rgba(16, 23, 34, 0.1);
}

.synergy-outcome-metric {
  text-align: center;
}

.synergy-outcome-metric strong {
  display: block;
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 40px;
  line-height: 0.95;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.synergy-outcome-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(16, 23, 34, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.synergy-outcome-op {
  font-family: "Roboto Condensed", Manrope, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(0, 96, 57, 0.44);
  line-height: 1;
}

.pricing-tease-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #fff;
  background-color: var(--green-black);
  background-image:
    linear-gradient(118deg, rgba(0, 48, 29, 0.98) 0%, rgba(0, 96, 57, 0.9) 52%, rgba(0, 96, 57, 0.72) 100%),
    radial-gradient(ellipse at 76% 26%, rgba(167, 208, 189, 0.16), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 108px);
  background-blend-mode: normal, screen, screen;
  background-size: auto, auto, auto;
  background-position: center, center, center;
}

.pricing-bg-image {
  object-position: 50% 32%;
  mix-blend-mode: multiply;
  opacity: 0.14;
}

.pt-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.pt-eyebrow {
  margin: 0 0 12px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-title {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 700;
}

.pt-sub {
  max-width: 54ch;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.pt-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease;
}

.pt-link:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.pt-proof {
  display: grid;
  gap: 12px;
}

.pt-proof-item {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(0, 96, 57, 0.22));
  box-shadow: 0 18px 52px rgba(0, 20, 13, 0.16);
  backdrop-filter: blur(2px);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, background 280ms ease, box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-proof-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(230, 175, 46, 0.16), rgba(255, 255, 255, 0.04) 52%, rgba(255, 255, 255, 0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.pt-proof-item > * {
  position: relative;
  z-index: 1;
}

.pt-proof-item:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 96, 57, 0.16));
  box-shadow: 0 28px 68px rgba(0, 20, 13, 0.26);
}

.pt-proof-item:hover::before {
  opacity: 1;
}

.pt-proof-k {
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-proof-v {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.pt-proof-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.contact-section {
  position: relative;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.contact-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-title {
  margin: 0;
  max-width: 14ch;
  color: var(--ink);
  font-size: 66px;
  line-height: 0.98;
  font-weight: 700;
}

.contact-sub {
  max-width: 48ch;
  margin: 24px 0 28px;
  color: rgba(16, 23, 34, 0.64);
  font-size: 17px;
  line-height: 1.6;
}

.contact-bullets {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.contact-bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(16, 23, 34, 0.72);
  font-size: 15px;
  line-height: 1.44;
}

.bullet-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 96, 57, 0.1);
  color: var(--green);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.contact-method {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 8px;
  background: var(--paper-soft);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, background 240ms ease, box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-method-live {
  position: relative;
  overflow: hidden;
  border-color: rgba(0, 96, 57, 0.18);
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 23, 34, 0.055);
}

.contact-method-live::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 96, 57, 0.16), rgba(0, 96, 57, 0.82), rgba(0, 96, 57, 0.16));
  background-size: 180% 100%;
  animation: responseSweep 1800ms ease-in-out infinite;
}

@keyframes responseSweep {
  0% {
    background-position: 100% 0;
    opacity: 0.38;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: 0 0;
    opacity: 0.38;
  }
}

.contact-method:hover,
.contact-method:not(.contact-method-plain):hover {
  transform: translateY(-5px);
  border-color: rgba(0, 96, 57, 0.34);
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 23, 34, 0.09);
}

.cm-k {
  color: rgba(16, 23, 34, 0.44);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cm-v {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.contact-method-live .cm-v {
  color: var(--green);
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.form-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 96, 57, 0.2);
  box-shadow: 0 28px 68px rgba(16, 23, 34, 0.13);
}

.form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.form-card-title {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.form-card-meta {
  color: rgba(16, 23, 34, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  max-width: 100%;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

#contact-form .g-recaptcha {
  max-width: 100%;
  transform-origin: left center;
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}

.field {
  display: grid;
  gap: 7px;
}

.field-label {
  color: rgba(16, 23, 34, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 23, 34, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 126px;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(0, 96, 57, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 96, 57, 0.08);
}

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

.form-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.form-submit {
  min-height: 50px;
}

.form-note {
  margin: 0;
  color: rgba(16, 23, 34, 0.54);
  font-size: 13px;
  line-height: 1.4;
}

.footer-photo {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-top: 2px solid #fff;
  background: #0a0d0c;
}

.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(1) contrast(1.12) brightness(0.86);
}

footer.hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 32px;
  color: #fff;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(116deg, rgba(0, 96, 57, 0.98) 0%, rgba(0, 96, 57, 0.94) 58%, rgba(0, 48, 29, 0.98) 100%),
    radial-gradient(ellipse at 68% 18%, rgba(167, 208, 189, 0.16), transparent 46%);
  background-blend-mode: normal, screen;
  background-size: auto, auto;
  background-position: center, center;
}

.footer-bg-image {
  object-position: 54% 34%;
  mix-blend-mode: multiply;
  opacity: 0.12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.7fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  filter: none;
}

.footer-tag {
  max-width: 27ch;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.footer-mark {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-h {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 800;
}

.footer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a,
.footer-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-list a:hover,
.footer-link:hover {
  color: #fff;
}

.footer-col-contact {
  display: grid;
}

.footer-newsletter {
  margin-top: 30px;
}

.footer-newsletter label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
}

.footer-newsletter-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.footer-newsletter input {
  width: 100%;
  min-width: 0;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
}

.footer-newsletter button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-item,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .benchmark-icon-card,
  .bm-entry,
  .bm-line-fill,
  .contact-method,
  .form-card,
  .fr-data-card,
  .fr-data-card::before,
  .fr-donut,
  .fr-review-image,
  .fr-review-image-wrap,
  .fr-review-panel,
  .pt-link,
  .pt-proof-item,
  .pt-proof-item::before,
  .stat-cell,
  .stat-cell::before,
  .synergy-card,
  .synergy-beam,
  .synergy-frame-line,
  .synergy-track,
  .synergy-flow-core,
  .synergy-outcome,
  .synergy-outcome::after {
    transition: none;
  }

  .bm-line-fill {
    transform: scaleX(1);
  }

  .synergy-beam {
    stroke-dashoffset: 0;
  }

  .synergy-track {
    opacity: 1;
  }

  .synergy-flow-core {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  .synergy-frame-line-top,
  .synergy-frame-line-bottom {
    transform: scaleX(1);
  }

  .synergy-frame-line-right,
  .synergy-frame-line-left {
    transform: scaleY(1);
  }

  .synergy-outcome::after {
    opacity: 0.92;
    transform: translateX(-50%) scaleX(1);
  }

  .benchmark-icon-card:hover,
  .bm-entry:hover,
  .contact-method:hover,
  .form-card:hover,
  .fr-data-card:hover,
  .fr-data-card:hover .fr-donut,
  .fr-review-feature:hover .fr-review-image,
  .fr-review-feature:hover .fr-review-image-wrap,
  .fr-review-feature:hover .fr-review-panel,
  .pt-link:hover,
  .pt-proof-item:hover,
  .stat-cell:hover,
  .synergy-card:hover,
  .synergy-outcome:hover {
    transform: none;
  }
}

@media (max-width: 1099px) {
  :root {
    --site-gutter: 28px;
    --section-y: 96px;
  }

  #main-nav {
    padding-left: 48px;
    padding-right: 48px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-phone {
    font-size: 12px;
  }

  .section-title {
    font-size: 58px;
  }

  .hero-title {
    font-size: 82px;
  }

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

  .synergy-card {
    padding: 26px 22px 22px;
  }

  .synergy-card h3 {
    font-size: 20px;
  }

  .synergy-outcome {
    grid-template-columns: 1fr;
    padding: 36px 32px 32px;
    gap: 26px;
  }

  .synergy-outcome-formula {
    justify-content: start;
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .synergy-outcome-metric strong {
    font-size: 36px;
  }

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

  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 899px) {
  :root {
    --site-gutter: 32px;
    --nav-height: 76px;
    --section-y: 88px;
  }

  #main-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
  }

  #main-nav > .hidden.md\:flex,
  #main-nav > .hidden.md\:inline-flex {
    display: none;
  }

  #main-nav .burger-btn {
    display: inline-flex;
  }

  .nav-logo {
    height: 40px;
  }

  .hero-section {
    min-height: 820px;
    background-position: center, center, 46% 0%;
  }

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

  .hero-section::after {
    background:
      linear-gradient(90deg, rgba(0, 26, 16, 0.9) 0%, rgba(0, 96, 57, 0.78) 54%, rgba(0, 96, 57, 0.64) 100%),
      linear-gradient(180deg, rgba(0, 26, 16, 0.1) 0%, rgba(0, 26, 16, 0.05) 48%, rgba(0, 26, 16, 0.38) 100%),
      linear-gradient(rgba(0, 96, 57, 0.2), rgba(0, 96, 57, 0.2));
  }

  .hero-section > .relative.z-10.flex-1 {
    padding-top: 126px;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: 62px;
    max-width: 14ch;
  }

  .hero-subtitle {
    max-width: 29ch;
    font-size: 22px;
  }

  .section-title,
  .pt-title,
  .contact-title {
    font-size: 46px;
  }

  .trusted-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .trusted-marquee,
  .trusted-track {
    width: 100%;
  }

  .trusted-track {
    width: max-content;
    min-width: 100%;
    animation-duration: 30s;
  }

  .trusted-group {
    width: auto;
    min-width: max-content;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 50px;
    padding-right: 50px;
  }

  #about > .max-w-6xl,
  .fast-facts-bg > .relative.z-10,
  #use-cases > .max-w-6xl,
  #solutions > .max-w-6xl {
    width: 100%;
  }

  .fast-facts-bg > .relative.z-10 > .flex {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fast-facts-bg .section-title {
    max-width: 13ch;
  }

  .benchmark-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .benchmark-icon-card {
    width: 190px;
    min-height: 178px;
    justify-self: start;
    padding: 20px;
  }

  .benchmark-section .section-title {
    max-width: 13.5ch;
  }

  .fr-review-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 620px;
  }

  .fr-review-feature::before {
    left: -24px;
    right: -24px;
    top: 68%;
  }

  .fr-review-image-wrap,
  .fr-review-panel {
    min-height: 320px;
  }

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

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

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

  .fr-stack-head h3 {
    max-width: 16ch;
  }

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

  .synergy-head h2 {
    font-size: 46px;
  }

  .synergy-engine {
    margin-top: 36px;
  }

  .synergy-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .synergy-card {
    box-shadow: 0 8px 22px rgba(16, 23, 34, 0.05);
  }

  .synergy-outcome {
    box-shadow: 0 10px 28px rgba(16, 23, 34, 0.06);
  }

  .synergy-link {
    display: block;
    width: 100%;
    height: 64px;
    position: relative;
    z-index: 2;
  }

  .synergy-link-svg {
    display: none;
  }

  .synergy-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 10px;
    width: 4px;
    border-radius: 2px;
    background: var(--green);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .synergy-link.visible::before {
    transform: translateX(-50%) scaleY(1);
  }

  .synergy-link::after {
    transition: opacity 350ms ease 700ms,
                transform 500ms cubic-bezier(0.22, 1, 0.36, 1) 700ms;
  }

  .synergy-beam-1,
  .synergy-beam-2,
  .synergy-beam-3,
  .synergy-beam-mobile,
  .synergy-track {
    display: none;
  }

  .synergy-flow {
    position: relative;
    height: 70px;
  }

  .synergy-flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 8px;
    width: 4px;
    border-radius: 2px;
    background: var(--green);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .synergy-flow.visible::before {
    transform: translateX(-50%) scaleY(1);
  }

  .synergy-outcome {
    grid-template-columns: 1fr;
    padding: 32px 28px 30px;
    gap: 26px;
  }

  .synergy-outcome h3 {
    font-size: 26px;
  }

  .synergy-outcome-formula {
    justify-content: start;
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .synergy-outcome-metric strong {
    font-size: 32px;
  }

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

  .about-facts > div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .bm-entry-body,
  .bm-entry:nth-child(even) .bm-entry-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .bm-entry-desc,
  .bm-entry-list,
  .bm-entry:nth-child(even) .bm-entry-desc,
  .bm-entry:nth-child(even) .bm-entry-list {
    order: initial;
  }

  .bm-entry:nth-child(even) .bm-entry-head {
    grid-template-columns: 1fr;
  }

  .bm-entry:nth-child(even) .bm-entry-title {
    order: initial;
    justify-content: flex-start;
  }

  .bm-entry:nth-child(even) .bm-entry-title h3 {
    text-align: left;
  }

  .bm-entry:nth-child(even) .bm-entry-delta {
    order: initial;
    justify-items: start;
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
    text-align: left;
  }

  .bm-entry-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bm-entry-delta {
    justify-items: start;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

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

  .footer-photo {
    height: 360px;
  }
}

@media (max-width: 639px) {
  :root {
    --site-gutter: 20px;
    --section-y: 72px;
  }

  #main-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    min-height: 760px;
    background-position: center, center, 44% 0%;
  }

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

  .hero-section::after {
    background:
      linear-gradient(90deg, rgba(0, 26, 16, 0.92) 0%, rgba(0, 96, 57, 0.8) 54%, rgba(0, 96, 57, 0.68) 100%),
      linear-gradient(180deg, rgba(0, 26, 16, 0.1) 0%, rgba(0, 26, 16, 0.05) 48%, rgba(0, 26, 16, 0.4) 100%),
      linear-gradient(rgba(0, 96, 57, 0.22), rgba(0, 96, 57, 0.22));
  }

  .hero-section > .relative.z-10.flex-1 {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .hero-title {
    font-size: 48px;
    max-width: 14ch;
  }

  .hero-subtitle {
    max-width: 28ch;
    font-size: 20px;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .btn {
    width: 100%;
  }

  .trusted-bar {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .trusted-label {
    font-size: 14px;
  }

  .trusted-logo {
    max-height: 24px;
  }

  .trusted-track {
    animation-duration: 26s;
  }

  .trusted-group {
    gap: 34px;
    padding-right: 34px;
  }

  .logo-telia { width: 88px; }
  .logo-telenor { width: 56px; }
  .logo-trygghansa { width: 92px; }
  .logo-finnair { width: 96px; }

  #about,
  .fast-facts-bg,
  #use-cases,
  #solutions,
  .one-system-section,
  .pricing-tease-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #about {
    padding-bottom: 52px;
  }

  .fast-facts-bg {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .fast-facts-head {
    margin-bottom: 18px;
  }

  .section-title,
  .pt-title,
  .contact-title {
    font-size: 38px;
  }

  .fast-facts-bg .section-title {
    max-width: 13ch;
    font-size: 42px;
  }

  .benchmark-section .section-title {
    max-width: 16ch;
  }

  .benchmark-lede {
    font-size: 16px;
  }

  .facts-review-section .section-title {
    font-size: 38px;
  }

  .fr-facts-title {
    max-width: 12ch;
    line-height: 1.08;
  }

  .about-para {
    font-size: 18px;
  }

  .about-facts,
  .stats-row,
  .contact-methods,
  .form-row-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-facts > div {
    min-height: 0;
    border-left: 0;
    padding-left: 0;
  }

  .stat-cell {
    min-height: 148px;
  }

  .stat-num {
    font-size: 56px;
  }

  .bm-entry {
    padding: 24px 20px 26px;
  }

  .bm-entry-title h3 {
    font-size: 26px;
  }

  .bm-line {
    grid-template-columns: 84px 1fr 60px;
    gap: 10px;
  }

  .bm-line dt,
  .bm-line-val {
    font-size: 13px;
  }

  .bm-line-logo {
    width: 72px;
  }

  .fr-review-feature {
    gap: 12px;
    margin-bottom: 34px;
  }

  .fr-review-feature::before {
    left: -20px;
    right: -20px;
    top: 48%;
    height: 54px;
  }

  .fr-review-image-wrap {
    min-height: 280px;
  }

  .fr-review-panel {
    min-height: 300px;
    padding: 28px 24px;
  }

  .fr-review-panel blockquote {
    font-size: 32px;
  }

  .fr-data-card {
    min-height: 198px;
  }

  .fr-donut {
    width: 128px;
  }

  .fr-stack {
    gap: 14px;
  }

  .fr-stack-head {
    padding: 0;
  }

  .fr-stack-head h3 {
    font-size: 28px;
  }

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

  .fr-stack-item {
    min-height: 112px;
  }

  .synergy-head h2 {
    max-width: 14ch;
    font-size: 38px;
  }

  .synergy-head p:not(.synergy-kicker) {
    font-size: 16px;
  }

  .synergy-grid {
    gap: 14px;
  }

  .synergy-card {
    padding: 22px 20px;
  }

  .synergy-icon {
    width: 44px;
    height: 44px;
  }

  .synergy-icon svg {
    width: 22px;
    height: 22px;
  }

  .synergy-card h3 {
    font-size: 19px;
  }

  .synergy-card > p {
    font-size: 14.5px;
    margin-bottom: 18px;
  }

  .synergy-card-tag {
    padding-top: 14px;
    gap: 8px;
  }

  .synergy-card-tag strong {
    font-size: 20px;
  }

  .synergy-card-tag span {
    font-size: 10.5px;
  }

  .synergy-flow {
    height: 60px;
  }

  .synergy-outcome {
    padding: 26px 22px;
    border-radius: 2px;
  }

  .synergy-outcome h3 {
    font-size: 22px;
  }

  .synergy-outcome-formula {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .synergy-outcome-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid rgba(16, 23, 34, 0.08);
  }

  .synergy-outcome-metric:first-child {
    border-top: 0;
  }

  .synergy-outcome-metric strong {
    font-size: 28px;
  }

  .synergy-outcome-metric span {
    margin-top: 0;
    font-size: 10.5px;
  }

  .synergy-outcome-op {
    display: none;
  }

  .pt-grid,
  .contact-grid {
    gap: 34px;
  }

  .pt-proof-v {
    font-size: 19px;
  }

  .form-card {
    padding: 22px;
  }

  .form-foot {
    display: grid;
  }

  .footer-photo {
    height: 300px;
  }

  .footer-col-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}
