@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --green-950: #14260f;
  --green-900: #233b16;
  --green-800: #175d2f;
  --green-700: #1a8740;
  --green-600: #229b49;
  --green-500: #40ad5e;
  --green-300: #9fd8a9;
  --green-100: #eaf5e8;
  --green-050: #f4faf2;
  --ink: #151914;
  --ink-soft: #586157;
  --paper: #fff;
  --cloud: #229b49;
  --line: #dfe6dc;
  --shadow: 0 22px 60px rgba(25, 53, 22, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
.display {
  font-family: "Manrope", sans-serif;
  margin: 0;
  letter-spacing: -0.035em;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.container-full {
  width: 100%;
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
/* .section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-500);
} */
.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  max-width: 920px;
}
.section-copy {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 155, 73, 0.22);
}
.btn-primary:hover {
  background: var(--green-700);
}
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(223, 230, 220, 0.78);
  box-shadow: 0 8px 28px rgba(20, 38, 15, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.nav-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
header.is-scrolled .logo img {
  filter: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease;
}
nav a:hover {
  color: #fff;
}
header.is-scrolled nav a {
  color: #30372f;
}
header.is-scrolled nav a:hover {
  color: var(--green-700);
}
.nav-cta {
  padding: 11px 20px;
  background: var(--green-600);
  color: #fff !important;
  border-radius: 999px !important;
}
.nav-cta:hover {
  background: var(--green-700);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  transition: color 0.25s ease;
}
header.is-scrolled .mobile-toggle {
  color: var(--ink);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-950);
  color: #fff;
  --hero-split: 50%;
}
.hero[data-active="software"] {
  --hero-split: 80.65%;
}
.hero[data-active="bpo"] {
  --hero-split: 19.35%;
}
.hero[data-active="software"] .hero-panel-bpo {
  opacity: 0.1;
}
.hero[data-active="bpo"] .hero-panel-software {
  opacity: 0.1;
}
.hero-split {
  position: absolute;
  inset: 0;
  background: #0d1c11;
}
.hero-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  transition:
    clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease,
    opacity 0.55s ease;
  will-change: clip-path;
}
.hero-panel::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -2%;
  background-image: var(--panel-image);
  background-position: var(--panel-position, center);
  background-size: cover;
  transform: scale(1.01);
  filter: saturate(0.75) contrast(1.08);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  will-change: transform;
}
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--panel-overlay);
  transition: background 0.5s ease;
}
.hero-panel-software {
  left: 0;
  z-index: 2;
  --panel-image: url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=2200&q=85");
  --panel-position: center center;
  --panel-overlay: linear-gradient(90deg, rgb(34, 155, 73) 0%, rgba(34, 155, 73, 0.82) 58%, rgba(14, 61, 29, 0.48) 100%);
  clip-path: polygon(0 0, calc(var(--hero-split) + 7.5vh) 0, calc(var(--hero-split) - 7.5vh) 100%, 0 100%);
}
.hero-panel-bpo {
  right: 0;
  z-index: 1;
  --panel-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2200&q=85");
  --panel-position: center center;
  --panel-overlay: linear-gradient(270deg, rgb(115, 115, 115) 0%, rgba(74, 77, 82, 0.88) 58%, rgba(22, 54, 30, 0.5) 100%);
  clip-path: polygon(calc(var(--hero-split) + 7.5vh) 0, 100% 0, 100% 100%, calc(var(--hero-split) - 7.5vh) 100%);
}
.hero[data-active="software"] .hero-panel-bpo,
.hero[data-active="bpo"] .hero-panel-software {
  filter: brightness(0.955);
}
.hero[data-active="software"] .hero-panel-software::before,
.hero[data-active="bpo"] .hero-panel-bpo::before {
  transform: scale(1.018);
  filter: saturate(0.8) contrast(1.065);
}
.hero-panel-inner {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 96px));
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(64px, 9vh, 110px);
  padding-bottom: clamp(64px, 9vh, 110px);
  transition: opacity 0.55s ease;
}
.hero-panel-software .hero-panel-inner {
  margin-left: max(32px, calc((100vw - 1440px) / 2 + 32px));
  padding-right: clamp(70px, 9vw, 150px);
}
.hero-panel-bpo .hero-panel-inner {
  margin-left: auto;
  margin-right: max(32px, calc((100vw - 1440px) / 2 + 32px));
  padding-left: clamp(90px, 11vw, 180px);
  text-align: right;
  align-items: flex-end;
}
.hero[data-active="software"] .hero-panel-bpo .hero-panel-inner,
.hero[data-active="bpo"] .hero-panel-software .hero-panel-inner {
  opacity: 0.965;
}
.hero-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 4px;
}
.hero-panel-kicker::before {
  /* content: "";
        width: 32px;
        height: 1px;
        background: currentColor; */
}
.hero-panel-bpo .hero-panel-kicker {
  flex-direction: row-reverse;
}
.hero-panel h1,
.hero-panel h2 {
  max-width: 620px;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}
.hero-panel-copy {
  max-width: 570px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}
.hero-panel-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.hero-panel-bpo .hero-panel-actions {
  justify-content: flex-end;
}
.hero-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 176px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(8, 20, 11, 0.24);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}
.hero-explore::after {
  content: "→";
  font-size: 18px;
  transition: opacity 0.24s ease;
}

.hero-panel:focus-within .hero-explore {
  border-color: #fff;
  background: #fff;
  color: var(--green-800);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.hero[data-active="software"] .hero-panel-software .hero-explore::after,
.hero[data-active="bpo"] .hero-panel-bpo .hero-explore::after,
.hero-panel:focus-within .hero-explore::after {
  opacity: 0.78;
}
.hero-explore:focus-visible {
  outline: 3px solid #9fd8a9;
  outline-offset: 4px;
}
.hero-panel-number {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.hero-divider {
  display: none;
}
.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(16px, 2.5vh, 28px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(8, 20, 11, 0.28);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.hero-scroll-cue::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  animation: hero-scroll-cue 1.8s ease-in-out infinite;
}
.hero-scroll-cue:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}
.hero-scroll-cue:focus-visible {
  outline: 3px solid #9fd8a9;
  outline-offset: 4px;
}
@keyframes hero-scroll-cue {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    transform: translateY(3px) rotate(45deg);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-panel,
  .hero[data-active="software"] .hero-panel-software,
  .hero[data-active="bpo"] .hero-panel-bpo,
  .hero[data-active="software"] .hero-panel-bpo,
  .hero[data-active="bpo"] .hero-panel-software {
    position: relative;
    width: 100%;
    min-height: 52svh;
    clip-path: none;
    filter: none;
  }
  .hero-panel-software,
  .hero-panel-bpo {
    left: auto;
    right: auto;
  }
  .hero-panel-inner,
  .hero[data-active="software"] .hero-panel-bpo .hero-panel-inner,
  .hero[data-active="bpo"] .hero-panel-software .hero-panel-inner {
    width: min(100% - 48px, 720px);
    min-height: 52svh;
    margin: 0 auto !important;
    padding: 72px 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    opacity: 1;
    transform: none;
  }
  .hero-panel-bpo .hero-panel-kicker {
    flex-direction: row;
  }
  .hero-panel-bpo .hero-panel-actions {
    justify-content: flex-start;
  }
  .hero-divider {
    top: 50%;
    left: -5% !important;
    width: 110%;
    height: 1px;
    transform: rotate(-2deg);
  }
}
@media (max-width: 640px) {
  .hero-panel,
  .hero-panel-inner {
    min-height: 480px;
  }
  .hero-panel-inner {
    width: min(100% - 32px, 720px);
    padding: 58px 0 !important;
  }
  .hero-panel h1,
  .hero-panel h2 {
    font-size: 43px;
  }
  .hero-panel-copy {
    font-size: 15px;
  }
  .hero-panel-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

/* Real-time Software Usage */
.live-usage {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.live-usage-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}
.live-usage-copy .section-title {
  max-width: 560px;
}
.live-usage-copy .section-copy {
  max-width: 590px;
}
.live-usage-detail {
  max-width: 580px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.live-usage-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-050);
  color: #3d473e;
  font-size: 12px;
  font-weight: 750;
}
.live-usage-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 5px rgba(34, 155, 73, 0.12);
  animation: metrics-pulse 2.4s ease-out infinite;
}

/* Live Metrics Globe */
.globe-stage {
  position: relative;
  min-height: 610px;
  isolation: isolate;
  /*overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 32px;
        background: #f0f0f0;
        box-shadow: 0 24px 70px rgba(25, 53, 22, 0.12);*/
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.globe-stage.is-dragging {
  cursor: grabbing;
}
.globe-stage:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 4px;
  border-radius: 24px;
}
.globe-stage::before {
  content: "";
  position: absolute;
  inset: 3% -8% 0 -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 48%, rgba(31, 40, 34, 0.12), rgba(31, 40, 34, 0.035) 44%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.globe-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
}
.globe-canvas {
  position: absolute;
  z-index: 1;
  inset: -11% -18% -13% -18%;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 8%, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 8%, #000 24%);
}
.globe-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.06);
}
.globe-hud {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 32px;
  width: min(272px, calc(100% - 36px));
  padding: 20px 22px 21px;
  border: 1px solid rgba(36, 48, 36, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(34, 42, 34, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}
.globe-hud::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--green-600);
}
.globe-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.globe-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b78522;
  box-shadow: 0 0 0 4px rgba(95, 104, 96, 0.1);
  animation: metrics-pulse 2.4s ease-out infinite;
}
.globe-status-dot.is-live {
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(34, 155, 73, 0.12);
}
.globe-status-dot.is-offline {
  background: #a44b43;
  animation: none;
}
.globe-metric {
  display: block;
}
.globe-metric strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Manrope";
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #283029;
}
.globe-action {
  display: inline-block;
  max-width: 100%;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(34, 155, 73, 0.18);
  border-radius: 999px;
  background: rgba(34, 155, 73, 0.1);
  color: var(--green-700);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.globe-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(36, 48, 36, 0.1);
  color: #8c928c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.globe-coordinate {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 42px;
  color: rgba(53, 62, 54, 0.52);
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}
.globe-fallback {
  position: absolute;
  inset: 12%;
  display: none;
  place-items: center;
  border: 1px solid rgba(36, 48, 36, 0.12);
  border-radius: 50%;
  color: #7e867f;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.globe-stage.is-fallback .globe-fallback {
  display: grid;
}
@keyframes metrics-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 104, 96, 0.26);
  }
  65%,
  100% {
    box-shadow: 0 0 0 8px rgba(95, 104, 96, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue::before {
    animation: none;
  }
  .globe-status-dot,
  .live-usage-pulse {
    animation: none;
  }
  .hero-image,
  .path-card,
  .path-card::after {
    transition: none;
  }
  .hero[data-active="software"] .hero-image-software,
  .hero[data-active="bpo"] .hero-image-bpo {
    transform: none;
  }
}

/* Trust Bar */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}
.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-soft);
  font-weight: 800;
}
.trust-item {
  font-family: "Manrope";
  font-size: 17px;
  font-weight: 800;
  color: #667064;
  text-align: center;
}

/* Services Grid */
.services {
  background: var(--cloud);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  scroll-margin-top: 108px;
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: var(--green-100);
  z-index: 0;
}
.service-number {
  font-family: "Manrope";
  font-weight: 800;
  color: var(--green-600);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 26px;
  margin: 24px 0 14px;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 10px;
  color: #364036;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.service-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-list li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 900;
}
.text-link {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 800;
  font-size: 14px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Interactive Calculator Section */
.calc-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.calc-box {
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.calc-controls label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.calc-controls input[type="range"] {
  width: 100%;
  accent-color: var(--green-600);
  margin-bottom: 24px;
}
.calc-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.calc-result strong {
  display: block;
  font-size: 48px;
  font-family: "Manrope";
  color: var(--green-700);
  line-height: 1;
}
.calc-result span {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

/* Connected Approach / Advantage */
.advantage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.stack-graphic {
  position: relative;
  padding: 12px;
}
.stack-card {
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 15px 30px rgba(29, 59, 25, 0.07);
  display: flex;
  align-items: center;
  gap: 18px;
}
.stack-card:nth-child(2) {
  margin-left: 28px;
}
.stack-card:nth-child(3) {
  margin-left: 56px;
}
.stack-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-weight: 900;
  font-size: 18px;
}
.stack-card h4 {
  font-size: 17px;
  margin-bottom: 3px;
}
.stack-card p {
  font-size: 13px;
  color: var(--ink-soft);
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}
.benefit {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.benefit strong {
  display: block;
  font-family: "Manrope";
  font-size: 18px;
  margin-bottom: 6px;
}
.benefit span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* Case Studies / Work Showcase */
.showcase {
  background: var(--green-950);
  color: #fff;
  overflow: hidden;
}
.showcase .section-copy {
  color: rgba(255, 255, 255, 0.68);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.case-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease;
}
.case-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.case-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99d5a3;
}
.case-card h3 {
  font-size: 24px;
  margin: 16px 0 16px;
  line-height: 1.25;
}
.case-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.65;
}
.case-metric {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.case-metric b {
  font-size: 32px;
  font-family: "Manrope";
  color: #69bd72;
}
.case-metric span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonials */
.testimonials {
  background: var(--cloud);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}
.testi-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-600);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--green-700);
}
.testi-info strong {
  display: block;
  font-size: 14px;
}
.testi-info span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* Metrics / Proof */
.proof-section {
  background: var(--green-050);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.proof-card strong {
  display: block;
  font-family: "Manrope";
  font-size: 36px;
  color: var(--green-700);
  margin-bottom: 6px;
}
.proof-card span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* Contact & Form Section */
.cta-section {
  padding: 104px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  border-radius: 32px;
  padding: 64px;
  color: #fff;
  align-items: center;
}
.cta-info h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-info p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  color: var(--ink);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #30372f;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cloud);
  font-size: 14px;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: #fff;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  color: var(--ink-soft);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 22px;
}

/* Responsive Adjustments */
@media (max-width: 980px) {
  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  nav.open {
    display: flex;
  }
  nav.open a {
    color: #30372f;
  }
  nav.open a:hover {
    color: var(--green-700);
  }
  .mobile-toggle {
    display: block;
  }
  .hero-grid,
  .live-usage-grid,
  .advantage-grid,
  .showcase-grid,
  .calc-box,
  .cta-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 64px 0 72px;
    gap: 40px;
  }
  .hero-text {
    max-width: 760px;
  }
  .hero-paths {
    grid-template-columns: 1fr 1fr;
  }
  .path-intro {
    grid-column: 1 / -1;
  }
  .path-card {
    grid-template-columns: 1fr;
    min-height: 250px;
  }
  .path-card::after {
    grid-column: 1;
    grid-row: auto;
    align-self: end;
    margin-top: 10px;
  }
  .live-usage-copy {
    max-width: 720px;
  }
  .globe-stage {
    min-height: 560px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-label {
    grid-column: 1/-1;
    text-align: center;
  }
  .cta-grid {
    padding: 40px 24px;
  }
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1440px);
  }
  .section {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .hero-proof-line {
    display: none;
  }
  .hero-paths {
    grid-template-columns: 1fr;
  }
  .path-intro {
    grid-column: auto;
  }
  .path-card {
    min-height: 0;
    padding: 26px;
  }
  .hero-grid {
    padding: 48px 0 44px;
  }
  .hero-hover-hint {
    display: none;
  }
  .live-usage-note {
    align-items: flex-start;
    border-radius: 16px;
    line-height: 1.45;
  }
  .btn {
    width: 100%;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .globe-stage {
    min-height: 450px;
    border-radius: 24px;
  }
  .globe-canvas {
    inset: -9% -24% -12% -18%;
  }
  .globe-hud {
    right: 18px;
    bottom: 20px;
    width: min(260px, calc(100% - 36px));
    padding: 18px 20px 19px;
  }
  .globe-coordinate {
    right: 20px;
    top: 28px;
  }
}

/* Unified post-hero visual system */
body {
  background: #f3f5f0;
}
.section {
  position: relative;
  padding: clamp(88px, 9vw, 132px) 0;
}
.section-kicker {
  color: var(--green-600);
  letter-spacing: 0.15em;
}
/* .section-kicker::before {
  width: 34px;
  background: currentColor;
} */
.section-title {
  max-width: 960px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  color: #182019;
  text-wrap: balance;
}
.section-copy {
  max-width: 720px;
  color: #647064;
}

/* Client logo marquee */
.client-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 27px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(29, 55, 30, 0.12);
  background: #f8faf6;
}
.client-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.client-strip-label {
  color: #677167;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}
.client-strip-line {
  width: 100%;
  height: 1px;
  background: rgba(31, 55, 32, 0.1);
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: client-logo-scroll 26s linear infinite;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.client-logo {
  display: grid;
  place-items: center;
  min-width: 245px;
  height: 62px;
  padding: 0 38px;
  border-right: 1px solid rgba(31, 55, 32, 0.1);
  color: #2c352d;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  opacity: 0.58;
  filter: grayscale(1);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}
.client-logo:hover {
  opacity: 1;
  filter: none;
}
.client-logo small {
  display: block;
  margin-left: 7px;
  color: #748074;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes client-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Live usage */
.live-usage {
  background: #eef2eb;
  border: 0;
}
.live-usage-grid {
  gap: clamp(60px, 8vw, 130px);
}
.live-usage-detail {
  color: #687268;
}
.live-usage-note {
  border-color: rgba(35, 75, 42, 0.14);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(19, 44, 23, 0.06);
  backdrop-filter: blur(12px);
}
.globe-stage {
  min-height: 640px;
  /*border-color: rgba(27,53,28,.12);
        border-radius: 38px;
        background:
          radial-gradient(circle at 70% 15%, rgba(90,160,102,.14), transparent 35%),
          linear-gradient(145deg, #f7f9f5, #e5eae2);
        box-shadow: 0 38px 90px rgba(25,53,22,.14);*/
}

/* Capability section */
.services {
  color: #fff;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 12%, rgba(61, 161, 82, 0.18), transparent 32%), radial-gradient(circle at 92% 82%, rgba(71, 128, 78, 0.13), transparent 30%);
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services .section-title {
  color: #fff;
}
.services .section-copy {
  color: rgba(255, 255, 255, 0.63);
}
.service-grid {
  gap: 18px;
  margin-top: 60px;
}
.service-card {
  min-height: 430px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 218, 151, 0.4);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: none;
}
.service-card::after {
  width: 220px;
  height: 220px;
  right: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(65, 177, 89, 0.18), transparent 68%);
}
.service-card h3 {
  color: #fff;
  font-size: 28px;
}
.service-card p,
.service-list {
  color: #fff;
}
.service-number,
.text-link {
  color: #fff;
}
.service-list li::before {
  color: #76cf8b;
}

/* ROI panel */
.calc-section {
  background: #f6f8f4;
  border: 0;
}
.calc-box {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(29, 60, 33, 0.11);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(25, 53, 22, 0.09);
}
.calc-result {
  min-height: 255px;
  display: grid;
  align-content: center;
  border: 0;
  border-radius: 26px;
  background: #229b49;
  color: #fff;
}
.calc-result strong {
  color: #fff;
  font-size: clamp(52px, 6vw, 78px);
}
.calc-result span {
  color: #fff;
}
.calc-result > span:first-child {
  color: #fff !important;
}

/* Case studies */
.showcase {
  background: #e8eee5;
  color: var(--ink);
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 45%);
  pointer-events: none;
}
.showcase .container {
  position: relative;
  z-index: 1;
}
.showcase .section-title {
  color: var(--ink);
}
.showcase .section-copy {
  color: #657065;
}
.showcase-grid {
  gap: 20px;
}
.case-card {
  min-height: 390px;
  padding: 40px;
  border: 1px solid rgba(26, 58, 31, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(31, 60, 33, 0.07);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 155, 73, 0.28);
  box-shadow: 0 28px 72px rgba(31, 60, 33, 0.1);
}
.case-tag {
  color: var(--green-700);
}
.case-card h3 {
  color: #182019;
  font-size: 28px;
}
.case-card p {
  color: #677168;
}
.case-metric {
  border-top-color: rgba(26, 58, 31, 0.1);
}
.case-metric b {
  color: var(--green-700);
}
.case-metric span {
  color: #717a72;
}

/* Testimonials */
.testimonials {
  background: #fff;
}
.testi-grid {
  gap: 20px;
}
.testi-card {
  min-height: 300px;
  padding: 38px;
  border: 1px solid rgba(27, 56, 31, 0.11);
  border-radius: 28px;
  background: #f5f7f3;
}
.testi-card p {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.65;
  font-style: normal;
  letter-spacing: -0.02em;
}
.testi-avatar {
  background: #229b49;
  color: #fff;
}

/* Proof */
.proof-section {
  background: #229b49;
  color: #fff;
}
.proof-section .section-title {
  color: #fff;
}
.proof-grid {
  gap: 14px;
}
.proof-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}
.proof-card strong {
  color: #fff;
}
.proof-card span {
  color: #fff;
}

/* Contact */
.cta-section {
  background: #eef2eb;
}
.cta-grid {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  background: #229b49;
  box-shadow: 0 35px 90px rgba(22, 48, 26, 0.18);
}
.cta-form {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
.form-group input,
.form-group select,
.form-group textarea {
  border-color: rgba(31, 60, 33, 0.12);
  background: #f3f6f1;
}

footer {
  border-top: 0;
  background: #fff;
}
.footer-links a:hover {
  color: #9edbaa;
}

@media (max-width: 980px) {
  .client-logo {
    min-width: 210px;
  }
}
@media (max-width: 640px) {
  .client-strip {
    padding: 22px 0;
  }
  .client-strip-head {
    margin-bottom: 14px;
  }
  .client-logo {
    min-width: 180px;
    height: 54px;
    padding: 0 24px;
    font-size: 16px;
  }
  .service-card,
  .case-card,
  .testi-card {
    padding: 28px;
  }
  .calc-box {
    border-radius: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
  }
}

/* Software detail page */
.software-page {
  background: #f7f9f5;
}
.software-page header .nav-current {
  color: #fff;
}
.software-page header.is-scrolled .nav-current {
  color: var(--green-700);
}
.software-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 162px 0 112px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 36%, rgba(88, 201, 111, 0.2), transparent 28%), radial-gradient(circle at 12% 92%, rgba(35, 127, 64, 0.42), transparent 34%),
    linear-gradient(135deg, #229b49 0%, #229b49 52%, #1bb34d 100%);
}
.software-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}
.software-hero::after {
  content: "";
  position: absolute;
  right: -210px;
  bottom: -330px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(147, 226, 161, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 96px rgba(147, 226, 161, 0.035),
    0 0 0 192px rgba(147, 226, 161, 0.025);
}
.software-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(64px, 9vw, 140px);
}
.software-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 4px;
}
/* .software-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
} */
.software-hero h1 {
  max-width: 790px;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.96;
  text-wrap: balance;
}
.software-hero-copy {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.7;
}
.software-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.software-hero .btn-secondary,
.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.software-hero .btn-secondary:hover,
.hero .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}
.software-hero-art {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(156, 226, 169, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.38);
  /* transform: rotate(1.25deg); */
}
.software-hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14% -8% -12% 12%;
  border-radius: 40%;
  background: rgba(34, 155, 73, 0.24);
  filter: blur(54px);
}
.software-hero-art img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 21px;
}
.fan-selector-demo {
  color: #152019;
  cursor: default;
}
.fan-selector-window {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 31, 0.13);
  border-radius: 21px;
  background: #f8faf7;
  box-shadow: 0 24px 60px rgba(5, 39, 18, 0.2);
}
.fan-selector-topbar {
  display: flex;
  height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #e0e8de;
  background: #fff;
}
.fan-selector-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #17301e;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.fan-selector-mark,
.fan-model-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green-600);
  color: #fff;
}
.fan-selector-mark {
  width: 26px;
  height: 26px;
  font-size: 15px;
}
.fan-selector-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64806b;
  font-size: 9px;
  font-weight: 700;
}
.fan-selector-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22a84f;
  box-shadow: 0 0 0 4px rgba(34, 168, 79, 0.1);
}
.fan-selector-tabs {
  display: flex;
  height: 43px;
  align-items: stretch;
  gap: 2px;
  padding: 0 11px;
  border-bottom: 1px solid #e0e8de;
  background: #fff;
}
.fan-selector-tabs button {
  position: relative;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #7a897d;
  font:
    700 9px/1 "Manrope",
    sans-serif;
  cursor: pointer;
}
.fan-selector-tabs button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: transparent;
}
.fan-selector-tabs button[aria-selected="true"] {
  color: var(--green-700);
}
.fan-selector-tabs button[aria-selected="true"]::after {
  background: var(--green-600);
}
.fan-selector-tabs button:focus-visible,
.fan-product:focus-visible,
.fan-control input:focus-visible,
.fan-chart-wrap canvas:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}
.fan-selector-workspace {
  display: grid;
  grid-template-columns: minmax(155px, 0.72fr) minmax(0, 1.55fr);
  min-height: 354px;
}
.fan-selector-sidebar {
  padding: 16px;
  border-right: 1px solid #dfe7dd;
  background: #f4f7f2;
}
.fan-selector-panel[hidden] {
  display: none;
}
.fan-selector-label {
  display: block;
  margin-bottom: 14px;
  color: #839087;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fan-control {
  display: block;
  margin-bottom: 17px;
}
.fan-control > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
  color: #35433a;
  font-size: 9px;
  font-weight: 700;
}
.fan-control output {
  color: #172b1d;
  font-weight: 800;
  white-space: nowrap;
}
.fan-control input {
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 99px;
  accent-color: var(--green-600);
  cursor: ew-resize;
}
.fan-mini-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
  padding-top: 13px;
  border-top: 1px solid #dce4da;
  color: #758179;
  font-size: 8px;
}
.fan-mini-readout strong {
  color: #334139;
  font-size: 8px;
}
.fan-product-list {
  display: grid;
  gap: 7px;
}
.fan-product {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dbe4d9;
  border-radius: 9px;
  background: #fff;
  color: #26352b;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.fan-product:hover {
  transform: translateY(-1px);
  border-color: #94c49d;
}
.fan-product.is-selected {
  border-color: #5fbb70;
  box-shadow: 0 0 0 2px rgba(34, 155, 73, 0.08);
}
.fan-product span {
  display: grid;
  gap: 2px;
}
.fan-product b {
  font-size: 9px;
}
.fan-product small {
  color: #829086;
  font-size: 7px;
}
.fan-product strong {
  color: var(--green-700);
  font-size: 9px;
}
.fan-selected-model {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d7e4d5;
  border-radius: 11px;
  background: #fff;
}
.fan-model-icon {
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.fan-selected-model > span:last-child {
  display: grid;
  gap: 2px;
}
.fan-selected-model b {
  color: #1b2d21;
  font-size: 10px;
}
.fan-selected-model small {
  color: #7b8b80;
  font-size: 7px;
}
.fan-selection-data {
  margin: 14px 0 0;
}
.fan-selection-data div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 2px;
  border-bottom: 1px solid #dde5db;
  font-size: 8px;
}
.fan-selection-data dt {
  color: #7d8981;
}
.fan-selection-data dd {
  margin: 0;
  color: #26362b;
  font-weight: 800;
}
.fan-selector-chart-card {
  min-width: 0;
  padding: 16px 16px 12px;
  background: #fff;
}
.fan-chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}
.fan-chart-heading > span:first-child {
  display: grid;
  gap: 2px;
}
.fan-chart-heading small {
  color: #859188;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.fan-chart-heading strong {
  color: #26362b;
  font:
    800 11px/1.2 "Manrope",
    sans-serif;
}
.fan-chart-key {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #748078;
  font-size: 7px;
}
.fan-chart-key i {
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #142a1a;
}
.fan-chart-key i + i {
  margin-left: 5px;
  background: var(--green-600);
}
.fan-chart-wrap {
  position: relative;
  min-width: 0;
  height: 222px;
  overflow: hidden;
  border: 1px solid #e0e7de;
  border-radius: 10px;
  background: #fbfcfa;
}
.fan-chart-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}
.fan-chart-wrap canvas.is-over-duty {
  cursor: grab;
}
.fan-chart-wrap canvas.is-dragging-duty {
  cursor: grabbing;
}
.fan-chart-tooltip {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 82px;
  padding: 7px 9px;
  border-radius: 7px;
  background: #17301e;
  color: #fff;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(12, 39, 20, 0.22);
  transform: translate(-50%, calc(-100% - 11px));
}
.fan-chart-tooltip[hidden] {
  display: none;
}
.fan-chart-tooltip strong {
  font-size: 8px;
}
.fan-chart-tooltip span {
  color: #a4dcae;
  font-size: 7px;
}
.fan-working-point {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 9px;
  padding: 9px 10px;
  border: 1px solid #dce6da;
  border-radius: 9px;
  background: #f7faf6;
}
.fan-working-point > span {
  display: grid;
  gap: 2px;
}
.fan-working-point small {
  color: #879189;
  font-size: 7px;
}
.fan-working-point strong {
  color: #213127;
  font-size: 8px;
}
.fan-working-point strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border: 2px solid var(--green-600);
  border-radius: 50%;
  vertical-align: -1px;
}
.fan-working-point .is-valid {
  color: var(--green-700);
}
.fan-working-point .is-invalid {
  color: #a45b16;
}
.fan-chart-hint {
  margin: 7px 0 0;
  color: #8a968d;
  font-size: 7px;
  text-align: center;
}
.fan-selector-demo figcaption {
  padding: 9px 9px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}
.software-jump-nav {
  position: sticky;
  z-index: 20;
  top: 81px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.software-jump-nav .container {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.software-jump-nav .container::-webkit-scrollbar {
  display: none;
}
.software-jump-nav a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  color: #596359;
  font-size: 12px;
  font-weight: 750;
}
.software-jump-nav a:hover,
.software-jump-nav a:focus-visible {
  background: var(--green-100);
  color: var(--green-800);
}
.software-intro {
  padding: 112px 0 84px;
  background: #fff;
}
.software-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}
.software-intro h2 {
  font-size: clamp(37px, 4.2vw, 59px);
  line-height: 1.04;
}
.software-intro-copy {
  padding-top: 8px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.8;
}
.software-intro-copy p + p {
  margin-top: 20px;
}

/* Software example sliders */
.software-showcase {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  scroll-margin-top: 138px;
  background: #f9faf8;
}
.software-showcase.is-tinted {
  background: #edf2ea;
}
.software-showcase.is-dark {
  background: radial-gradient(circle at 82% 18%, rgba(78, 180, 97, 0.16), transparent 30%), var(--green-950);
  color: #fff;
}
.showcase-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.showcase-heading > div {
  max-width: 900px;
}
.showcase-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}
.showcase-heading p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}
.software-showcase.is-dark .capability-index {
  color: #8dde9d;
}
.software-showcase.is-dark .showcase-heading p {
  color: rgba(255, 255, 255, 0.65);
}
.example-slider {
  position: relative;
}
.slider-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 2px 18px;
}
.slider-status {
  min-width: 58px;
  color: #7a8379;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.slider-status strong {
  color: var(--green-700);
  font-size: 16px;
}
.slider-buttons {
  display: flex;
  gap: 9px;
}
.slider-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #cfd8cc;
  border-radius: 50%;
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
  font-size: 19px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}
.slider-button:hover:not(:disabled) {
  border-color: var(--green-600);
  background: var(--green-600);
  color: #fff;
  transform: translateY(-1px);
}
.slider-button:focus-visible,
.slider-dot:focus-visible,
.slider-viewport:focus-visible {
  outline: 3px solid rgba(34, 155, 73, 0.35);
  outline-offset: 3px;
}
.slider-button:disabled {
  cursor: default;
  opacity: 0.38;
}
.slider-viewport {
  overflow-x: auto;
  border-radius: 36px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.slider-viewport::-webkit-scrollbar {
  display: none;
}
.slider-track {
  display: flex;
  gap: 24px;
}
.example-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: 525px;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(30, 67, 37, 0.11);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(29, 61, 33, 0.09);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(40px, 5vw, 74px);
}
.example-type {
  margin-bottom: 17px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.example-copy h3 {
  max-width: 520px;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.06;
}
.example-copy p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}
.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.example-tags li {
  padding: 8px 11px;
  border: 1px solid #dce5d9;
  border-radius: 999px;
  background: #f5f8f3;
  color: #576157;
  font-size: 11px;
  font-weight: 700;
}
.example-visual {
  --preview-accent: #28a04c;
  --preview-deep: #173d23;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 525px;
  place-items: center;
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 64px);
  background: radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--preview-accent) 28%, transparent), transparent 30%), linear-gradient(145deg, #e4ede0, #cbdac7);
}
.example-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, transparent, #000);
}
.example-visual[data-theme="web"] {
  --preview-accent: #178864;
  --preview-deep: #154438;
}
.example-visual[data-theme="desktop"] {
  --preview-accent: #3e7d8e;
  --preview-deep: #203e48;
}
.example-visual[data-theme="3d"] {
  --preview-accent: #70d886;
  --preview-deep: #122919;
  background: linear-gradient(145deg, #182f1c, #0d1d11);
}
.example-visual[data-theme="mobile"] {
  --preview-accent: #4ba866;
  --preview-deep: #173b22;
}
.mockup-window {
  position: relative;
  z-index: 1;
  width: min(100%, 690px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: #f8faf7;
  box-shadow: 0 32px 70px rgba(19, 52, 27, 0.22);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.desktop-window {
  border-radius: 10px;
  transform: perspective(1000px) rotateY(-2deg);
}
.mockup-top {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #dde4da;
  background: #fff;
}
.mockup-top > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5ddd2;
}
.mockup-top > span:first-child {
  background: var(--preview-accent);
}
.mockup-top small {
  margin-left: auto;
  color: #697368;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mockup-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 330px;
  background-repeat: no-repeat;
  background-size: cover;
}
.mockup-body.hru {
  background-image: url(assets/enginair.png);
}
.mockup-body.iot {
  background-image: url(assets/iot.png);
}
.mockup-body.fan {
  background-image: url(assets/fan.png);
}
.mockup-body.lab {
  background-image: url(assets/lab.png);
}
.mockup-body.hru3d {
  background-image: url(assets/hru-3d.png);
}
.mockup-body.game {
  background-image: url(assets/game.png);
}
.mockup-body.data_editor {
  background-image: url(assets/data_editor.png);
  background-position-y: -2px;
}
.mockup-body.pump {
  background-image: url(assets/pump3.png);
  background-position-y: -182px;
}
.mockup-body.powerbi {
  background-image: url(assets/powerbi.png);
}
.mockup-body.airpark {
  background-image: url(assets/airpark.png);
}
.mockup-body.chatbot {
  background-image: url(assets/chatbot.png);
  background-position-y: -286px;
}
.phone-back.connectair1 {
  background-image: url(assets/connectair1.png);
  background-size: cover;
}
.phone-front.connectair2 {
  background-image: url(assets/connectair2.png);
  background-size: cover;
}
.mockup-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 17px 10px;
  background: var(--preview-deep);
}
.mockup-rail b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 7px;
  background: var(--preview-accent);
  color: #fff;
  font-size: 9px;
}
.mockup-rail i {
  display: block;
  width: 18px;
  height: 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.18);
}
.mockup-rail i:first-of-type {
  background: rgba(255, 255, 255, 0.72);
}
.mockup-workspace {
  min-width: 0;
  padding: 24px;
}
.mockup-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
}
.mockup-title span {
  color: #263027;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.mockup-title i {
  width: 66px;
  height: 22px;
  border-radius: 99px;
  background: var(--preview-accent);
}
.mockup-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(100px, 0.65fr);
  grid-template-rows: 1fr 0.72fr;
  gap: 11px;
  min-height: 236px;
}
.mockup-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  border: 1px solid #dfe6dc;
  border-radius: 12px;
  background: #fff;
}
.mockup-panel small {
  display: block;
  color: #7a847a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mockup-panel strong {
  display: block;
  margin-top: 6px;
  color: #1a211b;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}
.mockup-chart {
  grid-row: 1 / 3;
}
.mockup-result {
  background: var(--preview-deep);
  color: #fff;
}
.mockup-result small {
  color: rgba(255, 255, 255, 0.55);
}
.mockup-result strong {
  color: #fff;
}
.mockup-result em {
  display: inline-flex;
  margin-top: 23px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #a6e5b3;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.chart-lines,
.wave-lines,
.data-lines,
.chart-bars {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 112px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(#e8eee6 1px, transparent 1px), linear-gradient(90deg, #e8eee6 1px, transparent 1px), #f8faf7;
  background-size: 22px 22px;
}
.chart-lines::before,
.chart-lines::after,
.wave-lines::before,
.wave-lines::after {
  content: "";
  position: absolute;
  left: 2%;
  width: 96%;
  height: 68%;
  border-top: 3px solid var(--preview-accent);
  border-radius: 50%;
  transform: rotate(-13deg);
}
.chart-lines::before {
  top: 37%;
}
.chart-lines::after {
  top: 56%;
  border-color: #9eb9a0;
  transform: rotate(8deg);
}
.chart-lines.variant-two::before {
  transform: rotate(-21deg);
}
.chart-lines.variant-three::after {
  transform: rotate(-4deg);
}
.wave-lines::before {
  top: 34%;
  transform: rotate(-5deg) skewX(18deg);
}
.wave-lines::after {
  top: 59%;
  border-color: #a6bcbf;
  transform: rotate(6deg) skewX(-18deg);
}
.wave-lines.variant-two::before {
  top: 49%;
  transform: rotate(-14deg);
}
.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-around;
  padding: 14px 12px 0;
}
.chart-bars i {
  width: 10%;
  height: 54%;
  border-radius: 4px 4px 0 0;
  background: var(--preview-accent);
}
.chart-bars i:nth-child(2) {
  height: 78%;
  opacity: 0.7;
}
.chart-bars i:nth-child(3) {
  height: 43%;
  opacity: 0.5;
}
.chart-bars i:nth-child(4) {
  height: 92%;
  opacity: 0.85;
}
.chart-bars i:nth-child(5) {
  height: 66%;
  opacity: 0.6;
}
.chart-bars.variant-two i:nth-child(2) {
  height: 42%;
}
.chart-bars.variant-two i:nth-child(4) {
  height: 64%;
}
.chart-bars.variant-three i:nth-child(1) {
  height: 34%;
}
.chart-bars.variant-three i:nth-child(5) {
  height: 96%;
}
.data-lines {
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 14px;
}
.data-lines i {
  height: 7px;
  border-radius: 8px;
  background: #d9e3d8;
}
.data-lines i:nth-child(1) {
  width: 82%;
  background: var(--preview-accent);
}
.data-lines i:nth-child(2) {
  width: 66%;
}
.data-lines i:nth-child(3) {
  width: 91%;
}
.data-lines i:nth-child(4) {
  width: 48%;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 22px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #bec8bb;
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.slider-dot[aria-current="true"] {
  width: 28px;
  background: var(--green-600);
}
.is-dark .slider-status {
  color: rgba(255, 255, 255, 0.48);
}
.is-dark .slider-status strong {
  color: #8dde9d;
}
.is-dark .slider-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.is-dark .example-slide {
  border-color: rgba(255, 255, 255, 0.11);
  background: #182d1a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}
.is-dark .example-type {
  color: #8dde9d;
}
.is-dark .example-copy p {
  color: rgba(255, 255, 255, 0.62);
}
.is-dark .example-tags li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.7);
}
.is-dark .slider-dot {
  background: rgba(255, 255, 255, 0.26);
}
.is-dark .slider-dot[aria-current="true"] {
  background: #74d587;
}
.model-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(143, 222, 158, 0.22);
  border-radius: 20px;
  background: #0f2014;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.35);
}
.model-toolbar {
  position: relative;
  z-index: 4;
  display: flex;
  height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}
.model-toolbar span {
  margin-right: auto;
  color: #a4dcae;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.model-toolbar i {
  width: 18px;
  height: 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.22);
}
.model-grid {
  position: absolute;
  inset: 44px 0 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(114, 204, 132, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(114, 204, 132, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(320px) rotateX(58deg) scale(1.5) translateY(44px);
}
.model-grid.variant-two {
  background-size: 26px 26px;
  transform: perspective(320px) rotateX(60deg) scale(1.65) translateY(30px);
}
.model-grid.variant-three {
  transform: perspective(340px) rotateX(52deg) scale(1.35) translateY(58px);
}
.model-object {
  position: absolute;
  z-index: 2;
  top: 122px;
  left: 24%;
  width: 210px;
  height: 138px;
  border: 2px solid #77db8b;
  background: linear-gradient(135deg, rgba(106, 212, 126, 0.18), rgba(106, 212, 126, 0.035));
  transform: skewY(-8deg) rotate(-4deg);
  box-shadow:
    inset 0 0 28px rgba(91, 214, 116, 0.12),
    18px 22px 38px rgba(0, 0, 0, 0.32);
}
.model-object::before,
.model-object::after,
.model-object span {
  content: "";
  position: absolute;
  border: 1px solid rgba(128, 230, 148, 0.58);
}
.model-object::before {
  inset: 18px 62px 18px 18px;
}
.model-object::after {
  top: 0;
  right: 38px;
  bottom: 0;
}
.model-object span:nth-child(1) {
  top: 22px;
  right: -28px;
  width: 28px;
  height: 72px;
  background: rgba(107, 218, 130, 0.1);
  transform: skewY(42deg);
  transform-origin: left;
}
.model-object span:nth-child(2) {
  right: 70px;
  bottom: -18px;
  width: 96px;
  height: 18px;
  background: rgba(107, 218, 130, 0.08);
  transform: skewX(52deg);
  transform-origin: top;
}
.model-object span:nth-child(3) {
  inset: 48px 78px 48px 36px;
  border-radius: 50%;
}
.model-object.object-wide {
  left: 17%;
  width: 260px;
  height: 120px;
}
.model-object.object-tall {
  top: 92px;
  left: 30%;
  width: 150px;
  height: 190px;
}
.model-properties {
  position: absolute;
  z-index: 3;
  top: 70px;
  right: 22px;
  display: flex;
  width: 158px;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(25, 48, 29, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}
.model-properties small {
  color: #78d68a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.model-properties b {
  margin-top: 9px;
  color: #fff;
  font-size: 12px;
}
.model-properties i {
  height: 7px;
  margin-top: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.model-properties i + i {
  width: 72%;
  margin-top: 9px;
}
.model-properties em {
  margin-top: auto;
  padding: 9px;
  border-radius: 8px;
  background: #3bb05a;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
.model-axis {
  position: absolute;
  bottom: 17px;
  left: 18px;
  color: #83d792;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.phone-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  height: 400px;
}
.phone {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 190px;
  height: 360px;
  padding: 10px;
  border: 2px solid #142d1c;
  border-radius: 31px;
  background: #f8faf7;
  box-shadow: 0 28px 60px rgba(17, 47, 24, 0.26);
}
.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 52px;
  height: 12px;
  border-radius: 0 0 9px 9px;
  background: #142d1c;
  transform: translateX(-50%);
}
.phone > span {
  display: block;
  height: 78px;
  margin: -10px -10px 0;
  border-radius: 28px 28px 16px 16px;
  background: var(--preview-deep);
}
.phone-back {
  transform: translateX(-112%) rotate(-8deg) scale(0.92);
  opacity: 0.78;
}
.phone-front {
  z-index: 2;
  transform: translateX(-20%) rotate(5deg);
}
.phone-screen {
  padding: 23px 12px 12px;
}
.phone-screen small {
  display: block;
  color: var(--preview-accent);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.phone-screen b {
  display: block;
  margin-top: 7px;
  color: #172019;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}
.phone-screen > i {
  display: block;
  height: 7px;
  margin-top: 12px;
  border-radius: 8px;
  background: #e0e7de;
}
.phone-screen > i:nth-of-type(2) {
  width: 78%;
}
.phone-screen > i:nth-of-type(3) {
  width: 55%;
}
.phone-screen em {
  display: block;
  margin-top: 18px;
  padding: 9px;
  border-radius: 8px;
  background: var(--preview-accent);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
.phone-score {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin: 17px auto 12px;
  border: 8px solid #dcebdd;
  border-top-color: var(--preview-accent);
  border-radius: 50%;
  color: var(--preview-deep);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.phone-badge {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 28px;
  padding: 12px 16px;
  border-radius: 99px;
  background: var(--preview-deep);
  color: #fff;
  box-shadow: 0 14px 32px rgba(19, 54, 28, 0.22);
  font-size: 10px;
  font-weight: 800;
}

.software-capability {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  scroll-margin-top: 140px;
}
.software-capability:nth-of-type(even) {
  background: #edf2ea;
}
.software-capability:nth-of-type(odd) {
  background: #f9faf8;
}
.software-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(64px, 10vw, 150px);
}
.software-capability.is-reversed .software-capability-copy {
  order: 2;
}
.software-capability.is-reversed .capability-visual {
  order: 1;
}
.capability-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
/*.capability-index::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--green-500);
}*/
.software-capability h2 {
  max-width: 690px;
  font-size: clamp(38px, 4.35vw, 62px);
  line-height: 1.03;
}
.capability-lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}
.capability-points {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.capability-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #394239;
  font-size: 15px;
  line-height: 1.6;
}
.capability-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 5px solid #d8efdc;
  border-radius: 50%;
  background: var(--green-600);
}
.capability-visual {
  position: relative;
  min-height: 500px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(30, 67, 37, 0.11);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(29, 61, 33, 0.1);
}
.visual-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  color: #7b847a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.visual-label::after {
  content: "Live";
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  letter-spacing: 0.08em;
}
.data-overview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}
.data-panel,
.data-stat,
.selector-step,
.output-card,
.device-card,
.cloud-core {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9f5;
}
.data-panel {
  grid-row: span 2;
  padding: 24px;
}
.data-panel h3,
.selector-result h3 {
  margin-bottom: 18px;
  font-size: 21px;
  letter-spacing: -0.025em;
}
.data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #4e584e;
  font-size: 12px;
}
.data-row:last-child {
  border-bottom: 0;
}
.data-row strong {
  color: var(--ink);
}
.data-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 20px;
}
.data-stat strong {
  color: var(--green-700);
  font-family: "Manrope", sans-serif;
  font-size: 32px;
}
.data-stat span {
  margin-top: 4px;
  color: #707a70;
  font-size: 11px;
}
.selector-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.selector-step {
  position: relative;
  padding: 20px 16px;
}
.selector-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -17px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  transform: translateY(-50%);
}
.selector-step small {
  color: var(--green-700);
  font-weight: 800;
}
.selector-step strong {
  display: block;
  margin-top: 9px;
  font-size: 13px;
}
.selector-result {
  margin-top: 14px;
  padding: 26px;
  border-radius: 20px;
  background: var(--green-900);
  color: #fff;
}
.selector-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.selector-result-grid span {
  padding: 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}
.output-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.output-card {
  min-height: 150px;
  padding: 22px;
}
.output-card:first-child {
  grid-column: 1 / -1;
  background: var(--green-900);
  color: #fff;
}
.output-icon {
  display: grid;
  width: 42px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid currentColor;
  border-radius: 5px 5px 12px 5px;
  color: var(--green-600);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}
.output-card:first-child .output-icon {
  color: #8dde9d;
}
.output-card strong {
  display: block;
  font-size: 15px;
}
.output-card span {
  display: block;
  margin-top: 7px;
  color: #768076;
  font-size: 11px;
}
.output-card:first-child span {
  color: rgba(255, 255, 255, 0.6);
}
.connected-stage {
  position: relative;
  min-height: 360px;
}
.cloud-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-color: rgba(34, 155, 73, 0.4);
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 28px rgba(34, 155, 73, 0.07);
}
.cloud-core strong {
  font-size: 16px;
}
.cloud-core span {
  display: block;
  margin-top: 4px;
  color: #9edbaa;
  font-size: 10px;
}
.device-card {
  position: absolute;
  width: 145px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(29, 61, 33, 0.1);
}
.device-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 92px;
  height: 1px;
  background: #a6c8ab;
  transform-origin: left;
}
.device-card strong {
  display: block;
  font-size: 13px;
}
.device-card span {
  display: block;
  margin-top: 6px;
  color: #748074;
  font-size: 10px;
}
.device-card.one {
  top: 12px;
  left: 0;
}
.device-card.one::after {
  right: -80px;
  bottom: -8px;
  transform: rotate(32deg);
}
.device-card.two {
  top: 12px;
  right: 0;
}
.device-card.two::after {
  left: -64px;
  bottom: -8px;
  transform: rotate(148deg);
}
.device-card.three {
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.device-card.three::after {
  top: -31px;
  left: 72px;
  transform: rotate(-90deg);
}

/* AI Powered Insights */
.ai-insights {
  background: radial-gradient(circle at 87% 18%, rgba(75, 186, 98, 0.12), transparent 28%), #f9faf8;
}
.ai-insights-visual {
  min-height: 540px;
  background: linear-gradient(145deg, #ffffff, #f2f7f0);
}
.ai-insights-visual .visual-label::after {
  content: "Live metrics";
}
.ai-insight-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(34, 155, 73, 0.18);
  border-radius: 18px;
  background: var(--green-900);
  color: #fff;
}
.ai-insight-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(141, 222, 157, 0.42);
  border-radius: 12px;
  background: rgba(141, 222, 157, 0.12);
  color: #9beaab;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.ai-insight-banner small {
  display: block;
  color: #9beaab;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ai-insight-banner strong {
  display: block;
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.ai-insight-banner p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.55;
}
.ai-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.ai-dashboard-stats div {
  position: relative;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.ai-dashboard-stats small {
  display: block;
  color: #737d72;
  font-size: 9px;
}
.ai-dashboard-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}
.ai-dashboard-stats span {
  position: absolute;
  top: 17px;
  right: 14px;
  color: var(--green-700);
  font-size: 8px;
  font-weight: 800;
}
.ai-chart-card {
  margin-top: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.ai-chart-heading,
.ai-chart-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-chart-heading span {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.ai-chart-heading small,
.ai-chart-labels {
  color: #8a9389;
  font-size: 8px;
}
.ai-chart {
  display: grid;
  height: 118px;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 9px;
  margin-top: 20px;
  padding: 12px 10px 0;
  border-bottom: 1px solid #dfe5dc;
  background: repeating-linear-gradient(to bottom, #edf1eb 0, #edf1eb 1px, transparent 1px, transparent 34px);
}
.ai-chart i {
  height: var(--bar-height);
  min-height: 12px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #5ac36f, var(--green-700));
}
.ai-chart i:last-child {
  background: linear-gradient(180deg, #9beaaa, #4bb862);
}
.ai-chart-labels {
  margin-top: 8px;
}
.software-principles {
  padding: 104px 0;
  background: var(--green-950);
  color: #fff;
}
.software-principles-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(52px, 9vw, 140px);
}
.software-principles h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
}
.principle-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}
.principle {
  min-height: 160px;
  padding: 28px;
  background: #172d19;
}
.principle strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}
.principle span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.65;
}
.software-cta {
  padding: 96px 0;
  background: #eef2eb;
}
.software-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 36px;
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 30px 80px rgba(28, 99, 48, 0.2);
}
.software-cta-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.04);
}
.software-cta-card > * {
  position: relative;
  z-index: 1;
}
.software-cta h2 {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}
.software-cta p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}
.software-cta .btn {
  min-width: 198px;
  background: #fff;
  color: var(--green-800);
}
.software-cta .btn:hover {
  color: var(--green-600);
}

@media (max-width: 980px) {
  .software-page nav.open .nav-current {
    color: var(--green-700);
  }
  .software-page .software-jump-nav {
    display: block;
    gap: 0;
    padding: 0;
    box-shadow: none;
  }
  .software-hero {
    min-height: auto;
    padding: 140px 0 92px;
  }
  .software-hero-grid,
  .software-intro-grid,
  .software-capability-grid,
  .software-principles-grid {
    grid-template-columns: 1fr;
  }
  .software-hero-grid {
    gap: 64px;
  }
  .software-hero-art {
    max-width: 680px;
  }
  .software-intro-grid,
  .software-capability-grid,
  .software-principles-grid {
    gap: 48px;
  }
  .software-showcase {
    padding: 92px 0;
  }
  .showcase-heading {
    margin-bottom: 32px;
  }
  .example-slide {
    grid-template-columns: 1fr;
  }
  .example-copy {
    min-height: 390px;
  }
  .example-visual {
    min-height: 470px;
  }
  .software-capability.is-reversed .software-capability-copy,
  .software-capability.is-reversed .capability-visual {
    order: initial;
  }
  .capability-visual {
    min-height: 470px;
  }
  .software-cta-card {
    grid-template-columns: 1fr;
  }
  .software-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .software-hero {
    padding: 124px 0 72px;
  }
  .software-hero h1 {
    font-size: 48px;
  }
  .software-hero-copy {
    font-size: 16px;
  }
  .software-hero-art {
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }
  .software-hero-art img {
    border-radius: 16px;
  }
  .fan-selector-window {
    border-radius: 16px;
  }
  .fan-selector-tabs {
    overflow-x: auto;
  }
  .fan-selector-tabs button {
    flex: 1 0 auto;
  }
  .fan-selector-workspace {
    grid-template-columns: 1fr;
  }
  .fan-selector-sidebar {
    min-height: 168px;
    border-right: 0;
    border-bottom: 1px solid #dfe7dd;
  }
  .fan-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fan-product {
    align-items: flex-start;
    padding: 9px 8px;
  }
  .fan-product strong {
    display: none;
  }
  .fan-selector-chart-card {
    padding: 14px 12px 11px;
  }
  .fan-chart-wrap {
    height: 205px;
  }
  .software-jump-nav {
    top: 81px;
  }
  .software-intro {
    padding: 76px 0 62px;
  }
  .software-showcase {
    padding: 76px 0;
    scroll-margin-top: 126px;
  }
  .showcase-heading {
    margin-bottom: 26px;
  }
  .showcase-heading h2 {
    font-size: 39px;
  }
  .showcase-heading p {
    margin-top: 16px;
    font-size: 16px;
  }
  .slider-toolbar {
    justify-content: space-between;
  }
  .slider-button {
    width: 44px;
    height: 44px;
  }
  .slider-viewport {
    border-radius: 25px;
  }
  .slider-track {
    gap: 14px;
  }
  .example-slide {
    min-height: auto;
    border-radius: 24px;
  }
  .example-copy {
    min-height: 0;
    padding: 38px 26px 34px;
  }
  .example-copy h3 {
    font-size: 31px;
  }
  .example-copy p {
    font-size: 15px;
  }
  .example-tags {
    margin-top: 24px;
  }
  .example-visual {
    min-height: 365px;
    padding: 22px;
  }
  .mockup-window {
    transform: none;
  }
  .mockup-body {
    grid-template-columns: 1fr;
    min-height: 286px;
  }
  .mockup-rail {
    display: none;
  }
  .mockup-workspace {
    padding: 17px;
  }
  .mockup-cards {
    grid-template-columns: minmax(0, 1.3fr) minmax(82px, 0.7fr);
    min-height: 214px;
    gap: 8px;
  }
  .mockup-panel {
    padding: 12px;
  }
  .mockup-panel strong {
    font-size: 14px;
  }
  .chart-lines,
  .wave-lines,
  .data-lines,
  .chart-bars {
    right: 10px;
    bottom: 10px;
    left: 10px;
    height: 98px;
  }
  .model-stage {
    height: 325px;
  }
  .model-object {
    top: 118px;
    left: 10%;
    transform: skewY(-8deg) rotate(-4deg) scale(0.78);
    transform-origin: left center;
  }
  .model-object.object-wide {
    left: 3%;
  }
  .model-object.object-tall {
    top: 83px;
    left: 16%;
  }
  .model-properties {
    top: 65px;
    right: 12px;
    width: 126px;
    min-height: 205px;
    padding: 14px;
  }
  .model-properties b {
    font-size: 10px;
  }
  .phone-stage {
    height: 335px;
  }
  .phone {
    top: 14px;
    width: 158px;
    height: 310px;
    border-radius: 27px;
  }
  .phone > span {
    height: 62px;
    border-radius: 24px 24px 14px 14px;
  }
  .phone-back {
    transform: translateX(-102%) rotate(-7deg) scale(0.87);
  }
  .phone-front {
    transform: translateX(-18%) rotate(4deg);
  }
  .phone-screen {
    padding-top: 18px;
  }
  .phone-score {
    width: 68px;
    height: 68px;
    margin: 12px auto 8px;
    border-width: 6px;
    font-size: 16px;
  }
  .phone-screen em {
    margin-top: 12px;
  }
  .phone-badge {
    right: 0;
    bottom: 10px;
  }
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .software-capability {
    padding: 78px 0;
  }
  .software-capability-grid {
    gap: 38px;
  }
  .capability-visual {
    min-height: auto;
    padding: 22px;
    border-radius: 25px;
  }
  .data-overview {
    grid-template-columns: 1fr;
  }
  .data-panel {
    grid-row: auto;
  }
  .selector-flow {
    grid-template-columns: 1fr;
  }
  .selector-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }
  .output-stage {
    grid-template-columns: 1fr;
  }
  .output-card:first-child {
    grid-column: auto;
  }
  .connected-stage {
    min-height: 430px;
  }
  .cloud-core {
    width: 130px;
    height: 130px;
  }
  .device-card {
    width: 128px;
    padding: 15px;
  }
  .device-card.one {
    top: 0;
  }
  .device-card.two {
    top: 0;
  }
  .device-card.three {
    bottom: 0;
  }
  .device-card::after {
    display: none;
  }
  .ai-insights-visual {
    min-height: auto;
  }
  .ai-insight-banner {
    grid-template-columns: 1fr;
  }
  .ai-dashboard-stats {
    grid-template-columns: 1fr;
  }
  .ai-dashboard-stats div {
    padding: 15px;
  }
  .ai-chart {
    gap: 6px;
    padding-right: 4px;
    padding-left: 4px;
  }
  .software-principles {
    padding: 78px 0;
  }
  .principle-list {
    grid-template-columns: 1fr;
  }
  .principle {
    min-height: auto;
  }
  .software-cta {
    padding: 72px 0;
  }
  .software-cta-card {
    padding: 36px 26px;
    border-radius: 26px;
  }
  .software-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .software-hero-art {
    transform: none;
  }
  .slider-viewport {
    scroll-behavior: auto;
  }
  .slider-button,
  .slider-dot {
    transition: none;
  }
}

/* Business Process Outsourcing detail page */
.bpo-page {
  background: #f7f9f5;
}
.bpo-page header .nav-current {
  color: #fff;
}
.bpo-page header.is-scrolled .nav-current {
  color: var(--green-700);
}
.bpo-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 780px;
  align-items: center;
  padding: 158px 0 112px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 0, 0, 0.2), transparent 28%), radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.3), transparent 34%),
    linear-gradient(135deg, #454d4c 0%, #454c4d 52%, #393e41 100%);
}
.bpo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}
.bpo-hero::after {
  content: "";
  position: absolute;
  right: -240px;
  bottom: -390px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(147, 226, 161, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 96px rgba(147, 226, 161, 0.035),
    0 0 0 192px rgba(147, 226, 161, 0.025);
}
.bpo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(64px, 9vw, 140px);
}
.bpo-hero h1 {
  max-width: 850px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.97;
  text-wrap: balance;
}
.bpo-hero-subtitle {
  max-width: 670px;
  margin-top: 28px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}
.bpo-hero-copy {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}
.bpo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.bpo-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.bpo-hero .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.13);
}
.bpo-operations-art {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(158, 222, 171, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.35);
  transform: rotate(1.2deg);
}
.bpo-operations-window {
  overflow: hidden;
  min-height: 460px;
  border-radius: 21px;
  background: #f7faf6;
  color: var(--ink);
}
.bpo-window-top {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #dfe6dc;
  background: #fff;
}
.bpo-window-top > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5c9;
}
.bpo-window-top small {
  margin-left: 7px;
  color: #707a70;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.bpo-window-top em {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bpo-window-summary {
  position: relative;
  margin: 20px 20px 12px;
  padding: 23px;
  border-radius: 18px;
  background: var(--green-900);
  color: #fff;
}
.bpo-window-summary small,
.bpo-window-summary span {
  display: block;
}
.bpo-window-summary small {
  color: #a4dcae;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bpo-window-summary strong {
  display: block;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 38px;
}
.bpo-window-summary span {
  position: absolute;
  right: 22px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}
.bpo-workflow-list {
  display: grid;
  gap: 9px;
  padding: 0 20px 20px;
}
.bpo-workflow-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.bpo-workflow-list i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.bpo-workflow-list strong,
.bpo-workflow-list small {
  display: block;
}
.bpo-workflow-list strong {
  font-size: 11px;
}
.bpo-workflow-list small {
  margin-top: 3px;
  color: #7a8479;
  font-size: 8px;
}
.bpo-workflow-list em {
  color: var(--green-700);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.bpo-intro {
  padding: 104px 0 94px;
  background: #fff;
}
.bpo-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 150px);
}
.bpo-intro h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.3vw, 60px);
  line-height: 1.04;
}
.bpo-intro-copy {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}
.bpo-intro-copy p + p {
  margin-top: 20px;
}
.bpo-services {
  padding: 116px 0;
  scroll-margin-top: 140px;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 0, 0, 0.2), transparent 28%), radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.3), transparent 34%),
    linear-gradient(135deg, #454d4c 0%, #454c4d 52%, #393e41 100%);
  color: #fff;
}
.bpo-section-heading {
  max-width: 890px;
}
.bpo-section-heading h2 {
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
}
.bpo-section-heading > p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}
.bpo-services .capability-index {
  color: #8dde9d;
}
.bpo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.bpo-service-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.bpo-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 218, 151, 0.38);
  background: rgba(255, 255, 255, 0.085);
}
.bpo-service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(141, 222, 157, 0.28);
  border-radius: 14px;
  background: rgba(141, 222, 157, 0.09);
  color: #8dde9d;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.bpo-service-number {
  position: absolute;
  top: 31px;
  right: 30px;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.bpo-service-card h3 {
  margin-top: 31px;
  color: #fff;
  font-size: 24px;
  line-height: 1.16;
}
.bpo-service-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}
.bpo-benefits {
  padding: 116px 0;
  scroll-margin-top: 140px;
  background: #edf2ea;
}
.bpo-benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(64px, 9vw, 140px);
}
.bpo-benefits-copy h2 {
  max-width: 680px;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.03;
}
.bpo-benefits-copy p {
  max-width: 590px;
  margin-top: 23px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.bpo-benefit-list {
  overflow: hidden;
  border: 1px solid rgba(30, 67, 37, 0.11);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(29, 61, 33, 0.08);
}
.bpo-benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 27px 30px;
  border-bottom: 1px solid var(--line);
}
.bpo-benefit-list article:last-child {
  border-bottom: 0;
}
.bpo-benefit-list article > span {
  color: var(--green-600);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}
.bpo-benefit-list h3 {
  font-size: 20px;
}
.bpo-benefit-list p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}
.bpo-approach {
  padding: 116px 0;
  scroll-margin-top: 140px;
  background: #fff;
}
.bpo-approach .bpo-section-heading h2 {
  color: var(--ink);
}
.bpo-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.bpo-approach-grid article {
  min-height: 275px;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f7f9f5;
}
.bpo-approach-grid span {
  color: var(--green-600);
  font-size: 12px;
  font-weight: 800;
}
.bpo-approach-grid h3 {
  margin-top: 48px;
  font-size: 26px;
}
.bpo-approach-grid p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.bpo-contact {
  scroll-margin-top: 120px;
}
.bpo-contact .software-cta-card {
  background: linear-gradient(135deg, var(--green-600), #187b39);
}

@media (max-width: 980px) {
  .bpo-page nav.open .nav-current {
    color: var(--green-700);
  }
  .bpo-page .software-jump-nav {
    display: block;
    gap: 0;
    padding: 0;
    box-shadow: none;
  }
  .bpo-hero {
    min-height: auto;
    padding: 140px 0 92px;
  }
  .bpo-hero-grid,
  .bpo-intro-grid,
  .bpo-benefits-grid {
    grid-template-columns: 1fr;
  }
  .bpo-hero-grid {
    gap: 64px;
  }
  .bpo-operations-art {
    max-width: 680px;
  }
  .bpo-intro-grid,
  .bpo-benefits-grid {
    gap: 48px;
  }
  .bpo-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bpo-approach-grid {
    grid-template-columns: 1fr;
  }
  .bpo-approach-grid article {
    min-height: auto;
  }
  .bpo-approach-grid h3 {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .bpo-hero {
    padding: 124px 0 72px;
  }
  .bpo-hero h1 {
    font-size: 47px;
  }
  .bpo-hero-copy {
    font-size: 16px;
  }
  .bpo-operations-art {
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }
  .bpo-operations-window {
    min-height: 0;
    border-radius: 16px;
  }
  .bpo-window-summary span {
    position: static;
    margin-top: 7px;
  }
  .bpo-workflow-list > div {
    grid-template-columns: auto 1fr;
  }
  .bpo-workflow-list em {
    grid-column: 2;
  }
  .bpo-intro {
    padding: 76px 0 70px;
  }
  .bpo-services,
  .bpo-benefits,
  .bpo-approach {
    padding: 78px 0;
    scroll-margin-top: 126px;
  }
  .bpo-section-heading h2,
  .bpo-benefits-copy h2,
  .bpo-intro h2 {
    font-size: 38px;
  }
  .bpo-service-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .bpo-service-card {
    min-height: 0;
  }
  .bpo-benefit-list article {
    padding: 23px 21px;
  }
  .bpo-approach-grid {
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpo-operations-art {
    transform: none;
  }
  .bpo-service-card {
    transition: none;
  }
}

/* About page */
.about-page {
  background: #f7f9f5;
}
.about-page header .nav-current {
  color: #fff;
}
.about-page header.is-scrolled .nav-current {
  color: var(--green-700);
}
.about-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 158px 0 108px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 216, 169, 0.23), transparent 26%), radial-gradient(circle at 15% 88%, rgba(34, 155, 73, 0.3), transparent 34%),
    linear-gradient(135deg, #4ca745 0%, #229b49 48%, #24ab50 100%);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.about-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: -230px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(159, 216, 169, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(159, 216, 169, 0.035),
    0 0 0 180px rgba(159, 216, 169, 0.02);
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}
.about-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(52px, 6.3vw, 90px);
  line-height: 0.97;
  text-wrap: balance;
}
.about-hero-copy > p {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}
.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    gap 0.2s ease;
}
.about-text-link:hover {
  gap: 17px;
  border-color: #fff;
}
.about-at-a-glance {
  position: relative;
  padding: 32px 34px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}
.about-card-label {
  display: block;
  padding-bottom: 20px;
  color: #a9e3b5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-fact {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.about-fact strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.25vw, 34px);
  letter-spacing: -0.04em;
}
.about-fact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}
.about-jump-nav {
  position: sticky;
  z-index: 20;
  top: 81px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.about-jump-nav .container {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.about-jump-nav .container::-webkit-scrollbar {
  display: none;
}
.about-jump-nav a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  color: #596359;
  font-size: 12px;
  font-weight: 750;
}
.about-jump-nav a:hover {
  color: var(--green-700);
  background: var(--green-100);
}
.about-story {
  padding: 116px 0 110px;
  scroll-margin-top: 142px;
  background: #fff;
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}
.about-section-heading h2 {
  max-width: 610px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.04;
  text-wrap: balance;
}
.about-story-content {
  padding-top: 42px;
}
.about-story-content p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}
.about-story-content .about-story-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 86px;
}
.about-principles article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f7f9f5;
}
.about-principles span {
  color: var(--green-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.about-principles h3 {
  margin-top: 44px;
  font-size: 25px;
}
.about-principles p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.about-team {
  padding: 116px 0 124px;
  scroll-margin-top: 142px;
  background: #eef3eb;
}
.about-team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 70px;
}
.about-team-heading h2 {
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1;
}
.about-team-heading > p {
  max-width: 560px;
  padding-bottom: 6px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}
.team-card {
  overflow: hidden;
  border: 1px solid rgba(31, 69, 34, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(28, 55, 26, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(28, 55, 26, 0.11);
}
.team-photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 3.1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: #229b49;
}
.team-card:nth-child(3n + 2) .team-photo-placeholder {
  background: #757575;
}
.team-card:nth-child(3n + 3) .team-photo-placeholder {
  background: #229b49;
}
.team-photo-placeholder::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.035),
    0 0 0 84px rgba(255, 255, 255, 0.025);
}
.team-photo-placeholder span {
  position: relative;
  z-index: 1;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.team-photo-placeholder small {
  position: absolute;
  right: 20px;
  bottom: 17px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.team-card-copy {
  padding: 27px 28px 31px;
}
.team-card-copy h3 {
  font-size: 23px;
}
.team-role {
  display: block;
  margin-top: 5px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-card-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.about-history {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
  scroll-margin-top: 142px;
  color: #fff;
  background: #14260f;
}
.about-history::before {
  content: "";
  position: absolute;
  left: -210px;
  bottom: -270px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(159, 216, 169, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(159, 216, 169, 0.025);
}
.about-history-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(80px, 11vw, 170px);
  align-items: start;
}
.about-history-intro {
  position: sticky;
  top: 150px;
}
.about-history .section-kicker {
  color: #a9e3b5;
}
.about-history-intro h2 {
  max-width: 520px;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1;
}
.about-history-intro > p {
  max-width: 490px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 16px;
  line-height: 1.75;
}
.history-since {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-top: 52px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.history-since span {
  color: #a9e3b5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.history-since strong {
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  letter-spacing: -0.04em;
}
.history-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 15px;
  left: 103px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.history-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 52px;
  min-height: 174px;
  padding-bottom: 44px;
}
.history-timeline li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 98px;
  width: 11px;
  height: 11px;
  border: 3px solid #14260f;
  border-radius: 50%;
  background: #71c984;
  box-shadow: 0 0 0 1px rgba(113, 201, 132, 0.5);
}
.history-year {
  color: #a9e3b5;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.history-timeline h3 {
  font-size: clamp(23px, 2vw, 29px);
}
.history-timeline p {
  max-width: 630px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
}
.about-cta {
  padding: 104px 0;
  background: #fff;
}
.about-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  overflow: hidden;
  padding: clamp(38px, 5.5vw, 72px);
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.15), transparent 27%), linear-gradient(135deg, var(--green-600), #187b39);
  box-shadow: 0 28px 74px rgba(26, 135, 64, 0.2);
}
.about-cta-card span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-cta-card h2 {
  max-width: 820px;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.04;
}
.about-cta-card p {
  max-width: 720px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}
.about-cta-card .btn {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fff;
  color: var(--green-800);
}
.about-cta-card .btn:hover {
  background: var(--green-100);
}

@media (max-width: 980px) {
  .about-page nav.open .nav-current {
    color: var(--green-700);
  }
  .about-page .about-jump-nav {
    display: block;
    gap: 0;
    padding: 0;
    box-shadow: none;
  }
  .about-hero {
    min-height: auto;
    padding: 140px 0 92px;
  }
  .about-hero-grid,
  .about-story-grid,
  .about-team-heading,
  .about-history-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-grid {
    gap: 64px;
  }
  .about-at-a-glance {
    max-width: 680px;
  }
  .about-story-grid,
  .about-team-heading,
  .about-history-grid {
    gap: 46px;
  }
  .about-story-content {
    padding-top: 0;
  }
  .about-principles {
    grid-template-columns: 1fr;
  }
  .about-principles article {
    min-height: auto;
  }
  .about-principles h3 {
    margin-top: 30px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-history-intro {
    position: static;
  }
  .history-since {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 124px 0 72px;
  }
  .about-hero-copy h1 {
    font-size: 47px;
  }
  .about-hero-copy > p {
    font-size: 16px;
  }
  .about-at-a-glance {
    padding: 25px 24px 10px;
    border-radius: 22px;
  }
  .about-fact {
    grid-template-columns: 95px 1fr;
    gap: 17px;
    padding: 20px 0;
  }
  .about-story,
  .about-team,
  .about-history,
  .about-cta {
    padding-top: 78px;
    padding-bottom: 78px;
    scroll-margin-top: 126px;
  }
  .about-section-heading h2,
  .about-team-heading h2,
  .about-history-intro h2 {
    font-size: 39px;
  }
  .about-principles {
    margin-top: 52px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .team-photo-placeholder {
    aspect-ratio: 4 / 2.7;
  }
  .history-timeline::before {
    left: 76px;
  }
  .history-timeline li {
    grid-template-columns: 55px 1fr;
    gap: 42px;
    min-height: 160px;
  }
  .history-timeline li::before {
    left: 71px;
  }
  .about-cta-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    border-radius: 25px;
  }
  .about-cta-card .btn {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .about-text-link {
    transition: none;
  }
}
