:root {
  color-scheme: light;
  --bg: #f3f5f7;
  --surface: #ffffff;
  --surface-soft: #eef1f4;
  --ink: #161a1d;
  --muted: #657079;
  --line: #d9dfe4;
  --line-strong: #c3cbd2;
  --green: #2b7a4b;
  --green-soft: #e2f2e8;
  --blue: #2d65a4;
  --blue-soft: #e5eef9;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

html.page-starting body {
  opacity: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 24px);
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 232px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 0 10px 0 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(244, 248, 250, .32);
  box-shadow: 0 10px 30px rgba(31, 42, 51, .07);
  -webkit-backdrop-filter: blur(16px) saturate(1.42) contrast(1.06);
  backdrop-filter: blur(16px) saturate(1.42) contrast(1.06);
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.brand {
  width: 185px;
  min-width: 185px;
}

.brand img {
  width: 100%;
  filter: brightness(0) saturate(100%);
  opacity: .82;
  transition: filter .35s ease, opacity .35s ease;
}

.header-services {
  position: absolute;
  left: 50%;
  min-width: 0;
  width: max-content;
  max-width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  white-space: nowrap;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  transform: translateX(-50%);
  transition: color .35s ease;
}

.header-services a {
  position: relative;
  padding: 23px 0 21px;
  transition: color .2s ease;
}

.header-services a:hover,
.header-services a.active {
  color: var(--ink);
}

.account-toggle {
  position: relative;
  grid-column: 4;
  width: auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  transition: color .18s ease;
}

.account-toggle:hover {
  background: transparent;
  color: var(--ink);
}

.dialog-close svg,
.chat-toggle svg,
.chat-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.menu-toggle {
  position: relative;
  grid-column: 5;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: background .25s ease, border-color .25s ease, color .35s ease;
}

.site-header.header-on-dark {
  border-color: rgba(255,255,255,.3);
  background: rgba(18, 24, 27, .34);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.site-header.header-on-dark .brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
}

.site-header.header-on-dark .header-services {
  color: rgba(255,255,255,.76);
}

.site-header.header-on-dark .header-services a:hover,
.site-header.header-on-dark .header-services a.active {
  color: #fff;
}

.site-header.header-on-dark .menu-toggle {
  border-color: transparent;
  background: transparent;
  color: #fff;
}

.site-header.header-on-dark .account-toggle {
  background: transparent;
  color: #fff;
}

.site-header.header-on-dark .account-toggle:hover {
  background: transparent;
  color: #fff;
}

.menu-toggle:hover {
  border-color: transparent;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top .25s ease, opacity .2s ease, transform .25s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
}

.menu-toggle span:last-child {
  top: 30px;
}

body.menu-open .menu-toggle span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  background: rgba(20, 24, 27, .32);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease, visibility 0s linear .3s;
}

.staggered-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(470px, calc(100% - 18px));
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,.1);
  background: #171c1f;
  color: #fff;
  box-shadow: -24px 0 70px rgba(21, 28, 32, .24);
  transform: translateX(104%);
  transition: transform .56s cubic-bezier(.22, 1, .36, 1);
}

.staggered-menu-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: .83rem;
  font-weight: 700;
  color: rgba(255,255,255,.68);
  letter-spacing: 0;
}

.menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

.staggered-menu-nav {
  display: grid;
  margin-top: 24px;
}

.menu-link {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity .35s ease var(--delay),
    transform .45s cubic-bezier(.22, 1, .36, 1) var(--delay),
    color .2s ease;
}

.menu-link:hover {
  color: #b8f29d;
}

.menu-link span {
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  font-weight: 600;
}

.menu-link strong {
  min-width: 0;
  overflow: hidden;
  color: currentColor;
  font-size: 1.55rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

body.menu-open .staggered-menu {
  transform: translateX(0);
}

body.menu-open .menu-link {
  opacity: 1;
  transform: translateX(0);
}

main {
  width: 100%;
}

.section {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 104px 0;
  scroll-margin-top: 110px;
}

.products-showcase {
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  align-content: start;
  gap: 24px;
  padding-top: 120px;
  padding-bottom: 52px;
}

.projects-section {
  padding-top: 60px;
}

.products-title {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 520;
  text-align: center;
}

.program-accordion {
  --program-gap: 10px;
  --program-media-size: 520px;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: min(560px, calc(100vh - 190px));
  min-height: 460px;
  display: flex;
  gap: var(--program-gap);
  contain: layout paint;
}

.program-loading {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #20272b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

.program-accordion.is-loading .program-loading {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.program-loading span {
  color: transparent;
  background: linear-gradient(105deg, #788188 36%, #ffffff 50%, #788188 64%);
  background-size: 220% 100%;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.05rem;
  font-weight: 650;
  animation: shinyText 2s linear infinite;
}

@keyframes shinyText {
  to {
    background-position: -120% 0;
  }
}

.program-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0a1013;
  cursor: pointer;
  display: block;
  outline: none;
  contain: paint style;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: flex-grow .72s cubic-bezier(.215, .61, .355, 1);
}

.program-panel.active {
  flex-grow: var(--program-grow, 10.8333);
}

.program-panel,
.program-panel * {
  cursor: pointer !important;
  -webkit-user-select: none;
  user-select: none;
}

.program-panel:focus-visible {
  box-shadow: 0 0 0 2px #fff;
}

.program-panel-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.program-panel-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--program-media-size);
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.program-panel-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
  transition: opacity .72s cubic-bezier(.215, .61, .355, 1);
}

.program-panel-image--muted {
  opacity: 1;
  filter: grayscale(1);
}

.program-panel-image--color {
  opacity: 0;
  filter: brightness(1.18) saturate(1.34) contrast(1.05);
}

.program-panel.active .program-panel-image--muted {
  opacity: 0;
}

.program-panel.active .program-panel-image--color {
  opacity: 1;
}

.program-panel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(5, 10, 13, .64) 100%),
    rgba(5, 10, 13, .14);
}

.program-panel-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
}

.program-panel.active .program-panel-label {
  opacity: 1;
  transition: opacity .22s ease .245s;
}

.program-panel-bar {
  flex: 0 0 auto;
  width: 3px;
  height: 26px;
  border-radius: 3px;
  margin-top: 2px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, .6);
}

.program-panel-title {
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  line-height: 1.15;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.program-panel-details {
  width: min(500px, calc(100vw - 96px));
  flex: 0 0 auto;
}

.program-panel-details p {
  max-width: 470px;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.45;
}

.program-panel-details a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 6px;
  background: rgba(10, 15, 18, .62);
  color: #fff;
  font-size: .78rem;
  font-weight: 650;
  pointer-events: auto;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.program-panel-details a:hover {
  border-color: #fff;
  background: #fff;
  color: #11171a;
}

.rotating-statement {
  width: 232px;
  min-width: 0;
  max-width: 232px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: transparent;
  font-size: 1.66rem;
  line-height: 1;
  font-weight: 650;
  pointer-events: none;
}

.rotating-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  justify-content: flex-start;
  padding: 0;
  color: transparent;
}

.rotating-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  transform-origin: left center;
  transform: scaleX(.72);
}

.rotating-fold-segment {
  display: block;
  height: 42px;
  flex: 0 0 auto;
  perspective: 700px;
  transform-style: preserve-3d;
}

.rotating-fold-piece {
  position: relative;
  display: block;
  height: 42px;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.rotating-mask-canvas {
  display: block;
  height: 42px;
  filter: saturate(1.08) contrast(1.05);
}

.rotating-source-media {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.rotating-word.is-entering .rotating-fold-piece {
  animation: foldTextIn .65s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: calc(var(--char-order) * 45ms);
}

.rotating-word.is-leaving .rotating-fold-piece {
  animation: rotatingCharOut .28s cubic-bezier(.55, 0, 1, .45) both;
  animation-delay: calc(var(--char-reverse) * 12ms);
}

@keyframes foldTextIn {
  from {
    opacity: 0;
    filter: brightness(.45) saturate(.72) contrast(1.3);
    transform: rotateX(-92deg);
  }
  to {
    opacity: 1;
    filter: saturate(1.08) contrast(1.05);
    transform: rotateX(0deg);
  }
}

@keyframes rotatingCharOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-115%);
  }
}

.projects-section,
.equipment-section,
.pricing-section,
.process-section,
.stack-section {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(320px, 1fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.04;
  font-weight: 500;
}

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

.project-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(260px, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: color .24s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #20272b;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.22, .8, .25, 1);
  will-change: transform;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.project-more {
  align-self: flex-start;
  margin-top: 18px;
  color: var(--green);
  font-size: .85rem;
  font-weight: 700;
  transition: color .14s ease-out;
}

.project-card:hover .project-more {
  color: #a9e5bb;
}

.project-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--green-soft);
  isolation: isolate;
  transition: background-color .14s ease-out, border-color .14s ease-out;
}

.project-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.project-card:hover .project-visual {
  border-color: rgba(255,255,255,.1);
  background: #171c1f;
}

.project-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px;
}

.tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-soft);
  color: #4c575e;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color .14s ease-out, border-color .14s ease-out, color .14s ease-out;
}

.project-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.12;
  font-weight: 550;
  transition: color .14s ease-out;
}

.project-content p {
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
  transition: color .14s ease-out;
}

.project-content ul,
.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-content li,
.pricing-card li {
  position: relative;
  padding-left: 16px;
  color: #3f484e;
  font-size: .86rem;
  line-height: 1.35;
  transition: color .14s ease-out;
}

.project-card:hover .tag {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #a9e5bb;
}

.project-card:hover .project-content h3 {
  color: #fff;
}

.project-card:hover .project-content p,
.project-card:hover .project-content li {
  color: #c7cfd4;
}

.project-content li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

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

.equipment-visual {
  height: 168px;
  margin: -26px -26px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--surface-soft);
}

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

.equipment-grid article.has-photo {
  padding-top: 0;
  overflow: hidden;
}

.equipment-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: background-color .14s ease-out, color .14s ease-out;
}

.equipment-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border-radius: 5px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color .14s ease-out, color .14s ease-out;
}

.equipment-grid h3 {
  margin: 30px 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.equipment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  transition: color .14s ease-out;
}

.equipment-grid article:hover {
  background: #20272b;
  color: #fff;
}

.equipment-grid article:hover span {
  background: rgba(255, 255, 255, .08);
  color: #a9e5bb;
}

.equipment-grid article:hover p {
  color: #c7cfd4;
}

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

.pricing-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: background-color .14s ease-out, color .14s ease-out;
}

.pricing-card > span {
  color: var(--green);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .14s ease-out;
}

.pricing-card h3 {
  margin: 24px 0 10px;
  font-size: 1.5rem;
  font-weight: 550;
}

.pricing-card strong {
  font-size: 2rem;
  font-weight: 550;
}

.pricing-card p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  transition: color .14s ease-out;
}

.pricing-card ul {
  margin-bottom: 28px;
}

.pricing-card a {
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
  transition: background-color .14s ease-out, border-color .14s ease-out, color .14s ease-out;
}

.pricing-card:hover {
  background: #20272b;
  color: #fff;
}

.pricing-card:hover > span {
  color: #a9e5bb;
}

.pricing-card:hover p,
.pricing-card:hover li {
  color: #c7cfd4;
}

.pricing-card:hover a {
  border-color: #93d7aa;
  background: #93d7aa;
  color: #173321;
}

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

.process-timeline article {
  min-height: 230px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  transition: background-color .14s ease-out, color .14s ease-out;
}

.process-timeline article:last-child {
  border-right: 0;
}

.process-timeline span {
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  transition: color .14s ease-out;
}

.process-timeline h3 {
  margin: 50px 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  transition: color .14s ease-out;
}

.process-timeline article:hover {
  background: #20272b;
  color: #fff;
}

.process-timeline article:hover span {
  color: #a9e5bb;
}

.process-timeline article:hover p {
  color: #c7cfd4;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-grid span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: #3b454b;
  font-size: .9rem;
  font-weight: 600;
  transition: background-color .14s ease-out, color .14s ease-out;
}

.stack-grid span:hover {
  background: #20272b;
  color: #fff;
}

.partner-loop {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 15px 48px 19px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.partner-loop-label {
  flex: 0 0 auto;
  color: #77858b;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-loop-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-loop-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: partner-loop-scroll var(--loop-duration, 28s) linear infinite;
}

.partner-loop-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.partner-loop-group span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: #dfe6e9;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.partner-loop-group span::after {
  content: "";
  position: absolute;
  right: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #75d497;
}

@keyframes partner-loop-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

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

.registration-layer {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--viewport-offset, 0px);
  height: var(--viewport-height, 100dvh);
  z-index: 2100;
  display: grid;
  place-items: center;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .36s;
}

.registration-layer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.registration-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(17, 22, 25, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  opacity: 0;
  transition:
    opacity .32s ease,
    background-color .36s ease,
    -webkit-backdrop-filter .36s ease,
    backdrop-filter .36s ease;
}

.registration-layer.is-open .registration-backdrop {
  background: rgba(17, 22, 25, .42);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 1;
}

.registration-dialog {
  --auth-inset-top: 34px;
  --auth-inset-side: 34px;
  --auth-inset-bottom: 34px;
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));

  height: min(540px, calc(var(--viewport-height, 100dvh) - 24px));
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(17, 25, 29, .2);
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    height .42s cubic-bezier(.22, 1, .36, 1),
    opacity .24s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1);
}

.registration-dialog[data-auth-mode="register"] {
  height: min(620px, calc(var(--viewport-height, 100dvh) - 24px));
}

.registration-layer.is-open .registration-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  transition: background-color .18s ease;
}

.dialog-close:hover {
  background: #dfe5e9;
}

.auth-view {
  position: absolute;
  top: var(--auth-inset-top);
  left: var(--auth-inset-side);
  right: var(--auth-inset-side);
  max-height: calc(100% - var(--auth-inset-top) - var(--auth-inset-bottom));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity .22s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .32s;
}

.auth-view--login {
  transform: translateX(-28px);
}

.registration-dialog[data-auth-mode="login"] .auth-view--login,
.registration-dialog[data-auth-mode="register"] .auth-view--register {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: .08s, 0s, 0s;
}

.registration-dialog h2 {
  max-width: 390px;
  margin: 24px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 550;
}

.auth-view > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.registration-form,
.login-form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.registration-form label,
.login-form label,
.chat-form label {
  display: grid;
  gap: 7px;
}

.registration-form label > span:not(.field-with-action),
.login-form label > span:not(.field-with-action) {
  color: #4f5960;
  font-size: .78rem;
  font-weight: 650;
}

.field-with-action {
  position: relative;
  display: block;
}

.login-form .field-with-action input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  transform: translateY(-50%);
  transition: background-color .18s ease, color .18s ease;
}

.password-toggle:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.password-toggle[aria-pressed="true"] {
  color: var(--green);
}

.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.registration-form input,
.login-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.registration-form input,
.login-form input {
  height: 48px;
  padding: 0 14px;
}

.registration-form input:focus,
.login-form input:focus,
.chat-form textarea:focus {
  border-color: var(--green);
  box-shadow: none;
}

.registration-form button[type="submit"],
.login-form button[type="submit"],
.chat-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #20272b;
  color: #fff;
  font-weight: 700;
}

.registration-form button[type="submit"],
.login-form button[type="submit"] {
  transition: background-color .18s ease;
}

.registration-form button[type="submit"]:hover,
.login-form button[type="submit"]:hover {
  background: #2f3a40;
}

.auth-google {
  margin-top: 22px;
}

.auth-google-button {
  min-height: 44px;
  display: flex;
  justify-content: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.auth-account {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.auth-account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.auth-account-photo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-account-info {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.auth-account-info strong {
  overflow: hidden;
  font-size: .98rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account-info span {
  overflow: hidden;
  color: var(--muted);
  font-size: .84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account-request {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #20272b;
  color: #fff;
  font-weight: 700;
  transition: background-color .18s ease;
}

.auth-account-request:hover {
  background: #2f3a40;
}

.auth-account-exit {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #2b6844;
  font-weight: 700;
}

.auth-account-exit:hover {
  color: #173f2a;
}

.auth-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.auth-status:empty {
  display: none;
}

.auth-status a {
  color: #2b6844;
  font-weight: 700;
  text-decoration: underline;
}

.registration-form input:user-invalid,
.login-form input:user-invalid {
  border-color: #c2553b;
}

.registration-dialog button:focus-visible,
.registration-dialog a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.auth-switch {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #2b6844;
  font-weight: 700;
}

.auth-switch:hover {
  color: #173f2a;
}

body.registration-open {
  overflow: hidden;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: calc(20px + var(--chat-lift, 0px) + var(--keyboard-inset, 0px));
  z-index: 1600;
  transition: bottom .3s ease;
}

.chat-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #20272b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 31, 36, .2);
  transition: background-color .2s ease, color .2s ease;
}

.chat-toggle:hover {
  background: var(--green);
}

.chat-toggle > span {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid #20272b;
  border-radius: 50%;
  background: #64d68a;
}

.chat-widget.chat-on-dark .chat-toggle {
  background: #fff;
  color: #20272b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.chat-widget.chat-on-dark .chat-toggle:hover {
  background: #eef3f1;
}

.chat-widget.chat-on-dark .chat-toggle > span {
  border-color: #fff;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 410px;
  height: min(480px, calc(var(--viewport-height, 100dvh) - 110px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #20272b;
  color: #fff;
  box-shadow: 0 24px 70px rgba(10, 16, 19, .28);
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transform-origin: right bottom;
  transition: opacity .2s ease, transform .26s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .26s;
}

.chat-conversation {
  flex: 1 1 auto;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.chat-typing {
  width: 64px;
  min-height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px 6px 6px 0;
  background: #2b3438;
}

.chat-typing.is-visible {
  display: flex;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfc8cc;
  animation: chat-typing-dot .9s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: .14s; }
.chat-typing span:nth-child(3) { animation-delay: .28s; }

@keyframes chat-typing-dot {
  0%, 65%, 100% { transform: translateY(0); opacity: .45; }
  32% { transform: translateY(-4px); opacity: 1; }
}

.chat-widget.is-open .chat-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.chat-panel header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  background: #20272b;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.chat-panel header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.chat-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64d68a;
}

.chat-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.chat-head-text {
  display: grid;
  gap: 1px;
}

.chat-head-text strong {
  font-size: .95rem;
  line-height: 1.2;
}

.chat-operator {
  color: #9fb0b7;
  font-size: .74rem;
  line-height: 1.2;
}

.chat-message-author {
  display: block;
  margin-bottom: 5px;
  color: #8fd6a8;
  font-size: .74rem;
  font-weight: 700;
}

.chat-message p {
  margin: 0;
}

.chat-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 8px 8px 8px 2px;
  background: #2b3438;
  color: #e3e8ea;
  font-size: .88rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.chat-message--guest {
  align-self: flex-end;
  border-radius: 8px 8px 2px 8px;
  background: #75d497;
  color: #143024;
}

.chat-message--guest .chat-message-author {
  color: #1b4530;
}

.chat-message--greeting {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

.chat-widget.greeting-ready .chat-message--greeting {
  opacity: 1;
  transform: translateY(0);
}

.chat-message a {
  color: #b6ebc7;
  font-weight: 700;
  text-decoration: underline;
}

.chat-message--guest a {
  color: #10331f;
}

.chat-form {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 0 18px 18px;
}

.chat-form input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  outline: none;
  background: #171c1f;
  color: #fff;
  font: inherit;
  transition: border-color .18s ease;
}

.chat-form input::placeholder {
  color: rgba(255, 255, 255, .48);
}

.chat-form input:focus {
  border-color: #75d497;
}

.chat-form textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
  border-color: rgba(255, 255, 255, .16);
  background: #171c1f;
  color: #fff;
}

.chat-form textarea::placeholder {
  color: rgba(255, 255, 255, .48);
}

.chat-form textarea:focus {
  border-color: #75d497;
  box-shadow: none;
}

.chat-form button {
  background: #75d497;
  color: #163221;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 2000;
  width: min(860px, calc(100% - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #20272b;
  color: #fff;
  box-shadow: 0 18px 60px rgba(13, 20, 23, .24);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity .25s ease,
    transform .34s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .34s;
}

.cookie-close {
  position: static;
  grid-column: 3;
  grid-row: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #c8d0d4;
  transition: background-color .18s ease, color .18s ease;
}

.cookie-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding-right: 0;
}

.cookie-close:hover {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.cookie-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  pointer-events: none;
}

.cookie-consent.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.cookie-consent strong {
  font-size: .96rem;
}

.cookie-consent p {
  max-width: 560px;
  margin: 5px 0 0;
  color: #c3ccd0;
  font-size: .8rem;
  line-height: 1.45;
}

.cookie-actions {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 5px;
  font-weight: 700;
}

.cookie-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
}

.cookie-primary {
  border: 1px solid #75d497;
  background: #75d497;
  color: #173522;
}

body.cookie-pending {
  --chat-lift: 106px;
}

.primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #0f544c;
  border-radius: 6px;
  background: #0f544c;
  color: #ffffff;
  font-size: .9rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 240px minmax(0, 1fr) auto auto;
  }

  .rotating-statement {
    width: 240px;
    max-width: 240px;
  }

  .header-services {
    gap: 13px;
    font-size: .86rem;
  }

  .header-services a:nth-of-type(n+4) {
    display: none;
  }

  .project-card {
    grid-template-columns: minmax(180px, .72fr) minmax(230px, 1.28fr);
  }

  .project-content {
    padding: 24px;
  }

}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 180px minmax(0, 1fr) auto auto;
  }

  .header-services {
    display: none;
  }

  .rotating-statement {
    width: 180px;
    max-width: 180px;
  }

  .section {
    width: calc(100% - 24px);
    padding: 84px 0;
  }

  .products-showcase {
    padding-top: 110px;
    padding-bottom: 42px;
  }

  .projects-section {
    padding-top: 54px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 60px;
  }

  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto 46px;
    top: 8px;
    width: calc(100% - 16px);
    gap: 8px;
    padding: 0 6px 0 14px;
  }

  .brand {
    width: 124px;
    min-width: 124px;
  }

  .header-services {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    justify-self: end;
    grid-column: 4;
  }

  .account-toggle {
    grid-column: 3;
    height: 38px;
    padding: 0 10px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .products-showcase {
    width: 100%;
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 8px;
  }

  .projects-section {
    padding-top: 44px;
  }

  .products-title {
    width: calc(100% - 32px);
    font-size: 1.5rem;
    line-height: 1.16;
  }

  .program-accordion {
    width: 100vw;
    height: auto;
    min-height: 0;
    display: flex;
    gap: 12px;
    margin-left: calc(50% - 50vw);
    padding: 2px 0 2px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    contain: none;
  }

  .program-accordion::-webkit-scrollbar {
    display: none;
  }

  .program-panel {
    flex: 0 0 auto;
    width: min(78vw, 320px);
    height: min(62vh, 440px);
    min-height: 330px;
    overflow: hidden;
    border-radius: 18px;
    background: #0a1013;
    scroll-snap-align: start;
    cursor: default;
    transform: none;
    will-change: auto;
  }

  .program-panel:last-child {
    margin-right: 16px;
  }

  .program-panel.active {
    flex-grow: 0;
  }

  .program-panel-frame {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    will-change: auto;
  }

  .program-panel-media {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    will-change: auto;
  }

  .program-accordion .program-panel-image--muted {
    display: none;
  }

  .program-accordion .program-panel-image--color {
    opacity: 1;
    will-change: auto;
  }

  .program-panel-overlay {
    background: linear-gradient(180deg, rgba(4, 8, 10, .02) 26%, rgba(4, 8, 10, .74) 100%);
  }

  .program-panel-label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .program-panel-details {
    width: 100%;
  }

  .program-panel-title {
    font-size: 1.18rem;
  }

  .program-panel-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0 12px;
    font-size: .84rem;
  }

  .program-panel-details a {
    min-height: 36px;
    font-size: .76rem;
  }

  .program-panel,
  .program-panel-image,
  .program-panel-label,
  .program-panel.active .program-panel-label {
    transition: none;
  }

  .rotating-statement {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-head h2 {
    font-size: 1.72rem;
  }

  .project-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .registration-dialog {
    height: min(520px, calc(var(--viewport-height, 100dvh) - 18px));
    padding: 0;
    --auth-inset-top: 28px;
    --auth-inset-side: 20px;
    --auth-inset-bottom: 22px;
  }

  .registration-dialog[data-auth-mode="register"] {
    height: min(600px, calc(var(--viewport-height, 100dvh) - 18px));
  }

  .registration-dialog h2 {
    padding-right: 36px;
    font-size: 1.65rem;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  body.chat-open {
    overflow: hidden;
  }

  .chat-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--viewport-offset, 0px);
    bottom: auto;
    width: auto;
    height: var(--viewport-height, 100dvh);
    border: 0;
    border-radius: 0;
    transform: translateY(26px);
    transform-origin: center;
  }

  .chat-widget.is-open .chat-panel {
    transform: translateY(0);
  }

  .chat-widget.is-open .chat-toggle {
    display: none;
  }

  .chat-panel header {
    padding-top: max(0px, env(safe-area-inset-top));
    min-height: 62px;
  }

  .chat-form {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .cookie-consent {
    width: calc(100% - 16px);
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .cookie-copy {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
  }

  .cookie-close {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .cookie-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body.cookie-pending {
    --chat-lift: 182px;
  }

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

  .project-content {
    padding: 22px 20px 24px;
  }

  .project-content h3 {
    font-size: 1.35rem;
  }

  .equipment-grid,
  .pricing-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .equipment-grid article {
    min-height: 0;
    padding: 20px;
  }

  .equipment-visual {
    height: 190px;
    margin: -20px -20px 18px;
  }

  .equipment-grid h3 {
    margin: 18px 0 10px;
  }

  .pricing-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .process-timeline {
    border-top: 0;
  }

  .process-timeline article {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-timeline h3 {
    margin-top: 14px;
  }

  .stack-grid span {
    min-height: 42px;
    padding: 0 15px;
    font-size: .85rem;
  }

  

  

  .partner-loop {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    padding: 14px 16px 18px;
  }

  .partner-loop-group span {
    padding: 0 15px;
    font-size: .84rem;
  }

  

  

  .primary-link {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .program-panel {
    width: 82vw;
    height: min(58vh, 400px);
    min-height: 300px;
  }

  .products-title {
    font-size: 1.36rem;
  }

  .menu-link {
    min-height: 58px;
  }

  .menu-link strong {
    font-size: 1.3rem;
  }

  .staggered-menu {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  .program-loading span {
    color: #dce2e5;
    background: none;
    animation: none;
  }

  .rotating-word,
  .rotating-fold-piece {
    animation: none;
  }

  .partner-loop-track {
    animation-play-state: paused;
  }
}

.program-page main {
  padding-top: 96px;
}

.program-hero {
  width: calc(100% - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 18px;
  margin: 0 auto;
  padding: 24px 0 48px;
}

.program-hero-content {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  justify-items: start;
  padding: 26px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.program-back {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #4c575e;
  font-size: .79rem;
  font-weight: 650;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.program-back:hover {
  border-color: #20272b;
  background: #20272b;
  color: #fff;
}

.program-back svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.program-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 0 4px;
}

.program-hero h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1.06;
  font-weight: 520;
}

.program-lead {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.program-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.program-facts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.program-facts dt {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.15;
  font-weight: 550;
}

.program-facts dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
}

.ghost-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.ghost-link:hover {
  border-color: #20272b;
  background: #20272b;
  color: #fff;
}

.program-hero-media {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a1013;
}

.program-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

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

.feature-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: background-color .14s ease-out, color .14s ease-out;
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  transition: color .14s ease-out;
}

.feature-grid article:hover {
  background: #20272b;
  color: #fff;
}

.feature-grid article:hover p {
  color: #c7cfd4;
}

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

.audience-list li {
  position: relative;
  padding: 20px 22px 20px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #3f484e;
  font-size: .96rem;
  line-height: 1.5;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

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

.screen-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.screen-shot img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.screen-shot figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.45;
}

.program-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.program-links a {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #0a1013;
}

.program-links img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .2s ease, transform .3s ease;
}

.program-links a:hover img {
  opacity: .8;
  transform: scale(1.04);
}

.program-links span {
  position: relative;
  padding: 14px;
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

@media (max-width: 960px) {
  .program-hero {
    grid-template-columns: 1fr;
  }

  .program-hero-media {
    min-height: 260px;
  }

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

  .program-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .program-page main {
    padding-top: 78px;
  }

  .program-hero {
    gap: 14px;
    padding: 12px 0 34px;
  }

  .program-hero-content {
    padding: 20px 20px 24px;
  }

  .program-hero-main {
    padding: 20px 0 2px;
  }

  .program-facts {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .program-facts div:last-child {
    grid-column: 1 / -1;
  }

  .program-facts dt {
    font-size: 1.1rem;
  }

  .program-hero h1 {
    font-size: 1.72rem;
  }

  .program-lead {
    font-size: .94rem;
  }

  .program-hero-actions {
    width: 100%;
    margin-top: 22px;
  }

  .program-hero-actions .primary-link,
  .program-hero-actions .ghost-link {
    flex: 1 1 100%;
  }

  .program-hero-media {
    min-height: 200px;
  }

  .program-section {
    padding: 44px 0;
  }

  .feature-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    padding: 20px;
  }

  .audience-list li {
    padding: 16px 18px 16px 40px;
    font-size: .92rem;
  }

  .audience-list li::before {
    left: 18px;
    top: 23px;
  }

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

.site-footer {
  width: 100%;
  padding: 0;
  background: #171c1f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.45fr) minmax(0, .75fr) minmax(0, .95fr);
  gap: 40px;
  padding: 46px 48px 40px;
}

.footer-copy {
  display: block;
  margin-top: 22px;
  color: #77858b;
  font-size: .78rem;
  line-height: 1.5;
}

.footer-contacts {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-cta {
  width: 100%;
  min-height: 44px;
  font-size: .85rem;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: #9aa8ae;
  font-size: .88rem;
  line-height: 1.6;
}

.footer-mail {
  display: inline-block;
  margin-top: 16px;
  color: #8fd6a8;
  font-size: .92rem;
  font-weight: 700;
  transition: color .18s ease;
}

.footer-mail:hover {
  color: #b6ebc7;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-column--wide .footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
}

.footer-links a,
.footer-links span {
  color: #9aa8ae;
  font-size: .87rem;
  line-height: 1.35;
}

.footer-links a {
  transition: color .18s ease;
}

.footer-phone {
  color: #fff !important;
  font-size: 1.02rem !important;
  font-weight: 700;
  letter-spacing: .01em;
}

.footer-phone:hover {
  color: #8fd6a8 !important;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

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

@media (max-width: 720px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px 28px;
  }

  .footer-column--wide .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

.equipment-list {
  display: grid;
  gap: 14px;
}

.equipment-item {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(300px, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  scroll-margin-top: 120px;
}

.equipment-item-visual {
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.equipment-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.equipment-item-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.14;
  font-weight: 550;
}

.equipment-item-body > p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.equipment-item-body ul {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-item-body li {
  position: relative;
  padding-left: 16px;
  color: #3f484e;
  font-size: .88rem;
  line-height: 1.4;
}

.equipment-item-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.equipment-option {
  width: 100%;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #cfe3d6;
  border-radius: 6px;
  background: var(--green-soft);
  color: #1c5738;
  font-size: .86rem;
  line-height: 1.45;
  font-weight: 600;
}

.equipment-price {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.equipment-price strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 550;
}

.equipment-price a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.equipment-price a:hover {
  border-color: #20272b;
  background: #20272b;
  color: #fff;
}

@media (max-width: 960px) {
  .equipment-item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .equipment-item-body {
    padding: 22px 20px 24px;
  }

  .equipment-item-body h3 {
    font-size: 1.32rem;
  }

  .equipment-price {
    margin-top: 20px;
    padding-top: 16px;
  }

  .equipment-price a {
    flex: 1 1 100%;
  }
}

.section-link {
  justify-self: start;
  align-self: end;
  color: var(--green);
  font-size: .88rem;
  font-weight: 700;
  transition: color .16s ease;
}

.section-link:hover {
  color: #16472c;
}

.equipment-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.equipment-grid article {
  position: relative;
}

.equipment-option {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #cfe3d6;
  border-radius: 6px;
  background: var(--green-soft);
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease;
}

.equipment-option:hover {
  border-color: #a9cfba;
}

.equipment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.equipment-option-box {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid #8fb69f;
  border-radius: 5px;
  background: #fff;
  transition: border-color .16s ease, background-color .16s ease;
}

.equipment-option-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(42deg);
  transition: opacity .14s ease;
}

.equipment-option input:checked + .equipment-option-box {
  border-color: #1c6b41;
  background: #1c6b41;
}

.equipment-option input:checked + .equipment-option-box::after {
  opacity: 1;
}

.equipment-option input:focus-visible + .equipment-option-box {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.equipment-option-text {
  color: #1c5738;
  font-size: .86rem;
  line-height: 1.45;
  font-weight: 600;
}

.equipment-option-text b {
  font-weight: 700;
  white-space: nowrap;
}
