/** Shopify CDN: Minification failed

Line 1134:6 Expected ":"

**/
:root {
  --ink: #0c1726;
  --ink-soft: #425168;
  --night: #07111f;
  --night-2: #0d1b2e;
  --paper: #ffffff;
  --cloud: #f3f5f8;
  --line: #dbe1e8;
  --accent: #ff5b35;
  --accent-dark: #db3f1c;
  --violet: #7667ff;
  --cyan: #45c7e8;
  --success: #0d7b50;
  --danger: #b42318;
  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 26px 70px rgba(7, 17, 31, 0.12);
  --shadow-soft: 0 14px 36px rgba(7, 17, 31, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(69, 199, 232, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(60px, 6.5vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #bac5ff;
}

.eyebrow--light span {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.75rem, 5.1vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 91, 53, 0.24);
}

.button--accent:hover {
  background: #ff704f;
  box-shadow: 0 16px 38px rgba(255, 91, 53, 0.32);
}

.button--ghost {
  color: #f6f8fc;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: #1d2c40;
}

.button--light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(4, 9, 20, 0.2);
}

.button--light:hover {
  background: #f7f8fb;
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: #e7ecf5;
  background: #020711;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-align: center;
}

.announcement__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 91, 53, 0.12);
}

.announcement a {
  margin-left: 6px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.97);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 31px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #dbe2ed;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: #fff;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  min-width: 76px;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-toggle__icon {
  display: grid;
  width: 22px;
  gap: 4px;
}

.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(118, 103, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0a1728 56%, #081421 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.hero__glow--one {
  top: 16%;
  right: 13%;
  background: var(--violet);
}

.hero__glow--two {
  right: 38%;
  bottom: 0;
  width: 280px;
  height: 280px;
  background: var(--cyan);
}

.hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  padding-block: clamp(62px, 6.5vw, 88px) 54px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: #b9c5d6;
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 33px;
}

.hero__proof {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 28px;
  margin: 0;
  padding: 0;
  color: #d7dfeb;
  font-size: 0.86rem;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__proof span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(69, 199, 232, 0.35);
  border-radius: 50%;
  color: #78d7ef;
  font-size: 0.65rem;
}

.hero-visual {
  position: relative;
  display: grid;
  height: 560px;
  min-height: 560px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: center;
  align-self: center;
  gap: 14px;
  padding: 12px 0 48px;
}

.hero-visual__grid {
  position: absolute;
  inset: 7% 8% 10%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.hero-visual__grid::before,
.hero-visual__grid::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
}

.hero-visual__grid::after {
  inset: 27%;
}

.machine-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 239, 245, 0.92));
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.34);
}

.machine-card::after {
  position: absolute;
  inset: auto -20% -44% 25%;
  height: 55%;
  border-radius: 50%;
  background: rgba(118, 103, 255, 0.17);
  content: "";
  filter: blur(30px);
}

.machine-card__head {
  position: absolute;
  top: 17px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

.machine-card__head span {
  color: #667386;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.machine-card__head strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.machine-card--z12 {
  width: 84%;
  height: 100%;
  justify-self: end;
}

.machine-card--z12 img {
  padding: 11% 4% 1%;
}

.machine-card--c1 {
  width: 88%;
  height: 100%;
  justify-self: start;
}

.machine-card--c1 img {
  padding: 12% 4% 0;
}

.hero-visual__note {
  position: absolute;
  right: 0;
  bottom: 7px;
  z-index: 3;
  display: flex;
  max-width: 230px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  color: #dce5f1;
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  font-size: 0.73rem;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #46e3b0;
  box-shadow: 0 0 0 5px rgba(70, 227, 176, 0.12);
}

.hero-strip {
  display: grid;
  min-height: 84px;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-strip > * {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #b9c4d4;
  font-size: 0.76rem;
  font-weight: 650;
}

.hero-strip > *:first-child {
  padding-left: 0;
  color: #fff;
  font-size: 0.82rem;
}

.hero-strip > *:last-child {
  border-right: 0;
}

.hero-strip span {
  color: #67748a;
  font-size: 0.67rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 60px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  padding-bottom: 4px;
}

.section-heading--light {
  color: #fff;
}

.section-heading--light > p:last-child {
  color: #aab7ca;
}

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

.partner-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 16px;
}

.partner-card {
  position: relative;
  min-height: 270px;
  grid-column: span 2;
  padding: 28px 24px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: #bac5d4;
  box-shadow: var(--shadow-soft);
}

.partner-card__number {
  position: absolute;
  top: 20px;
  right: 21px;
  color: #aeb8c5;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.line-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 52px;
  place-items: center;
  border: 1px solid #d7dfe8;
  border-radius: 12px;
  color: var(--accent-dark);
  background: #f8fafc;
  font-size: 1.45rem;
  font-weight: 400;
}

.partner-card h3 {
  min-height: 52px;
  margin-bottom: 9px;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.products-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.products-section::after {
  position: absolute;
  top: 10%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(118, 103, 255, 0.09);
  content: "";
  filter: blur(130px);
  pointer-events: none;
}

.products-section .section-heading {
  max-width: none;
  margin-bottom: 34px;
}

.products-section .section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 3.2vw, 3.05rem);
  white-space: nowrap;
}

.products-section .section-heading > p:last-child {
  max-width: none;
  white-space: nowrap;
}

.product-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.product-panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: 270px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.product-panel:nth-child(even) .product-panel__media {
  order: 0;
}

.product-panel__media {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(118, 103, 255, 0.16), transparent 42%),
    linear-gradient(140deg, #f6f7fa, #dfe4eb);
}

.product-panel--c1 .product-panel__media {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 91, 53, 0.13), transparent 42%),
    linear-gradient(140deg, #f8f8f6, #e2e4e8);
}

.product-panel__media::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(12, 23, 38, 0.09);
  border-radius: 50%;
  content: "";
}

.product-panel__media img {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.product-panel:hover .product-panel__media img {
  transform: scale(1.03);
}

.product-panel__code {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  color: #687487;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-panel__media-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(12, 23, 38, 0.08);
  border-radius: 8px;
  color: #445166;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
}

.product-panel__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 26px 26px;
}

.product-panel__body h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.product-panel__body > p:not(.eyebrow) {
  margin-bottom: 14px;
  color: #aebacb;
  font-size: 0.84rem;
}

.feature-list {
  margin: 0 0 14px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4e9f1;
  font-size: 0.77rem;
  font-weight: 600;
}

.feature-list span {
  color: #718096;
  font-size: 0.65rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.tag-list span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #9eadbf;
  font-size: 0.65rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.product-panel .text-link {
  color: #fff;
}

.benefits-section {
  background: var(--cloud);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
}

.benefits-intro {
  position: static;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.9fr) minmax(310px, 1.15fr);
  align-items: end;
  gap: clamp(24px, 3.5vw, 50px);
}

.benefits-title h2 {
  margin-bottom: 0;
}

.benefits-copy {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.benefits-intro .button {
  margin: 0;
}

.benefits-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.policy-note {
  max-width: none;
  margin-bottom: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  color: #556276;
  background: #fff;
  font-size: 0.68rem;
  line-height: 1.5;
}

.policy-note strong {
  color: var(--ink);
}

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

.benefit-card {
  min-height: 188px;
  padding: 18px 16px;
  border: 1px solid #e1e5eb;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.benefit-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.benefit-card:nth-child(2n) .benefit-card__icon {
  background: var(--accent);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.benefit-card h3 {
  font-size: 0.98rem;
}

.applications-section {
  background: #fff;
}

.applications-slider {
  position: relative;
}

.applications-slider__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.applications-slider__viewport::-webkit-scrollbar {
  display: none;
}

.applications-slider__viewport.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(290px, 32.5%);
  grid-auto-flow: column;
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: var(--radius-md);
  background: #dde2e8;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(4, 9, 17, 0.85));
  content: "";
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
…564 tokens truncated…pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.slider-arrows button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.process-section {
  padding-block: clamp(60px, 6.5vw, 88px);
  color: #fff;
  background: #0a1525;
}

.process-section .section-heading {
  margin-bottom: 30px;
}

.workflow-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  list-style: none;
}

.workflow-step {
  position: relative;
  display: grid;
  min-height: 188px;
  grid-template-rows: auto 1fr;
  gap: 36px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.workflow-step:last-child {
  border-right: 0;
}

.process-step__number {
  display: block;
  width: fit-content;
  margin-bottom: 0;
  padding: 5px 8px;
  border-radius: 999px;
  color: #65748a;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.workflow-step h3 {
  color: #fff;
  font-size: 1.05rem;
}

.workflow-step p {
  margin-bottom: 0;
  color: #9eacbe;
  font-size: 0.78rem;
}

.support-section {
  padding-block: clamp(60px, 6.5vw, 88px);
  background: var(--cloud);
}

.support-heading {
  margin-bottom: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.support-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.25vw, 3.05rem);
}

.support-compact {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: stretch;
  gap: 18px;
}

.support-visual {
  position: relative;
}

.support-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

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

.support-card {
  min-height: 160px;
  padding: 18px;
  border: 1px solid #dfe4ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.035);
}

.support-card > span {
  display: block;
  margin-bottom: 24px;
  color: #9aa6b5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.support-card h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.apply-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(78px, 9vw, 130px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(118, 103, 255, 0.16), transparent 31%),
    linear-gradient(135deg, #07111f, #0b182a);
}

.apply-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
}

.apply-section__glow {
  position: absolute;
  right: -200px;
  bottom: -200px;
  z-index: -1;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(69, 199, 232, 0.07);
  filter: blur(100px);
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.apply-intro {
  position: sticky;
  top: 110px;
}

.apply-intro h2 {
  color: #fff;
}

.apply-intro > p:not(.eyebrow) {
  color: #aab7c9;
}

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

.review-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #d3dce8;
  font-size: 0.82rem;
}

.review-points span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(69, 199, 232, 0.32);
  border-radius: 50%;
  color: #62d2ed;
  font-size: 0.62rem;
}

.preview-notice {
  margin-top: 26px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-notice p {
  margin: 0;
  color: #9cabbf;
  font-size: 0.73rem;
  line-height: 1.6;
}

.form-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.form-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: #f7f8fa;
}

.form-card__heading span {
  color: #5f6c7d;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-card__heading p {
  margin: 0;
  color: #7b8796;
  font-size: 0.7rem;
}

.form-card form {
  padding: clamp(28px, 5vw, 46px);
}

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

.field {
  min-width: 0;
}

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

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: #27354a;
  font-size: 0.75rem;
  font-weight: 750;
}

.field label span,
.fieldset legend span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd3de;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
  padding: 10px 12px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #919caa;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #9eabbc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #6675ff;
  box-shadow: 0 0 0 3px rgba(118, 103, 255, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.fieldset.is-invalid {
  border-color: var(--danger);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  background: #fffafa;
  box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.08);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.67rem;
  font-weight: 650;
}

.field-error:not(:empty) {
  min-height: 1em;
}

.field-help {
  display: block;
  margin-top: 4px;
  color: #7f8b9a;
  font-size: 0.64rem;
}

.fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice {
  position: relative;
  margin: 0 !important;
  cursor: pointer;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #cbd3de;
  border-radius: 7px;
  color: #4a586d !important;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.choice input:checked + span {
  border-color: #6675ff;
  color: #25336a !important;
  background: #f1f2ff;
  box-shadow: inset 0 0 0 1px #6675ff;
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(69, 199, 232, 0.9);
  outline-offset: 3px;
}

.consent-field {
  padding-top: 4px;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0 !important;
  cursor: pointer;
}

.consent input {
  width: 19px;
  height: 19px;
  min-height: 0;
  margin-top: 2px;
  accent-color: #5967e9;
}

.consent > span {
  color: #556276 !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.consent strong {
  color: var(--danger);
}

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

.form-status {
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid #a6d8c4;
  border-radius: 8px;
  color: #105d41;
  background: #effbf6;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.6;
}

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

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(50px, 8vw, 112px);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-intro .text-link {
  margin-top: 12px;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #aeb8c5;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: #5f6d80;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 44px 24px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #693df0, #614adf 48%, #335bd0);
}

.final-cta::before {
  position: absolute;
  top: -140px;
  right: 14%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 68px rgba(255, 255, 255, 0.035), 0 0 0 136px rgba(255, 255, 255, 0.025);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 70px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 72px 0 26px;
  color: #c3cddb;
  background: #050b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #8796aa;
  font-size: 0.84rem;
}

.footer-heading {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: #9ba8b9;
  font-size: 0.78rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #738196;
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 32px;
  }

  .hero-visual {
    height: 510px;
    min-height: 510px;
  }

  .partner-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .partner-card {
    grid-column: span 2;
  }

  .partner-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .product-panel__media {
    min-height: 280px;
  }

  .product-panel__body {
    padding: 24px;
  }

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

  .benefits-actions {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
  }

  .support-visual img {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    padding: 0 20px;
    border-bottom: 0 solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 31, 0.985);
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease, border-width 240ms ease;
  }

  .site-nav.is-open {
    max-height: 430px;
    padding-block: 14px 20px;
    border-bottom-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 14px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    height: 520px;
    min-height: 520px;
    margin-inline: auto;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip > *:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading--split > p {
    max-width: 720px;
    padding-bottom: 0;
  }

  .product-panel__media {
    min-height: 270px;
  }

  .apply-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .apply-intro,
  .faq-intro {
    position: static;
    max-width: 720px;
  }

  .benefits-intro {
    grid-template-columns: 1fr;
  }

  .benefits-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .gallery-track {
    grid-auto-columns: minmax(280px, 46%);
  }

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

  .workflow-step:nth-child(2) {
    border-right: 0;
  }

  .workflow-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .support-heading {
    grid-template-columns: 1fr;
  }

  .support-compact {
    grid-template-columns: 1fr;
  }

  .support-visual img {
    height: 250px;
    min-height: 250px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 56px;
  }

  .announcement {
    min-height: 36px;
    flex-wrap: wrap;
    gap: 5px 8px;
    font-size: 0.66rem;
  }

  .announcement a {
    margin-left: 1px;
  }

  .brand img,
  .footer-brand img {
    width: 112px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.7vw, 2.55rem);
  }

  .hero__grid {
    gap: 36px;
    padding-block: 64px 44px;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-visual {
    height: 420px;
    min-height: 420px;
    gap: 10px;
    padding-bottom: 45px;
  }

  .machine-card {
    border-radius: 14px;
  }

  .machine-card--z12 {
    right: auto;
    width: 92%;
  }

  .machine-card--c1 {
    left: auto;
    width: 96%;
  }

  .machine-card__head {
    top: 11px;
    right: 12px;
    left: 12px;
  }

  .machine-card__head span {
    font-size: 0.52rem;
  }

  .machine-card__head strong {
    font-size: 0.72rem;
  }

  .hero-visual__note {
    right: -2px;
    bottom: 3%;
    max-width: 205px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .hero-strip > *,
  .hero-strip > *:first-child {
    grid-column: auto;
    min-height: 52px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-strip > *:last-child {
    border-bottom: 0;
  }

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

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

  .partner-card,
  .partner-card:nth-child(4) {
    min-height: 230px;
    grid-column: auto;
  }

  .line-icon {
    margin-bottom: 37px;
  }

  .partner-card h3 {
    min-height: 0;
  }

  .products-section,
  .process-section,
  .support-section,
  .apply-section {
    padding-block: 56px;
  }

  .products-section .section-heading h2,
  .products-section .section-heading > p:last-child {
    white-space: normal;
  }

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

  .product-panel {
    border-radius: 20px;
    grid-template-rows: 250px 1fr;
  }

  .product-panel__media {
    min-height: 250px;
  }

  .product-panel__body {
    padding: 26px 22px 30px;
  }

  .product-panel__body h3 {
    font-size: 1.7rem;
  }

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

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

  .benefit-card {
    min-height: 165px;
    padding: 15px 13px;
  }

  .benefit-card__icon {
    margin-bottom: 22px;
  }

  .gallery-track {
    grid-auto-columns: minmax(250px, 84%);
  }

  .gallery-card {
    min-height: 240px;
  }

  .gallery-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .gallery-card figcaption strong {
    text-align: left;
  }

  .workflow-table {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13) !important;
  }

  .workflow-step:last-child {
    border-bottom: 0 !important;
  }

  .workflow-step h3 {
    margin-bottom: 6px;
  }

  .support-visual img {
    height: 220px;
    min-height: 220px;
  }

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

  .support-card {
    min-height: 150px;
    padding: 15px 13px;
  }

  .support-card > span {
    margin-bottom: 18px;
  }

  .form-card {
    border-radius: 18px;
  }

  .form-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-card form {
    padding: 25px 19px 28px;
  }

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

  .choice-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice span {
    width: 100%;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta__inner {
    min-height: 380px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  .final-cta .button {
    width: 100%;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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


.button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
