:root {
  --bg-dark: #060b12;
  --bg-dark-2: #0b131c;
  --bg-grid: #09111b;
  --page-bg: #04080e;
  --page-bg-2: #09111a;
  --surface: rgba(10, 17, 26, 0.86);
  --surface-2: rgba(13, 21, 32, 0.94);
  --surface-3: rgba(17, 27, 40, 0.98);
  --surface-glow: rgba(74, 158, 255, 0.08);
  --text: #edf4ff;
  --text-2: #92a8c6;
  --text-soft: #5e718d;
  --text-dark: #f0f4ff;
  --muted-dark: #92a8c6;
  --line: rgba(102, 171, 255, 0.16);
  --line-2: rgba(102, 171, 255, 0.28);
  --accent: #2d7dd2;
  --accent-bright: #4a9eff;
  --cta: #00c896;
  --cta-hover: #00e5a8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1280px;
  --header-height: 104px;
  --font-body: "Oswald", "Segoe UI", "Arial Narrow", sans-serif;
  --font-heading: "Oswald", "Segoe UI", "Arial Narrow", sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
  --font-secondary: "Departura ExtraLight", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Departura ExtraLight";
  src: url("/assets/fonts/departura-extralight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pobeda Regular";
  src: url("/assets/fonts/pobeda-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.12), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(0, 200, 150, 0.08), transparent 22%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-2) 48%, var(--bg-dark) 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header .container {
  width: min(1660px, calc(100% - 36px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(240, 244, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34);
  background: rgba(0, 0, 0, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark__logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: min(42vw, 300px);
  object-fit: contain;
}

.brand-mark__logo--footer {
  height: 42px;
  max-width: 180px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.site-nav__items,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__items {
  flex: 0 1 auto;
  justify-content: flex-start;
  min-width: 0;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.site-nav__actions {
  flex: 0 0 auto;
}

.site-nav__link,
.site-nav__contact,
.lang-switch {
  color: rgba(240, 244, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav__link + .site-nav__link {
  border-left: 1px solid rgba(111, 170, 245, 0.16);
  box-shadow: -1px 0 0 rgba(4, 10, 18, 0.7);
}

.site-nav__link:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.site-nav__link:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.site-nav__contact {
  font-size: 1rem;
}

.site-nav__link:hover,
.site-nav__link.is-current,
.site-nav__contact:hover,
.lang-switch:hover {
  color: #ffffff;
}

.site-nav__link:hover,
.site-nav__link.is-current {
  background:
    linear-gradient(180deg, rgba(58, 116, 186, 0.38) 0%, rgba(21, 60, 98, 0.56) 100%);
  box-shadow:
    inset 0 1px 0 rgba(194, 226, 255, 0.08),
    0 0 0 1px rgba(91, 154, 225, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.button--primary {
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  box-shadow: 0 10px 30px rgba(0, 200, 150, 0.25);
}

.button--secondary {
  color: var(--text-dark);
  border-color: rgba(74, 158, 255, 0.6);
  background: rgba(74, 158, 255, 0.08);
}

.button--secondary:hover {
  border-color: var(--accent-bright);
  background: rgba(74, 158, 255, 0.14);
}

.button--request {
  position: relative;
  gap: 4px;
  padding: 14px 30px;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 999px;
  color: #9ad245;
  background: rgba(6, 12, 18, 0.12);
  box-shadow:
    inset 0 0 0 2px rgba(154, 210, 69, 0.92),
    0 12px 30px rgba(6, 12, 18, 0.22);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  isolation: isolate;
}

.button--request .button__icon {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--request .button__icon--right {
  right: 16px;
}

.button--request .button__icon--left {
  left: -24px;
}

.button--request .button__text {
  position: relative;
  z-index: 2;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--request .button__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #9ad245;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--request:hover {
  color: #08110d;
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 2px transparent,
    0 16px 36px rgba(6, 12, 18, 0.28);
}

.button--request:hover .button__icon--right {
  right: -24px;
}

.button--request:hover .button__icon--left {
  left: 16px;
}

.button--request:hover .button__text {
  transform: translateX(12px);
}

.button--request:hover .button__orb {
  width: 240px;
  height: 240px;
  opacity: 1;
}

.button--request:active {
  transform: scale(0.96);
  box-shadow:
    inset 0 0 0 2px rgba(154, 210, 69, 0.92),
    0 6px 18px rgba(6, 12, 18, 0.2);
}

.button--request:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.button--header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 2rem;
  margin: 0;
  overflow: hidden;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #9ad245 0%, #00c896 100%);
  box-shadow:
    0 12px 28px rgba(0, 200, 150, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: ghostwhite;
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.button--header-cta .button__label {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: color 0.4s ease;
}

.button--header-cta:hover .button__label {
  color: #08110d;
}

.button--header-cta::before,
.button--header-cta::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.button--header-cta::before {
  content: "";
  left: -10%;
  width: 120%;
  background: #050a11;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--header-cta:hover::before {
  transform: translate3d(100%, 0, 0);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.12);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(74, 158, 255, 0.18);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(74, 158, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(102, 171, 255, 0.18);
}

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

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

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  color: rgba(184, 205, 232, 0.68);
  font-size: 0.95rem;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs__sep {
  opacity: 0.55;
}

.hero-section {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at 78% 16%, rgba(74, 158, 255, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-dark);
  overflow: hidden;
}

.home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 104px 0 64px;
  min-height: calc(100vh - var(--header-height));
  color: var(--text-dark);
  background: linear-gradient(180deg, #04070c 0%, #060b12 52%, #0a1017 100%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height) - 104px - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 72px;
  align-items: center;
}

.home-hero__copy {
  position: relative;
  max-width: 620px;
}

.home-hero .eyebrow {
  font-family: var(--font-secondary);
  font-weight: 300;
  color: rgba(219, 232, 255, 0.58);
}

.home-hero h1 {
  margin: 0;
  max-width: 6.2ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6.4vw, 6.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.home-hero__subtitle {
  margin: 18px 0 0;
  max-width: 100%;
  color: #dbe8ff;
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.7vw, 1.6rem);
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.home-hero__text {
  margin: 18px 0 0;
  max-width: 100%;
  color: rgba(219, 232, 255, 0.72);
  font-size: 1rem;
  line-height: 1.26;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.home-hero__metric {
  min-width: 0;
}

.home-hero__metric span {
  display: block;
  color: rgba(219, 232, 255, 0.5);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(2, 4, 11, 0.46);
}

.home-hero__metric strong {
  display: block;
  margin-top: 6px;
  color: #f3f7ff;
  font-size: 1.32rem;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(2, 4, 11, 0.58);
}

.home-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 36px;
  z-index: 2;
}

.home-hero__product {
  width: clamp(460px, 38vw, 720px);
  max-height: min(72vh, 760px);
  object-fit: contain;
  filter: drop-shadow(0 36px 80px rgba(0, 0, 0, 0.42));
  animation: hero-product-float 8s ease-in-out infinite;
  will-change: transform;
}

.home-hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-hero__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 4, 10, 0.86) 0%, rgba(2, 6, 12, 0.44) 44%, rgba(3, 7, 13, 0.24) 100%),
    radial-gradient(circle at 62% 36%, rgba(88, 151, 255, 0.16), transparent 30%),
    radial-gradient(circle at 76% 24%, rgba(0, 200, 150, 0.1), transparent 22%);
}

.home-hero__background {
  position: absolute;
  inset: -4% -3%;
  z-index: 0;
  width: 106%;
  height: 108%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.92) brightness(0.58) contrast(1.08);
  transform: scale(1.02);
}

.home-hero__network {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.84;
}

@media (max-width: 767px) {
  .home-hero__network {
    display: none;
  }

  .home-hero__product {
    animation: none;
  }
}

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

.page-home .site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(2, 3, 6, 0.82) 100%);
  border-bottom-color: rgba(240, 244, 255, 0.05);
  backdrop-filter: blur(16px);
}

@keyframes hero-product-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (min-width: 1680px) {
  .home-hero__product {
    position: relative;
    left: 30px;
  }
}

.hero-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted-dark);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section h1,
.section-heading h2,
.content-card__body h3,
.mini-card h3,
.cta-panel h2,
.site-footer h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.hero-section h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.hero-section__subtitle {
  margin: 18px 0 0;
  color: #dfe8ff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 640px;
}

.hero-section__text {
  margin: 18px 0 0;
  max-width: 660px;
  color: var(--muted-dark);
  font-size: 1.0625rem;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-section__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(74, 158, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(11, 17, 23, 0.48);
}

.stat-card span {
  display: block;
  color: var(--muted-dark);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.page-installations .hero-section__actions .button {
  font-size: 1.0625rem;
}

.page-installations .eyebrow {
  font-size: 0.9125rem;
}

.page-installations .hero-section__subtitle {
  font-size: clamp(1.1625rem, 2.1vw, 1.5125rem);
}

.page-installations .hero-section__text,
.page-installations .section-intro,
.page-installations .content-card__body p,
.page-installations .mini-card p,
.page-installations .note-box p,
.page-installations .faq-item p,
.page-installations .data-table td {
  font-size: 1.0625rem;
}

.page-installations .stat-card span {
  font-size: 0.8625rem;
}

.page-installations .stat-card strong {
  font-size: 1.0625rem;
}

.page-installations .content-card__specs div {
  font-size: 1.0125rem;
}

.page-installations .content-card__specs strong,
.page-installations .pill {
  font-size: 0.9625rem;
}

.page-installations .content-card__meta {
  font-size: 0.9825rem;
}

.page-installations .data-table th {
  font-size: 0.8825rem;
}

.content-section--page-intro p {
  font-size: 1.17rem;
  line-height: 1.72;
}

.page-reference-typography main .eyebrow,
.page-reference-typography main .stat-card span,
.page-reference-typography main .pill,
.page-reference-typography main .content-card__meta,
.page-reference-typography main .data-table th {
  font-family: "Pobeda Regular", "Segoe UI", sans-serif;
  font-weight: 400;
}

.page-reference-typography main .eyebrow {
  font-size: 1.1rem;
}

.page-reference-typography main .hero-section__subtitle {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.page-reference-typography main .hero-section__text,
.page-reference-typography main .section-intro,
.page-reference-typography main .content-card__body p,
.page-reference-typography main .mini-card p,
.page-reference-typography main .copy-panel p,
.page-reference-typography main .note-box p,
.page-reference-typography main .faq-item p {
  font-size: 1.3rem;
}

.page-reference-typography main .content-section--page-intro p {
  font-size: 1.35rem;
}

.page-reference-typography main .button,
.page-reference-typography main .faq-item summary,
.page-reference-typography main .stat-card strong,
.page-reference-typography main .data-table td,
.page-reference-typography main .feature-list li,
.page-reference-typography main .pill-list li,
.page-reference-typography main .content-card__specs strong,
.page-reference-typography main .content-card__meta {
  font-size: 1.2rem;
}

.page-reference-typography main .stat-card span,
.page-reference-typography main .data-table th,
.page-reference-typography main .content-card__specs div,
.page-reference-typography main .project-chip {
  font-size: 1rem;
}

.page-reference-typography main .pill {
  font-size: 1.1rem;
}

.hero-section__visual {
  position: relative;
  min-height: 360px;
}

.hero-section__visual--image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.hero-media,
.content-card__image,
.media-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-media {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  min-height: 0;
}

.tech-visual {
  height: 100%;
}

.tech-visual svg {
  width: 100%;
  height: auto;
}

.viz-frame {
  fill: rgba(11, 17, 23, 0.24);
  stroke: rgba(74, 158, 255, 0.78);
  stroke-width: 4;
}

.viz-frame--inner {
  stroke: rgba(0, 200, 150, 0.76);
  stroke-width: 3;
}

.viz-line {
  fill: none;
  stroke: rgba(74, 158, 255, 0.58);
  stroke-width: 4;
  stroke-linecap: round;
}

.viz-line--accent {
  stroke: rgba(0, 200, 150, 0.72);
}

.viz-point {
  fill: #4a9eff;
}

.viz-glow {
  fill: rgba(74, 158, 255, 0.12);
}

.content-section {
  position: relative;
  padding: 64px 0;
}

.content-section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.content-section--cta {
  background:
    linear-gradient(180deg, var(--bg-grid) 0%, var(--bg-dark) 100%);
  color: var(--text-dark);
}

.content-section.content-section--production-home,
.content-section.content-section--production-home:nth-of-type(even) {
  overflow: hidden;
  isolation: isolate;
  background: #000000;
}

.content-section.content-section--production-home::before,
.content-section.content-section--production-home::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
}

.content-section.content-section--production-home::before {
  opacity: 0.78;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 0.8px, transparent 1px),
    radial-gradient(circle, rgba(154, 205, 255, 0.78) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 0.65px, transparent 0.9px);
  background-size: 180px 180px, 260px 260px, 320px 320px;
  background-position: 0 0, 48px 84px, 128px 28px;
  animation: production-stars-drift 26s linear infinite;
}

.content-section.content-section--production-home::after {
  opacity: 0.34;
  filter: blur(0.2px);
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 0.9px, transparent 1.2px),
    radial-gradient(circle, rgba(92, 146, 255, 0.48) 0 1.1px, transparent 1.4px);
  background-size: 240px 240px, 360px 360px;
  background-position: 42px 118px, 154px 54px;
  animation: production-stars-drift 36s linear infinite reverse;
}

.content-section.content-section--production-home > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-privacy .section-heading h2,
.page-terms .section-heading h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.section-intro {
  margin: 0;
  max-width: 760px;
  color: var(--muted-dark);
  font-size: 1.0625rem;
}

.content-section > .container > p {
  font-size: 1.0625rem;
}

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

.content-card,
.mini-card,
.note-box,
.copy-panel,
.table-shell,
.cta-panel {
  border: 1px solid rgba(102, 171, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 24, 37, 0.96) 0%, rgba(10, 16, 24, 0.98) 100%);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(185, 224, 255, 0.04);
}

.content-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.document-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.document-card {
  position: relative;
  min-height: 316px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(14, 21, 31, 0.98) 0%, rgba(8, 12, 18, 1) 100%);
  box-shadow:
    inset 5px 5px 10px rgba(0, 0, 0, 0.18),
    inset -3px -3px 12px rgba(255, 255, 255, 0.03),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.document-card__box {
  position: absolute;
  inset: 16px;
  display: flex;
  border: 1px solid rgba(102, 171, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(17, 27, 40, 0.98) 0%, rgba(9, 15, 23, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(185, 224, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.document-card__box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  opacity: 0.38;
  pointer-events: none;
}

.document-card:hover .document-card__box {
  transform: translateY(-12px);
  border-color: rgba(74, 158, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(185, 224, 255, 0.06),
    0 22px 40px rgba(0, 0, 0, 0.28);
}

.document-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px 20px;
}

.document-card__index {
  position: absolute;
  top: -10px;
  right: 2px;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 5vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(237, 244, 255, 0.1);
}

.document-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(102, 171, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #9cd9f9;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-card__content h3 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.02;
}

.document-card__content p {
  max-width: 25ch;
  margin: 0;
  color: rgba(237, 244, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.document-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a9eff 0%, #7fc6ff 100%);
  box-shadow: 0 12px 24px rgba(74, 158, 255, 0.24);
  color: #08111c;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.document-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(74, 158, 255, 0.3);
  filter: brightness(1.04);
}

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

.industry-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(18, 25, 37, 0.98) 0%, rgba(9, 14, 22, 0.96) 100%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(185, 224, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    filter 0.45s ease;
}

.industry-showcase-card::before {
  content: "";
  position: absolute;
  top: -44%;
  left: -130%;
  width: 75%;
  height: 240%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 58%
  );
  transform: rotate(16deg);
  opacity: 0.7;
  pointer-events: none;
  transition:
    left 0.75s ease,
    top 0.75s ease,
    opacity 0.75s ease;
}

.industry-showcase-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(152, 210, 69, 0.24);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(185, 224, 255, 0.08);
  filter: brightness(1.08);
}

.industry-showcase-card:hover::before {
  top: -98%;
  left: 158%;
  opacity: 0.5;
}

.industry-showcase-card__visual {
  padding: 16px 16px 0;
}

.industry-showcase-card__image,
.industry-showcase-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

.industry-showcase-card__image {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.industry-showcase-card__placeholder {
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(102, 171, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(152, 210, 69, 0.14), transparent 28%),
    radial-gradient(circle at 22% 18%, rgba(74, 158, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 27, 38, 0.98) 0%, rgba(8, 13, 20, 0.98) 100%);
  color: rgba(237, 244, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(185, 224, 255, 0.05);
}

.industry-showcase-card__placeholder span {
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.industry-showcase-card__body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 22px;
}

.industry-showcase-card__eyebrow {
  margin: 0;
  color: #9fd0ff;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-showcase-card__body h3 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.43rem, 1.98vw, 1.71rem);
  line-height: 1.02;
}

.industry-showcase-card__body p:last-child {
  margin: 0;
  color: rgba(237, 244, 255, 0.76);
  line-height: 1.58;
}

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

.customer-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(16, 25, 35, 0.98) 0%, rgba(9, 15, 23, 0.96) 100%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(185, 224, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    filter 0.45s ease;
}

.customer-showcase-card::before {
  content: "";
  position: absolute;
  top: -44%;
  right: -130%;
  width: 75%;
  height: 240%;
  background: linear-gradient(
    240deg,
    transparent 0%,
    rgba(0, 200, 150, 0.05) 42%,
    rgba(124, 255, 220, 0.14) 50%,
    transparent 58%
  );
  transform: rotate(-16deg);
  opacity: 0.7;
  pointer-events: none;
  transition:
    right 0.75s ease,
    top 0.75s ease,
    opacity 0.75s ease;
}

.customer-showcase-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 200, 150, 0.24);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(185, 224, 255, 0.08);
  filter: brightness(1.08);
}

.customer-showcase-card:hover::before {
  top: -98%;
  right: 158%;
  opacity: 0.52;
}

.customer-showcase-card__visual {
  padding: 16px 16px 0;
}

.customer-showcase-card__image,
.customer-showcase-card__placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

.customer-showcase-card__image {
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-showcase-card__placeholder {
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(0, 200, 150, 0.14);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 200, 150, 0.14), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(74, 158, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(14, 25, 35, 0.98) 0%, rgba(8, 14, 21, 0.98) 100%);
  color: rgba(237, 244, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(185, 224, 255, 0.05);
}

.customer-showcase-card__placeholder span {
  max-width: 11ch;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.customer-showcase-card__body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 22px;
}

.customer-showcase-card__eyebrow {
  margin: 0;
  color: #7ff0d0;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-showcase-card__body h3 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.28rem, 1.75vw, 1.5rem);
  line-height: 1.04;
}

.customer-showcase-card__body p:last-child {
  margin: 0;
  color: rgba(237, 244, 255, 0.76);
  line-height: 1.58;
}

.content-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(17, 27, 40, 0.96) 0%, rgba(9, 15, 23, 0.98) 100%);
  border-bottom: 1px solid rgba(102, 171, 255, 0.1);
}

.content-card__image {
  border-radius: 18px;
}

.installation-card__visual {
  padding: 16px;
}

.installation-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
}

.product-card {
  position: relative;
  border-color: rgba(74, 158, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(74, 158, 255, 0.06), transparent 32%, transparent 74%, rgba(0, 200, 150, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 158, 255, 0.22);
  box-shadow:
    0 26px 70px rgba(10, 15, 30, 0.16),
    0 10px 24px rgba(10, 15, 30, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 252, 0.96) 100%);
}

.product-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(74, 158, 255, 0.05), transparent 34%);
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 158, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-2);
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.product-card__image-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 28px 24px 20px;
  border: 1px solid rgba(74, 158, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
  overflow: hidden;
}

.product-card__image-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.34;
  pointer-events: none;
}

.product-card__image,
.product-card__fallback {
  position: relative;
  z-index: 1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(10, 15, 30, 0.12));
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.product-card:hover .product-card__image {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 28px 30px rgba(10, 15, 30, 0.18));
}

.product-card__fallback {
  width: 100%;
  height: 100%;
}

.product-card__fallback .tech-visual {
  display: grid;
  place-items: center;
}

.product-card__body {
  position: relative;
  gap: 18px;
  padding: 24px 24px 22px;
}

.product-card__title {
  min-height: 4.4rem;
}

.product-card .product-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  color: #10284e;
  font-size: 1.45rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .product-card__summary {
  display: -webkit-box;
  min-height: 5.4rem;
  overflow: hidden;
  color: #536786;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__meta {
  padding-top: 16px;
  border-top: 1px solid rgba(74, 158, 255, 0.12);
}

.product-card .product-card__price {
  color: #10284e;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

.product-card .product-card__meta a {
  position: relative;
  padding-right: 18px;
  color: var(--accent);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.product-card__meta a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__meta a {
  color: #0f63d9;
  transform: translateX(2px);
}

.product-card:hover .product-card__meta a::after {
  transform: translateX(3px);
}

.product-card {
  min-height: 470px;
  border-color: rgba(93, 142, 181, 0.18);
  background:
    radial-gradient(circle at top left, rgba(21, 41, 62, 0.96), rgba(8, 13, 20, 0.98) 58%),
    linear-gradient(180deg, #0c131c 0%, #080d14 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(182, 219, 255, 0.06);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.product-card::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(154, 210, 69, 0.95), rgba(0, 121, 108, 0.94));
  clip-path: circle(148px at 82% 18%);
  transition:
    clip-path 0.55s ease,
    opacity 0.55s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 8% 6% 8%;
  height: 26%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.28) 0%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(154, 210, 69, 0.28);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(182, 219, 255, 0.08);
}

.product-card:hover::before {
  clip-path: circle(300px at 82% -10%);
}

.product-card__watermark {
  position: absolute;
  top: 34%;
  left: -5%;
  z-index: 1;
  color: rgba(185, 227, 255, 0.05);
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 8vw, 7.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.product-card__visual {
  position: absolute;
  top: 48%;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 230px;
  padding: 0;
  overflow: visible;
  border-bottom: 0;
  background: transparent;
  transform: translateY(-50%);
  transition:
    top 0.55s ease,
    transform 0.55s ease;
}

.product-card__visual::before {
  display: none;
}

.product-card:hover .product-card__visual {
  top: 8%;
  transform: translateY(0);
}

.product-card__badge {
  z-index: 5;
  border: 1px solid rgba(196, 224, 255, 0.12);
  background: rgba(6, 12, 18, 0.72);
  color: rgba(230, 242, 255, 0.8);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__image-stage {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.product-card__image-stage::before {
  display: none;
}

.product-card__image,
.product-card__fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(86%, 320px);
  height: 220px;
  transform: translate(-50%, -50%) rotate(-12deg);
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.26));
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.product-card:hover .product-card__image,
.product-card:hover .product-card__fallback {
  transform: translate(-48%, -44%) rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.34));
}

.product-card__fallback .tech-visual {
  width: 100%;
  height: 100%;
}

.product-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  gap: 12px;
  height: 162px;
  padding: 18px 24px 22px;
  background:
    linear-gradient(180deg, rgba(8, 13, 20, 0) 0%, rgba(8, 13, 20, 0.92) 24%, rgba(8, 13, 20, 0.98) 100%);
  transition: height 0.55s ease;
}

.product-card:hover .product-card__body {
  height: 224px;
}

.product-card .product-card__body h3 {
  min-height: 3.2rem;
  margin: 0;
  color: #f2f7ff;
  font-size: 1.36rem;
}

.product-card .product-card__summary {
  min-height: 3rem;
  margin: 0;
  color: rgba(218, 229, 242, 0.74);
  font-family: var(--font-secondary);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 2;
}

.product-card__details {
  display: none;
}

.product-card__detail-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.product-card__detail-group h4 {
  margin: 0;
  min-width: 84px;
  color: rgba(224, 239, 255, 0.7);
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-card__detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__detail-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(194, 218, 242, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 249, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}

.product-card__detail-group--sizes span {
  background: rgba(154, 210, 69, 0.1);
  border-color: rgba(154, 210, 69, 0.24);
  color: #d6f0a3;
}

.product-card__detail-group--sizes span:hover {
  background: rgba(154, 210, 69, 0.18);
}

.product-card__meta {
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(154, 210, 69, 0.14);
}

.product-card .product-card__price {
  color: #eff7ff;
  font-size: 0.98rem;
}

.product-card .product-card__meta .product-card__cta {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(0, 200, 150, 0.58);
  --c-color-2: rgba(74, 158, 255, 0.88);
  --c-color-3: rgba(31, 98, 208, 0.78);
  --c-color-4: rgba(154, 210, 69, 0.54);
  --c-shadow: rgba(74, 158, 255, 0.28);
  --c-shadow-inset-top: rgba(180, 229, 255, 0.12);
  --c-shadow-inset-bottom: rgba(5, 12, 19, 0.34);
  --c-radial-inner: #15395f;
  --c-radial-outer: #0b1828;
  --c-color: #ffffff;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 158, 255, 0.26);
  border-radius: 24px;
  background: radial-gradient(circle, var(--c-radial-inner), var(--c-radial-outer) 82%);
  box-shadow: 0 0 18px var(--c-shadow);
  color: var(--c-color);
  opacity: 0;
  transform: translateY(18px);
  isolation: isolate;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card .product-card__meta .product-card__cta::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  box-shadow:
    inset 0 2px 10px var(--c-shadow-inset-top),
    inset 0 -3px 6px var(--c-shadow-inset-bottom);
}

.product-card .product-card__meta .product-card__cta::after {
  content: none;
}

.product-card__cta-wrap {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  display: block;
  min-width: 168px;
  padding: 14px 18px;
  overflow: hidden;
  border-radius: 24px;
  text-align: center;
}

.product-card__cta-label {
  position: relative;
  z-index: 3;
  display: inline-block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(4, 10, 18, 0.2);
}

.product-card__cta-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.product-card__cta-circle--1,
.product-card__cta-circle--9,
.product-card__cta-circle--10 {
  --background: var(--c-color-4);
}

.product-card__cta-circle--3,
.product-card__cta-circle--4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.product-card__cta-circle--5,
.product-card__cta-circle--6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.product-card__cta-circle--2,
.product-card__cta-circle--7,
.product-card__cta-circle--8,
.product-card__cta-circle--11,
.product-card__cta-circle--12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.product-card__cta-circle--1 {
  --x: 0;
  --y: -40px;
  --animation: product-card-cta-circle-1;
}

.product-card__cta-circle--2 {
  --x: 92px;
  --y: 8px;
  --animation: product-card-cta-circle-2;
}

.product-card__cta-circle--3 {
  --x: -12px;
  --y: -12px;
  --animation: product-card-cta-circle-3;
}

.product-card__cta-circle--4 {
  --x: 80px;
  --y: -12px;
  --animation: product-card-cta-circle-4;
}

.product-card__cta-circle--5 {
  --x: 12px;
  --y: -4px;
  --animation: product-card-cta-circle-5;
}

.product-card__cta-circle--6 {
  --x: 56px;
  --y: 16px;
  --animation: product-card-cta-circle-6;
}

.product-card__cta-circle--7 {
  --x: 8px;
  --y: 28px;
  --animation: product-card-cta-circle-7;
}

.product-card__cta-circle--8 {
  --x: 28px;
  --y: -4px;
  --animation: product-card-cta-circle-8;
}

.product-card__cta-circle--9 {
  --x: 20px;
  --y: -12px;
  --animation: product-card-cta-circle-9;
}

.product-card__cta-circle--10 {
  --x: 64px;
  --y: 16px;
  --animation: product-card-cta-circle-10;
}

.product-card__cta-circle--11 {
  --x: 4px;
  --y: 4px;
  --animation: product-card-cta-circle-11;
}

.product-card__cta-circle--12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: product-card-cta-circle-12;
}

.product-card:hover .product-card__meta .product-card__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
  --duration: 1600ms;
  border-color: rgba(154, 210, 69, 0.28);
  box-shadow:
    0 0 22px rgba(74, 158, 255, 0.26),
    0 10px 26px rgba(5, 12, 19, 0.22);
}

.content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.content-card__body h3 {
  font-size: 1.3rem;
}

.content-card__body p,
.mini-card p,
.copy-panel p,
.note-box p,
.site-footer p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.0625rem;
}

.content-card__specs {
  display: grid;
  gap: 10px;
}

.content-card__specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.content-card__specs span {
  color: var(--muted-dark);
}

.content-card__specs strong,
.project-chip,
.pill {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.content-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--muted-dark);
  font-family: var(--font-secondary);
  font-size: 0.92rem;
  font-weight: 300;
}

.content-card__meta a {
  color: #8cc6ff;
  font-weight: 700;
}

.mini-card {
  padding: 22px;
}

.mini-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.split-panel--production-home {
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(140, 198, 255, 0.08);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.split-panel__visual {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.12), transparent 36%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.split-panel__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
}

.split-panel--production-home .split-panel__visual {
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 0;
  background: none;
}

.split-panel--production-home .split-panel__image {
  height: 100%;
  border-radius: 0;
}

.split-panel__copy {
  display: grid;
  gap: 16px;
}

.split-panel--production-home .split-panel__copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.split-panel--production-home .split-panel__action {
  margin-top: auto;
  align-self: flex-start;
}

.feature-list,
.pill-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.pill-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before,
.pill-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright), var(--cta));
}

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

.table-shell {
  overflow: auto;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid rgba(102, 171, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 22, 33, 0.96) 0%, rgba(10, 16, 24, 0.98) 100%);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(185, 224, 255, 0.04);
}

.media-card__image {
  aspect-ratio: 4 / 3;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(74, 158, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(17, 27, 40, 0.96) 0%, rgba(10, 16, 24, 0.98) 100%);
}

.media-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: rgba(188, 209, 233, 0.82);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(102, 171, 255, 0.14);
}

.data-table tr + tr td {
  border-top: 1px solid rgba(102, 171, 255, 0.1);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px 22px;
  border: 1px solid rgba(102, 171, 255, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(14, 22, 33, 0.94) 0%, rgba(10, 16, 24, 0.98) 100%);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 1.0625rem;
}

.note-box,
.copy-panel {
  padding: 22px 24px;
}

.note-box strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.project-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.project-chip,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(102, 171, 255, 0.16);
  background: rgba(74, 158, 255, 0.08);
  color: #9fd0ff;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.cta-panel__copy {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: center;
  max-width: 920px;
  text-align: center;
}

.cta-panel__copy p:last-child {
  color: var(--muted-dark);
}

.lead-form-shell {
  position: relative;
  width: min(100%, 1020px);
  padding: 1px;
  border-radius: 29px;
  background:
    linear-gradient(120deg, rgba(151, 217, 61, 0.96) 0%, rgba(78, 172, 255, 0.92) 38%, rgba(22, 113, 204, 0.88) 67%, rgba(151, 217, 61, 0.96) 100%);
  background-size: 220% 220%;
  animation: lead-form-border-shift 8s linear infinite;
  box-shadow: none;
  transition: none;
}

.lead-form-shell__inner {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(78, 172, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(14, 16, 24, 0.99) 0%, rgba(8, 10, 16, 0.99) 100%);
  border: 1px solid rgba(102, 171, 255, 0.12);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lead-form-shell:hover .lead-form-shell__inner {
  transform: none;
  border-radius: 28px;
}

@keyframes lead-form-border-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  z-index: 1;
}

.lead-form__heading,
.lead-form__wide,
.lead-form__consent,
.lead-form__checkbox,
.lead-form__actions {
  grid-column: 1 / -1;
}

.lead-form__heading {
  margin: 0 0 6px;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.05rem);
  line-height: 1;
}

.lead-form__field {
  display: grid;
  gap: 10px;
  color: var(--text-dark);
}

.lead-form__label {
  color: rgba(196, 215, 236, 0.86);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form__control {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 20, 29, 1) 0%, rgba(11, 13, 19, 1) 100%);
  box-shadow:
    inset 2px 5px 14px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(89, 132, 184, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form__control--textarea {
  align-items: flex-start;
  min-height: 164px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lead-form__field:focus-within .lead-form__control {
  transform: translateY(-1px);
  box-shadow:
    inset 2px 5px 14px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(85, 167, 255, 0.62),
    0 0 0 4px rgba(74, 158, 255, 0.14);
}

.lead-form__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: rgba(197, 230, 255, 0.78);
}

.lead-form__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--text-dark);
  background: transparent;
  font: inherit;
  font-size: 1.0625rem;
}

.lead-form__input::placeholder {
  color: #6f7d99;
}

textarea.lead-form__input {
  min-height: 120px;
  resize: vertical;
}

.lead-form__input:focus {
  outline: 0;
}

.lead-form__consent {
  margin: 0;
  padding: 2px 4px 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lead-form__consent a {
  color: #ffffff;
  text-decoration: underline;
}

.lead-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin: -2px 0 0;
  border-radius: 18px;
  border: 1px solid rgba(89, 132, 184, 0.16);
  background: rgba(11, 14, 20, 0.74);
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lead-form__checkbox input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent-green);
  flex: 0 0 auto;
}

.lead-form__checkbox input:focus-visible {
  outline: 2px solid rgba(151, 217, 61, 0.9);
  outline-offset: 2px;
}

.lead-form__checkbox span {
  display: block;
}

.lead-form__checkbox a {
  color: #ffffff;
  text-decoration: underline;
}

.lead-form__actions {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.lead-form__actions .button {
  width: min(100%, 320px);
  min-height: 58px;
  border-radius: 18px;
  justify-content: center;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lead-form__status {
  margin: 0;
  text-align: center;
  color: var(--muted-dark);
}

.lead-form__status.is-success {
  color: var(--cta-hover);
}

.lead-form__trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

body.is-modal-open {
  overflow: hidden;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.76);
  backdrop-filter: blur(12px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 44px 34px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(78, 172, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(28, 30, 40, 0.98) 0%, rgba(13, 15, 22, 0.99) 100%);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(40px) scale(0.9);
  transition:
    transform 0.42s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease;
  overflow: hidden;
}

.lead-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(144deg, rgba(151, 217, 61, 0.98), rgba(79, 143, 255, 0.96) 50%, rgba(0, 221, 235, 0.92));
  background-size: 200% 200%;
  animation: lead-modal-border-shift 8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.lead-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(241, 247, 255, 0.9);
}

.lead-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal__brand {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(144deg, #97d93d, #4eacff 55%, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-modal__context {
  margin: 0 0 18px;
  color: rgba(210, 224, 246, 0.8);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-modal__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 0.95;
}

.lead-modal__form {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0;
}

.lead-modal.is-open .lead-modal__form .lead-form__field:nth-of-type(1) {
  animation: lead-modal-field-drop 0.55s ease both;
}

.lead-modal.is-open .lead-modal__form .lead-form__field:nth-of-type(2) {
  animation: lead-modal-field-drop 0.68s ease both;
}

.lead-modal.is-open .lead-modal__form .lead-form__field:nth-of-type(3) {
  animation: lead-modal-field-drop 0.8s ease both;
}

.lead-modal.is-open .lead-modal__form .lead-form__field:nth-of-type(4) {
  animation: lead-modal-field-drop 0.92s ease both;
}

.lead-modal__form .lead-form__control {
  min-height: 56px;
  border-radius: 999px;
  background: rgba(59, 59, 66, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -6px 14px rgba(0, 0, 0, 0.2);
}

.lead-modal__form .lead-form__control--textarea {
  min-height: 148px;
  border-radius: 24px;
}

.lead-modal__form .lead-form__actions {
  margin-top: 6px;
}

.lead-modal__form .lead-form__actions .button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(144deg, #97d93d, #4e8fff 50%, #00ddeb);
  box-shadow:
    0 18px 36px rgba(15, 59, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lead-modal__form .button--request .button__icon--left {
  left: 18px;
}

.lead-modal__form .button--request .button__icon--right {
  right: 18px;
}

.lead-modal__form .button--request .button__text {
  transform: none;
}

.lead-modal__form .button--request .button__orb {
  display: none;
}

.lead-modal__form .button--request:hover {
  color: #ffffff;
  border-radius: 999px;
  transform: translateY(-1px);
}

.lead-modal__form .button--request:hover .button__icon--left {
  left: 18px;
}

.lead-modal__form .button--request:hover .button__icon--right {
  right: 18px;
}

.lead-modal__form .button--request:hover .button__text {
  transform: none;
}

.lead-modal__form .button--request:hover .button__orb {
  display: none;
}

.lead-modal__success[hidden] {
  display: none;
}

.lead-modal__form[hidden] {
  display: none;
}

.lead-modal__success-close {
  width: 100%;
  min-height: 52px;
}

@media (max-width: 640px) {
  .lead-modal {
    padding: 16px;
  }

  .lead-modal__dialog {
    padding: 40px 20px 24px;
    border-radius: 24px;
  }

  .lead-modal__title {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .lead-modal__form .lead-form__control {
    min-height: 54px;
  }

  .lead-modal__form .lead-form__control--textarea {
    min-height: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal,
  .lead-modal__dialog,
  .lead-modal__dialog::before,
  .lead-modal__form .lead-form__field {
    animation: none;
    transition: none;
  }
}

.lead-modal__form .lead-form__status {
  min-height: 1.4em;
}

.lead-modal__success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 0 4px;
  text-align: center;
}

.lead-modal__success-icon {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(151, 217, 61, 0.28), rgba(151, 217, 61, 0.08));
  box-shadow: inset 0 0 0 1px rgba(151, 217, 61, 0.18);
}

.lead-modal__success-icon::before,
.lead-modal__success-icon::after {
  content: "";
  position: absolute;
  background: #d5ff9f;
  border-radius: 999px;
}

.lead-modal__success-icon::before {
  top: 38px;
  left: 21px;
  width: 12px;
  height: 3px;
  transform: rotate(45deg);
}

.lead-modal__success-icon::after {
  top: 33px;
  left: 27px;
  width: 26px;
  height: 3px;
  transform: rotate(-45deg);
}

.lead-modal__success-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.lead-modal__success-text {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

@keyframes lead-modal-border-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes lead-modal-field-drop {
  0% {
    transform: translateY(-42px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 40px 0 72px;
  color: var(--text-dark);
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.site-footer__space {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-footer__ocean {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 288px;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 12, 19, 0) 0%, rgba(5, 26, 38, 0.08) 28%, rgba(7, 37, 52, 0.32) 58%, rgba(7, 37, 52, 0.82) 100%);
}

.site-footer__ocean::before {
  content: "";
  position: absolute;
  inset: 86px 0 auto;
  height: 78px;
  background: radial-gradient(circle at center, rgba(117, 205, 220, 0.18), transparent 68%);
  filter: blur(28px);
  opacity: 0.55;
}

.site-footer__space-fill {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 112%, rgba(109, 149, 204, 0.14), transparent 32%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 38%);
}

.site-footer #stars,
.site-footer #stars2,
.site-footer #stars3 {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  height: 200%;
  background-repeat: repeat;
  pointer-events: none;
  will-change: transform;
}

.site-footer #stars {
  opacity: 0.94;
  background-image:
    radial-gradient(circle at 20px 30px, rgba(255, 255, 255, 0.96) 0 1px, transparent 1.6px),
    radial-gradient(circle at 110px 140px, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.6px),
    radial-gradient(circle at 180px 70px, rgba(255, 255, 255, 0.84) 0 1px, transparent 1.6px),
    radial-gradient(circle at 50px 210px, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.6px),
    radial-gradient(circle at 220px 190px, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px),
    radial-gradient(circle at 260px 40px, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle at 145px 245px, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.6px),
    radial-gradient(circle at 15px 155px, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.6px);
  background-size:
    280px 280px,
    340px 340px,
    420px 420px,
    360px 360px,
    460px 460px,
    520px 520px,
    390px 390px,
    310px 310px;
  animation: home-footer-stars-drift 80s linear infinite;
}

.site-footer #stars2 {
  opacity: 0.68;
  filter: blur(0.2px);
  background-image:
    radial-gradient(circle at 60px 50px, rgba(255, 255, 255, 0.95) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 180px 120px, rgba(255, 255, 255, 0.8) 0 1.4px, transparent 2.1px),
    radial-gradient(circle at 300px 90px, rgba(255, 255, 255, 0.76) 0 1.6px, transparent 2.3px),
    radial-gradient(circle at 120px 250px, rgba(255, 255, 255, 0.84) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 20px 200px, rgba(255, 255, 255, 0.66) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 250px 250px, rgba(255, 255, 255, 0.88) 0 1.4px, transparent 2.1px);
  background-size:
    480px 480px,
    620px 620px,
    740px 740px,
    560px 560px,
    680px 680px,
    820px 820px;
  animation: home-footer-stars-drift 120s linear infinite;
}

.site-footer #stars3 {
  opacity: 0.46;
  filter: blur(0.5px);
  background-image:
    radial-gradient(circle at 140px 80px, rgba(255, 255, 255, 0.95) 0 2px, transparent 2.8px),
    radial-gradient(circle at 30px 240px, rgba(255, 255, 255, 0.82) 0 2px, transparent 2.8px),
    radial-gradient(circle at 270px 210px, rgba(255, 255, 255, 0.74) 0 2.2px, transparent 3px),
    radial-gradient(circle at 340px 100px, rgba(255, 255, 255, 0.9) 0 2px, transparent 2.8px);
  background-size:
    900px 900px,
    1100px 1100px,
    1280px 1280px,
    1500px 1500px;
  animation: home-footer-stars-drift 170s linear infinite;
}

.site-footer__wave {
  position: absolute;
  top: -84px;
  left: 0;
  width: 6400px;
  height: 198px;
  opacity: 0.82;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 198' preserveAspectRatio='none'%3E%3Cpath fill='%230d334a' d='M0 74C95 83 190 109 285 109s190-25 285-35 190 0 285 10 190 4 285-8 190-33 285-27 175 18 175 18V198H0Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1600px 198px;
  animation: none;
  transform: translate3d(0, 0, 0);
}

.site-footer__wave:nth-of-type(2) {
  top: -66px;
  opacity: 0.48;
  filter: brightness(1.2) saturate(1.1);
  animation: none;
  transform: translate3d(-96px, -18px, 0);
}

.site-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__studio {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 280px;
}

.site-footer__studio-logo {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-dark);
}

.footer-link--inline {
  display: inline;
  margin: 0;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copy {
  color: var(--muted-dark);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@keyframes footer-wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes footer-swell {
  0%,
  100% {
    transform: translate3d(0, -18px, 0);
  }

  50% {
    transform: translate3d(0, 6px, 0);
  }
}

@keyframes home-footer-stars-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes production-stars-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-96px, -132px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer #stars,
  .site-footer #stars2,
  .site-footer #stars3,
  .content-section.content-section--production-home::before,
  .content-section.content-section--production-home::after {
    animation: none;
  }
}

.page-vacuum-hub .eyebrow,
.page-vacuum-hub .stat-card span,
.page-vacuum-hub .pill,
.page-vacuum-hub .product-card__badge,
.page-vacuum-hub .content-card__meta,
.page-vacuum-hub .data-table th {
  font-family: "Pobeda Regular", "Segoe UI", sans-serif;
  font-weight: 400;
}

.page-vacuum-hub .hero-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.page-vacuum-hub .eyebrow {
  font-size: 1.1rem;
}

.page-vacuum-hub .hero-section__subtitle {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.page-vacuum-hub .hero-section__text,
.page-vacuum-hub .section-intro,
.page-vacuum-hub .content-card__body p,
.page-vacuum-hub .mini-card p,
.page-vacuum-hub .note-box p,
.page-vacuum-hub .faq-item p {
  font-size: 1.3rem;
}

.page-vacuum-hub .content-section--page-intro p {
  font-size: 1.35rem;
}

.page-vacuum-hub .button,
.page-vacuum-hub .faq-item summary,
.page-vacuum-hub .stat-card strong,
.page-vacuum-hub .data-table td,
.page-vacuum-hub .feature-list li,
.page-vacuum-hub .pill-list li,
.page-vacuum-hub .product-card__price {
  font-size: 1.2rem;
}

.page-vacuum-hub .stat-card span,
.page-vacuum-hub .product-card__badge,
.page-vacuum-hub .data-table th,
.page-vacuum-hub .product-card__detail-list span {
  font-size: 1rem;
}

.page-vacuum-hub .product-card__detail-group h4 {
  font-size: 1rem;
}

.page-vacuum-hub .pill {
  font-size: 1.1rem;
}

.page-vacuum-hub .content-card__meta {
  font-size: 1.2rem;
}

.page-vacuum-hub .product-card .product-card__summary {
  font-size: 1rem;
}

.page-vacuum-hub .product-card .product-card__body h3 {
  font-size: 1.45rem;
}

.page-vacuum-hub .product-card__meta {
  font-size: 0.92rem;
}

.page-vacuum-hub .product-card__price {
  font-size: 0.98rem;
}

.page-vacuum-hub .product-card__badge {
  font-size: 0.76rem;
}

.page-vacuum-hub .product-card__detail-group h4 {
  font-size: 0.72rem;
}

.page-vacuum-hub .product-card__detail-list span {
  font-size: 0.82rem;
}

.page-vacuum-hub .product-card__cta-label {
  font-size: 1.06rem;
}

.page-vacuum-hub .product-card .product-card__meta .product-card__cta {
  color: #ffffff;
}

@keyframes product-card-cta-circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }

  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }

  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }

  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }

  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }

  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }

  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }

  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }

  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }

  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }

  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }

  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes product-card-cta-circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }

  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card__cta-circle {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .home-hero__grid,
  .hero-section__grid,
  .cta-panel,
  .split-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .customer-showcase-grid,
  .industry-showcase-grid,
  .document-card-grid,
  .mini-card-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section__stats {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 56px;
  }

  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .brand-mark__logo {
    height: 58px;
    max-width: 240px;
  }

  .product-card__title {
    min-height: 3.8rem;
  }

  .product-card__summary {
    min-height: 5rem;
  }

  .home-hero {
    padding: 92px 0 56px;
  }

  .home-hero__grid {
    min-height: 560px;
    gap: 28px;
  }

  .hero-section__visual--image .hero-media {
    max-height: 460px;
  }

  .home-hero h1 {
    max-width: 7ch;
    font-size: clamp(3.4rem, 6vw, 5.4rem);
  }

  .home-hero__product {
    width: min(100%, 560px);
  }
}

@media (min-width: 1321px) and (max-width: 1450px) {
  .site-nav__contact {
    display: none;
  }
}

@media (min-width: 1480px) {
  .site-header__inner {
    position: relative;
  }

  .site-nav__items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .site-nav__actions {
    margin-left: auto;
  }
}

@media (max-width: 1320px) {
  :root {
    --header-height: 92px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 1px) 0 auto;
    z-index: 35;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    max-height: calc(100vh - var(--header-height));
    padding: 24px 24px 28px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, #03070c 0%, #060c12 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__items,
  .site-nav__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__items {
    gap: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
  }

  .site-nav__actions {
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(102, 171, 255, 0.12);
  }

  .site-nav__link,
  .site-nav__contact,
  .lang-switch {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .site-nav__link {
    width: 100%;
    min-height: 0;
    padding: 12px 0;
    font-size: 1.3rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(102, 171, 255, 0.12);
  }

  .site-nav__link + .site-nav__link {
    border-left: 0;
    box-shadow: none;
  }

  .site-nav__link:hover,
  .site-nav__link.is-current {
    background: none;
    box-shadow: none;
  }

  .site-nav .button {
    min-width: 0;
  }

  .brand-mark__logo {
    height: 54px;
    max-width: 220px;
  }

  .site-header__inner {
    gap: 12px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 92px;
  }

  .lead-form,
  .card-grid,
  .customer-showcase-grid,
  .industry-showcase-grid,
  .document-card-grid,
  .mini-card-grid,
  .pill-list,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    gap: 18px;
    align-items: end;
  }

  .home-hero__visual {
    justify-content: center;
    padding-left: 0;
  }

  .home-hero__product {
    width: min(100%, 500px);
    max-height: 52vh;
  }
}

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

  .home-hero,
  .hero-section {
    padding-top: 56px;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .home-hero {
    padding-bottom: 42px;
  }

  .content-section {
    padding: 52px 0;
  }

  .cta-panel,
  .lead-form-shell,
  .lead-form-shell__inner,
  .content-card__body,
  .mini-card,
  .note-box,
  .copy-panel {
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  .home-hero__actions,
  .hero-section__actions,
  .lead-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero-section__visual--image .hero-media {
    max-height: 340px;
  }

  .home-hero__grid {
    min-height: 500px;
    gap: 6px;
    align-items: end;
  }

  .home-hero__copy {
    max-width: 100%;
  }

  .home-hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 13vw, 4.3rem);
  }

  .home-hero__product {
    width: min(100%, 420px);
    max-height: 40vh;
  }

  .product-card__visual {
    aspect-ratio: 16 / 11;
  }

  .product-card__image-stage {
    padding: 22px 18px 18px;
  }

  .product-card__title,
  .product-card__summary {
    min-height: auto;
  }
}

@media (hover: none), (max-width: 820px) {
  .product-card {
    min-height: 0;
  }

  .product-card::before {
    clip-path: circle(180px at 84% 14%);
  }

  .product-card__watermark {
    top: 30%;
    left: -2%;
    font-size: clamp(4.6rem, 18vw, 6.2rem);
  }

  .product-card__visual {
    position: relative;
    top: auto;
    height: 220px;
    aspect-ratio: auto;
    transform: none;
  }

  .product-card:hover .product-card__visual {
    top: auto;
    transform: none;
  }

  .product-card__image-stage {
    padding: 0;
  }

  .product-card__image,
  .product-card__fallback,
  .product-card:hover .product-card__image,
  .product-card:hover .product-card__fallback {
    width: min(88%, 300px);
    height: 204px;
    transform: translate(-50%, -50%) rotate(-8deg);
  }

  .product-card__body,
  .product-card:hover .product-card__body {
    position: relative;
    height: auto;
    padding: 14px 20px 20px;
    background:
      linear-gradient(180deg, rgba(8, 13, 20, 0.14) 0%, rgba(8, 13, 20, 0.94) 26%, rgba(8, 13, 20, 0.98) 100%);
  }

  .product-card__details,
  .product-card:hover .product-card__details {
    display: none;
  }

  .product-card .product-card__meta a,
  .product-card:hover .product-card__meta a {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .product-card__detail-group {
    flex-direction: column;
    gap: 8px;
  }

  .product-card__detail-group h4 {
    min-width: 0;
  }
}
