:root {
  color-scheme: dark;
  --bg: #071114;
  --bg-soft: #0a171b;
  --panel: #0d1c20;
  --panel-2: #102429;
  --line: #294047;
  --line-light: #38545c;
  --text: #f5f8f9;
  --muted: #a9bcc1;
  --muted-2: #748b91;
  --cyan: #26bfcc;
  --cyan-light: #76dce3;
  --blue: #667be0;
  --good: #68d8b9;
  --shell: 1180px;
  --header-height: 72px;
  font-family: "Segoe UI", "Yu Gothic UI", Meiryo, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 11, 13, .28), rgba(4, 11, 13, .84)),
    url("client-background.png") center top / cover no-repeat;
  opacity: .5;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: #071114;
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(76, 106, 114, .34);
  background: rgba(4, 13, 16, .82);
  backdrop-filter: blur(22px) saturate(135%);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(92, 145, 155, .45);
  background: rgba(4, 13, 16, .94);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 12px rgba(38, 191, 204, .7);
  transform: scaleX(0);
  transform-origin: left center;
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 34px;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img { width: 38px; height: 38px; }
.brand strong { font-size: 15px; letter-spacing: -.015em; }

.brand img,
.footer-brand img {
  filter: drop-shadow(0 0 13px rgba(38, 191, 204, .16));
}

.primary-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 31px;
}

.primary-nav a {
  position: relative;
  color: #acbdc1;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}

.primary-nav a:hover,
.primary-nav a.current,
.primary-nav a.is-active { color: #fff; }

.primary-nav a:hover::after,
.primary-nav a.current::after,
.primary-nav a.is-active::after { transform: scaleX(1); }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  isolation: isolate;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button::after {
  position: absolute;
  top: -55%;
  left: -42%;
  z-index: 0;
  width: 34%;
  height: 210%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-18deg);
  transition: left .55s cubic-bezier(.22, 1, .36, 1);
}

.button:hover { transform: translateY(-2px); }
.button:hover::after { left: 116%; }
.button:active { transform: translateY(0) scale(.985); }
.button span { transition: transform .2s cubic-bezier(.22, 1, .36, 1); }
.button:hover span { transform: translateY(2px); }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 12px; }
.button-large { min-height: 54px; padding-inline: 24px; }

.button-primary {
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(115deg, #18b9c6, #6479dc);
  color: #fff;
  box-shadow: 0 10px 28px rgba(32, 181, 198, .16), inset 0 1px rgba(255, 255, 255, .12);
}

.button-primary:hover { background: linear-gradient(115deg, #22c5d1, #7084e5); }
.button-light { background: #f5f8f9; color: #071114; }
.button-light:hover { background: #fff; }

.simple-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e1eaec;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.simple-link:hover { color: var(--cyan-light); }

.hero {
  position: relative;
  padding: 92px 0 86px;
  overflow: hidden;
  border-bottom: 1px solid rgba(69, 98, 106, .34);
  background:
    radial-gradient(circle at 84% 16%, rgba(44, 198, 211, .13), transparent 29%),
    radial-gradient(circle at 18% 76%, rgba(101, 121, 224, .1), transparent 27%),
    linear-gradient(180deg, rgba(6, 20, 24, .66), rgba(4, 12, 15, .9)),
    url("client-background.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  top: 80px;
  right: -270px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(111, 221, 229, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(65, 135, 160, .025), 0 0 0 180px rgba(101, 121, 224, .018);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(400px, .83fr) minmax(560px, 1.17fr);
}

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 700;
}

.product-label > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(38, 191, 204, .09), 0 0 16px rgba(38, 191, 204, .7);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.hero h1,
.catalog-hero h1 {
  margin: 0;
  font-size: clamp(48px, 4.7vw, 66px);
  font-weight: 690;
  letter-spacing: -.055em;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--cyan-light);
  font-style: normal;
  text-shadow: 0 0 32px rgba(38, 191, 204, .18);
}

.hero-lead {
  max-width: 520px;
  margin: 25px 0 0;
  color: #bac9cd;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.requirements {
  margin: 24px 0 0;
  color: #7f979d;
  font-size: 12px;
}

.product-shot {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  margin: 0;
  perspective: 1200px;
}

.launcher-material-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 739 / 478;
  border: 1px solid rgba(104, 172, 183, .35);
  border-radius: 31px;
  background: #071114;
  box-shadow: 0 35px 75px rgba(0, 0, 0, .42), 0 0 48px rgba(38, 191, 204, .07);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, box-shadow .3s ease;
}

.launcher-material-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
}

.launcher-material-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(118, 220, 227, .14), transparent 24%);
  opacity: 0;
  transition: opacity .25s ease;
}

.product-shot.is-tilting .launcher-material-frame {
  border-color: rgba(118, 220, 227, .52);
  box-shadow: 0 42px 85px rgba(0, 0, 0, .47), 0 0 58px rgba(38, 191, 204, .11);
  transition-duration: .09s;
}

.product-shot.is-tilting .launcher-material-frame::after { opacity: 1; }

.launcher-material-frame img {
  width: calc(100% * 839 / 739);
  max-width: none;
  height: auto;
  transform: translate(-6.7938%, -7.1301%);
}

.product-shot figcaption {
  margin-top: 12px;
  color: #70878d;
  font-size: 11px;
  text-align: right;
}

.quick-points {
  border-bottom: 1px solid rgba(69, 98, 106, .34);
  background: rgba(8, 23, 27, .86);
}

.quick-points-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-points-inner > div {
  display: flex;
  min-height: 112px;
  justify-content: center;
  flex-direction: column;
  padding: 0 34px;
  border-left: 1px solid #21363c;
}

.quick-points-inner > div:first-child { border-left: 0; }
.quick-points strong { font-size: 15px; }
.quick-points span { margin-top: 4px; color: #82999f; font-size: 12px; }
.quick-points-inner > div:first-child strong { color: var(--cyan-light); }

.section { position: relative; padding: 112px 0; }

.section-title { margin-bottom: 62px; }
.section-title > p,
.catalog-heading > div > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 700;
}

.section-title > p::before,
.catalog-heading > div > p::before {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section-title h2,
.download-inner h2,
.catalog-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 52px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1.24;
}

.centered-title { text-align: center; }

.feature-row {
  display: grid;
  align-items: center;
  gap: 90px;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
}

.feature-row-reverse .feature-copy { order: 2; }
.feature-row-reverse > :last-child { order: 1; }

.feature-number {
  color: #607980;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.feature-copy h3 {
  margin: 15px 0 0;
  font-size: 31px;
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.feature-copy > p {
  max-width: 530px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.feature-copy .simple-link { margin-top: 25px; }

.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  margin-top: 9px;
  padding-left: 24px;
  color: #d7e2e4;
  font-size: 13px;
}

.plain-list li::before {
  position: absolute;
  top: .72em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--good);
}

.version-preview {
  padding: 18px;
  border: 1px solid #365058;
  border-radius: 18px;
  background: rgba(6, 19, 23, .92);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .26), 0 0 35px rgba(38, 191, 204, .035);
}

.preview-header,
.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.preview-header { padding: 4px 4px 16px; }
.preview-header strong { font-size: 14px; }
.preview-header > span { color: #789096; font-size: 11px; }

.preview-row {
  min-height: 77px;
  padding: 0 18px;
  border-top: 1px solid #21383e;
}

.preview-row:nth-child(2) {
  border: 1px solid #38727c;
  border-radius: 12px;
  background: #123139;
}

.preview-row > span { display: flex; flex-direction: column; }
.preview-row strong { font-size: 14px; }
.preview-row small { margin-top: 2px; color: #839aa0; font-size: 10px; }
.preview-row b { color: var(--cyan-light); font-size: 11px; }

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

.module-examples article,
.recommended-grid article {
  min-height: 155px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(15, 33, 38, .96), rgba(8, 22, 26, .96));
}

.module-examples article:nth-child(1),
.recommended-grid article:nth-child(1) { border-color: rgba(56, 148, 158, .5); }

.module-examples strong,
.recommended-grid strong { font-size: 17px; }
.module-examples p,
.recommended-grid p { margin: 8px 0 0; color: #8fa5aa; font-size: 12px; line-height: 1.75; }

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

.small-feature-list > div {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
}

.small-feature-list strong { font-size: 15px; }
.small-feature-list span { color: #82999f; font-size: 12px; text-align: right; }

.start-section,
.safety-section {
  border-top: 1px solid rgba(66, 96, 104, .3);
  border-bottom: 1px solid rgba(66, 96, 104, .3);
  background:
    linear-gradient(90deg, rgba(5, 17, 20, .95), rgba(8, 25, 30, .9)),
    url("client-background.png") center / cover no-repeat;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.steps li {
  min-height: 240px;
  padding: 32px;
  border: solid var(--line);
  border-width: 1px 1px 1px 0;
  background: rgba(8, 25, 29, .86);
}

.steps li:first-child { border-left-width: 1px; border-radius: 16px 0 0 16px; }
.steps li:last-child { border-radius: 0 16px 16px 0; }
.steps li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(73, 187, 198, .38);
  border-radius: 10px;
  background: rgba(38, 191, 204, .08);
  color: var(--cyan-light);
  font-family: Consolas, monospace;
  font-size: 12px;
}
.steps strong { display: block; margin-top: 45px; font-size: 19px; }
.steps p { margin: 9px 0 0; color: #8fa5aa; font-size: 13px; line-height: 1.8; }

.start-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
}

.start-action > span { color: #7f979d; font-size: 11px; }

.safety-layout,
.faq-layout {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: 360px 1fr;
}

.safety-layout .section-title,
.faq-layout .section-title {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin: 0;
}

.safety-layout .section-title h2,
.faq-layout .section-title h2 { font-size: 38px; }

.safety-points {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.safety-points li {
  display: flex;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.safety-points strong { font-size: 16px; }
.safety-points span { margin-top: 5px; color: #8ea4a9; font-size: 13px; }

.technical-details { margin-top: 18px; border: 1px solid var(--line); border-radius: 13px; background: #081518; }
.technical-details summary { padding: 17px 20px; cursor: pointer; font-size: 13px; font-weight: 700; }
.technical-details > div { padding: 0 20px 20px; color: #8ea4a9; font-size: 12px; }
.technical-details p { margin: 12px 0 0; }
.technical-details a { display: inline-block; margin-top: 15px; color: var(--cyan-light); }

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 13px;
  height: 1px;
  content: "";
  background: #93a9ae;
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: none; }
.faq-list p { max-width: 680px; margin: -4px 0 26px; color: #91a7ac; font-size: 13px; line-height: 1.9; }

.download-section {
  border-top: 1px solid #3e636c;
  border-bottom: 1px solid #3e636c;
  background:
    radial-gradient(circle at 82% 0%, rgba(113, 128, 228, .28), transparent 32%),
    linear-gradient(105deg, #0e3c44, #15333f 55%, #222e55);
}

.download-inner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.download-inner h2 { font-size: 43px; }
.download-inner p { margin: 9px 0 0; color: #aac8cd; font-size: 12px; }

.site-footer { padding: 38px 0; background: #040b0d; }
.footer-inner { display: grid; align-items: center; gap: 25px 40px; grid-template-columns: auto 1fr; }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand strong { font-size: 13px; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 25px; }
.site-footer nav a { color: #8fa3a8; font-size: 11px; text-decoration: none; }
.site-footer nav a:hover { color: #fff; }
.site-footer p { margin: 0; color: #52676d; font-size: 9px; grid-column: 1 / -1; }

/* Modules */
.catalog-hero {
  padding: 74px 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(38, 191, 204, .13), transparent 31%),
    linear-gradient(180deg, rgba(5, 19, 23, .78), rgba(5, 14, 17, .94)),
    url("client-background.png") center / cover no-repeat;
}

.back-link { display: inline-flex; gap: 8px; margin-bottom: 44px; color: #879da2; font-size: 12px; font-weight: 650; text-decoration: none; }
.back-link:hover { color: #fff; }
.catalog-hero h1 { font-size: clamp(43px, 5vw, 60px); }
.catalog-hero .site-shell > p:last-child { max-width: 680px; margin: 22px 0 0; color: #a9bbc0; font-size: 15px; }

.recommended-section { padding: 82px 0; border-bottom: 1px solid var(--line); background: rgba(5, 15, 18, .72); }
.compact-title { margin-bottom: 34px; }
.compact-title h2 { font-size: 36px; }
.recommended-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
.recommended-grid article { min-height: 185px; }

.catalog-section { padding: 92px 0 110px; }
.catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.catalog-heading h2 { font-size: 40px; }
.result-count { margin: 0 0 5px; color: #80979d; font-size: 12px; }

.catalog-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.search-field { display: block; width: min(460px, 100%); }
.search-field > span:first-child { display: block; margin-bottom: 7px; color: #8da3a8; font-size: 11px; font-weight: 650; }
.search-control { display: flex; height: 48px; align-items: center; gap: 12px; padding: 0 15px; border: 1px solid #355058; border-radius: 11px; background: #0a181c; }
.search-control:focus-within { border-color: #4c7b84; box-shadow: 0 0 0 3px rgba(38, 191, 204, .08); }
.search-control b { color: #789096; font-weight: 500; }
.search-control input { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; font-size: 13px; }
.search-control input::placeholder { color: #60777d; }

.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { min-height: 40px; padding: 0 13px; border: 1px solid #304850; border-radius: 9px; background: #0a181c; color: #a9bbc0; cursor: pointer; font-size: 11px; font-weight: 650; }
.filter-button span { margin-left: 5px; color: #667e84; font-size: 9px; }
.filter-button:hover { border-color: #4b6971; color: #fff; }
.filter-button.active { border-color: #3b7781; background: #12343b; color: #fff; }
.filter-button.active span { color: var(--cyan-light); }

.module-grid { display: grid; gap: 12px; margin-top: 28px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.module-card { display: flex; min-height: 215px; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(13, 30, 34, .96), rgba(7, 20, 24, .96)); transition: border-color .16s ease, transform .16s ease; }
.module-card:hover { border-color: #416169; transform: translateY(-2px); }
.module-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.module-monogram { display: none; }
.module-category { padding: 5px 9px; border-radius: 999px; background: #122d33; color: #91b4ba; font-size: 10px; font-weight: 650; }
.module-card h3 { margin: 19px 0 0; font-size: 18px; font-weight: 680; letter-spacing: -.02em; }
.module-card p { margin: 10px 0 0; color: #9bafb4; font-size: 13px; line-height: 1.8; }
.module-id { display: none; }
.module-empty { margin: 28px 0 0; padding: 70px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); text-align: center; }
.module-empty strong { font-size: 16px; }
.module-empty p { margin: 5px 0 0; color: #82999f; font-size: 12px; }
.catalog-note { margin: 24px 0 0; padding: 17px 20px; border: 1px solid var(--line); border-radius: 11px; color: #83999f; font-size: 11px; }

/* Motion and interaction */
.has-motion body::before {
  animation: backgroundDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}

.has-motion .hero::after { animation: orbitBreathe 10s ease-in-out infinite alternate; }

.has-motion .hero-copy > *,
.has-motion .hero .product-shot {
  opacity: 0;
  transform: translateY(22px);
}

.has-motion .hero.is-ready .hero-copy > *,
.has-motion .hero.is-ready .product-shot {
  animation: heroEnter .72s cubic-bezier(.22, 1, .36, 1) forwards;
}

.has-motion .hero.is-ready .hero-copy .product-label { animation-delay: .06s; }
.has-motion .hero.is-ready .hero-copy h1 { animation-delay: .13s; }
.has-motion .hero.is-ready .hero-copy .hero-lead { animation-delay: .21s; }
.has-motion .hero.is-ready .hero-copy .hero-actions { animation-delay: .29s; }
.has-motion .hero.is-ready .hero-copy .requirements { animation-delay: .36s; }
.has-motion .hero.is-ready .product-shot { animation-delay: .18s; transform: translateY(25px) scale(.985); }

.has-motion .catalog-hero .back-link,
.has-motion .catalog-hero .product-label,
.has-motion .catalog-hero h1,
.has-motion .catalog-hero .site-shell > p:last-child,
.has-motion .catalog-hero .catalog-hero-window > div:first-child > p:last-child {
  opacity: 0;
  animation: heroEnter .68s cubic-bezier(.22, 1, .36, 1) forwards;
}

.has-motion .catalog-hero .back-link { animation-delay: .03s; }
.has-motion .catalog-hero .product-label { animation-delay: .1s; }
.has-motion .catalog-hero h1 { animation-delay: .17s; }
.has-motion .catalog-hero .site-shell > p:last-child,
.has-motion .catalog-hero .catalog-hero-window > div:first-child > p:last-child { animation-delay: .25s; }

.has-motion .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .62s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

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

.section-title.reveal > p::before,
.catalog-tools.reveal::after {
  transform-origin: left center;
  transition: transform .62s cubic-bezier(.22, 1, .36, 1) .12s;
}

.has-motion .section-title.reveal:not(.is-visible) > p::before { transform: scaleX(0); }
.has-motion .section-title.reveal.is-visible > p::before { transform: scaleX(1); }

.version-preview,
.small-feature-list,
.module-examples article,
.recommended-grid article,
.module-card,
.steps li {
  transition: border-color .24s ease, background-color .24s ease, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.version-preview:hover,
.small-feature-list:hover {
  border-color: #44646c;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .3), 0 0 42px rgba(38, 191, 204, .055);
}

.preview-row { transition: background-color .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1); }
.preview-row:hover { transform: translateX(5px); }

.module-examples article,
.recommended-grid article,
.module-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.module-examples article::before,
.recommended-grid article::before,
.module-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(280px circle at var(--pointer-x) var(--pointer-y), rgba(84, 203, 214, .115), transparent 54%);
  opacity: 0;
  transition: opacity .24s ease;
}

.module-examples article > *,
.recommended-grid article > *,
.module-card > * { position: relative; z-index: 1; }

.module-examples article:hover,
.recommended-grid article:hover,
.module-card:hover {
  border-color: #466971;
  box-shadow: 0 17px 38px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

.module-examples article:hover::before,
.recommended-grid article:hover::before,
.module-card:hover::before { opacity: 1; }

.small-feature-list > div { transition: padding .25s cubic-bezier(.22, 1, .36, 1), background-color .22s ease; }
.small-feature-list > div:hover { padding-inline: 12px; background: rgba(38, 191, 204, .035); }

.steps li:hover {
  border-color: #3b5d65;
  background: rgba(11, 32, 37, .92);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .2);
  transform: translateY(-4px);
}

.steps li > span { transition: border-color .25s ease, background-color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1); }
.steps li:hover > span { border-color: rgba(101, 121, 224, .65); background: rgba(80, 120, 210, .13); transform: translateY(-2px) rotate(-3deg); }

.safety-points li { transition: padding .28s cubic-bezier(.22, 1, .36, 1), background-color .25s ease; }
.safety-points li:hover { padding-inline: 14px; background: rgba(38, 191, 204, .032); }

.faq-list summary { transition: color .2s ease, padding-left .24s cubic-bezier(.22, 1, .36, 1); }
.faq-list summary::before,
.faq-list summary::after { transition: background-color .2s ease, transform .26s cubic-bezier(.22, 1, .36, 1); }
.faq-list details:hover summary,
.faq-list details[open] summary { color: var(--cyan-light); padding-left: 8px; }
.faq-list details:hover summary::before,
.faq-list details:hover summary::after { background: var(--cyan-light); }
.faq-list details[open] p { animation: detailsEnter .3s cubic-bezier(.22, 1, .36, 1) both; }

.technical-details summary { transition: color .2s ease, background-color .2s ease; }
.technical-details summary:hover,
.technical-details[open] summary { background: rgba(38, 191, 204, .045); color: var(--cyan-light); }
.technical-details[open] > div { animation: detailsEnter .3s cubic-bezier(.22, 1, .36, 1) both; }

.filter-button { transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease; }
.filter-button:hover { transform: translateY(-1px); }
.filter-button:active { transform: scale(.97); }

.module-grid { transition: opacity .11s ease, transform .11s ease; }
.module-grid.is-updating { opacity: .35; transform: translateY(4px); }
.module-card.card-enter { animation: cardEnter .42s cubic-bezier(.22, 1, .36, 1) both; animation-delay: calc(var(--card-order, 0) * 26ms); }

.download-section { position: relative; overflow: hidden; }
.download-section::after {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(156, 218, 226, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: downloadHalo 9s ease-in-out infinite alternate;
}
.download-inner { position: relative; z-index: 1; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(24px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes detailsEnter {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(38, 191, 204, .07), 0 0 12px rgba(38, 191, 204, .44); }
  50% { box-shadow: 0 0 0 7px rgba(38, 191, 204, .025), 0 0 20px rgba(38, 191, 204, .78); }
}

@keyframes orbitBreathe {
  from { opacity: .72; transform: translate3d(0, 0, 0) scale(.98); }
  to { opacity: 1; transform: translate3d(-18px, 12px, 0) scale(1.035); }
}

@keyframes backgroundDrift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-.7%, -.45%, 0); }
}

@keyframes downloadHalo {
  from { opacity: .45; transform: translate3d(0, 0, 0) scale(.94); }
  to { opacity: .9; transform: translate3d(-26px, 18px, 0) scale(1.05); }
}

@media (max-width: 1050px) {
  .hero-grid { gap: 48px; grid-template-columns: minmax(340px, .78fr) minmax(480px, 1.22fr); }
  .feature-row { gap: 55px; }
  .recommended-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
}

@media (max-width: 860px) {
  :root { --header-height: 66px; }
  .site-shell { width: min(calc(100% - 36px), var(--shell)); }
  .header-inner { gap: 22px; }
  .primary-nav { justify-content: flex-start; gap: 20px; overflow-x: auto; scrollbar-width: none; }
  .primary-nav::-webkit-scrollbar { display: none; }
  .header-download { display: none; }
  .hero { padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .product-shot { max-width: 700px; }
  .quick-points-inner { grid-template-columns: 1fr; }
  .quick-points-inner > div { min-height: 88px; padding: 0; border-top: 1px solid #21363c; border-left: 0; }
  .quick-points-inner > div:first-child { border-top: 0; }
  .section { padding: 88px 0; }
  .feature-row { gap: 40px; grid-template-columns: 1fr; }
  .feature-row-reverse .feature-copy,
  .feature-row-reverse > :last-child { order: initial; }
  .feature-copy > p { max-width: 650px; }
  .steps { gap: 10px; grid-template-columns: 1fr; }
  .steps li,
  .steps li:first-child,
  .steps li:last-child { min-height: auto; border: 1px solid var(--line); border-radius: 13px; }
  .steps strong { margin-top: 22px; }
  .safety-layout,
  .faq-layout { gap: 42px; grid-template-columns: 1fr; }
  .safety-layout .section-title,
  .faq-layout .section-title { position: static; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand strong { font-size: 13px; }
  .brand img { width: 34px; height: 34px; }
  .primary-nav { justify-content: flex-end; gap: 15px; }
  .primary-nav a { font-size: 11px; }
  .primary-nav a:nth-child(n+3) { display: none; }
  .hero { padding: 54px 0 58px; }
  .hero h1,
  .catalog-hero h1 { font-size: 42px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .launcher-material-frame { border-radius: 20px; }
  .product-shot figcaption { text-align: left; }
  .section { padding: 70px 0; }
  .section-title { margin-bottom: 42px; }
  .section-title h2 { font-size: 35px; }
  .feature-row { padding: 55px 0; }
  .feature-copy h3 { font-size: 26px; }
  .module-examples,
  .recommended-grid,
  .module-grid { grid-template-columns: 1fr; }
  .module-examples article,
  .recommended-grid article { min-height: auto; }
  .small-feature-list > div { align-items: flex-start; flex-direction: column; gap: 5px; padding: 18px 0; }
  .small-feature-list span { text-align: left; }
  .start-action { align-items: stretch; flex-direction: column; }
  .start-action .button { width: 100%; }
  .download-inner { min-height: 300px; align-items: stretch; justify-content: center; flex-direction: column; }
  .download-inner h2 { font-size: 35px; }
  .download-inner .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; gap: 12px 20px; }
  .site-footer p { grid-column: auto; }
  .catalog-hero { padding: 52px 0 58px; }
  .catalog-section { padding: 70px 0 85px; }
  .catalog-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .catalog-heading h2 { font-size: 34px; }
  .filter-row { display: grid; grid-template-columns: repeat(2, 1fr); }
  .filter-button { width: 100%; }
  .module-card { min-height: auto; }
}

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

/* LatiNova product language */
:root {
  --bg: #061115;
  --bg-soft: #08171b;
  --panel: #09191d;
  --panel-2: #0b2025;
  --line: #263d43;
  --line-light: #36545c;
  --cyan: #17b8c6;
  --cyan-light: #74dbe2;
  --blue: #657add;
  --shell: 1240px;
  --header-height: 84px;
}

body {
  background:
    linear-gradient(180deg, rgba(4, 13, 16, .54), rgba(4, 13, 16, .92) 730px),
    url("client-background.png") center top / cover fixed no-repeat,
    var(--bg);
}

body::before {
  background:
    linear-gradient(90deg, rgba(7, 17, 21, .25), rgba(7, 17, 21, .06)),
    radial-gradient(circle at 50% -10%, rgba(44, 162, 179, .12), transparent 42%);
  opacity: 1;
}

.site-header {
  top: 0;
  min-height: var(--header-height);
  padding: 12px 0;
  border: 0;
  background: linear-gradient(180deg, rgba(4, 13, 16, .88), rgba(4, 13, 16, 0));
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(4, 13, 16, .96), rgba(4, 13, 16, .72));
  box-shadow: none;
}

.header-inner {
  min-height: 60px;
  padding: 7px 9px 7px 16px;
  gap: 18px;
  border: 1px solid rgba(73, 103, 111, .56);
  border-radius: 23px;
  background: rgba(6, 18, 22, .93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .025);
  backdrop-filter: blur(22px) saturate(125%);
}

.brand { padding-right: 8px; }
.brand img { width: 34px; height: 34px; }
.brand strong { font-size: 14px; font-weight: 620; }

.primary-nav {
  flex: 0 1 auto;
  margin-left: auto;
  padding: 4px;
  gap: 2px;
  border: 1px solid #243b41;
  border-radius: 15px;
  background: #071519;
}

.primary-nav a {
  padding: 7px 13px;
  border-radius: 10px;
  color: #94a8ad;
  font-size: 12px;
  font-weight: 650;
}

.primary-nav a::after { display: none; }
.primary-nav a:hover,
.primary-nav a.current,
.primary-nav a.is-active { background: #12303b; color: #fff; }

.header-download {
  min-height: 39px;
  margin-left: 0;
  border-radius: 13px;
}

.scroll-progress {
  right: max(24px, calc((100% - var(--shell)) / 2 + 22px));
  bottom: 9px;
  left: max(24px, calc((100% - var(--shell)) / 2 + 22px));
  height: 1px;
  border-radius: 999px;
  opacity: .72;
}

.button { border-radius: 14px; }
.button::after { display: none; }
.button-primary {
  background: linear-gradient(110deg, #18b8c5, #657add);
  box-shadow: 0 12px 30px rgba(28, 177, 196, .15), inset 0 1px rgba(255, 255, 255, .12);
}
.button-primary:hover { background: linear-gradient(110deg, #20c3cf, #6e83e4); box-shadow: 0 16px 36px rgba(28, 177, 196, .2); }
.button-light { border: 1px solid rgba(255, 255, 255, .16); background: #f5f8f9; }

.hero {
  padding: 34px 0 38px;
  border: 0;
  background: transparent;
}
.hero::after { display: none; }

.hero-window {
  overflow: hidden;
  border: 1px solid rgba(81, 118, 127, .55);
  border-radius: 32px;
  background:
    radial-gradient(circle at 87% 8%, rgba(42, 171, 188, .08), transparent 27%),
    linear-gradient(155deg, rgba(8, 25, 30, .97), rgba(5, 15, 18, .97));
  box-shadow: 0 36px 90px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .035);
}

.hero-window-bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-bottom: 1px solid #243a40;
  color: #6f858b;
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 9px;
  letter-spacing: .1em;
}

.hero-window-bar span { display: inline-flex; align-items: center; gap: 8px; }
.hero-window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 11px rgba(104, 216, 185, .65);
}

.hero-grid {
  padding: 52px 46px 45px;
  gap: 48px;
  grid-template-columns: minmax(335px, .72fr) minmax(560px, 1.28fr);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 29px;
}
.hero-brand-lockup img { width: 46px; height: 46px; filter: drop-shadow(0 0 16px rgba(38, 191, 204, .18)); }
.hero-brand-lockup div { display: flex; line-height: 1; flex-direction: column; }
.hero-brand-lockup span { color: #8ea4aa; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero-brand-lockup strong { margin-top: 6px; font-size: 22px; font-weight: 590; letter-spacing: -.025em; }

.product-label {
  margin-bottom: 13px;
  color: #92adb2;
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-label > span { width: 6px; height: 6px; }

.hero h1 {
  font-size: clamp(42px, 4vw, 57px);
  font-weight: 610;
  letter-spacing: -.052em;
  line-height: 1.18;
}
.hero h1 em { color: #f5f8f9; text-shadow: none; }

.hero-lead {
  max-width: 470px;
  margin-top: 20px;
  color: #9eb2b7;
  font-size: 14px;
  line-height: 1.85;
}
.hero-actions { gap: 20px; margin-top: 28px; }
.hero-actions .button { min-width: 162px; }

.requirements {
  display: flex;
  margin-top: 21px;
  flex-wrap: wrap;
  gap: 7px;
}
.requirements span {
  padding: 5px 9px;
  border: 1px solid #263e44;
  border-radius: 999px;
  background: rgba(5, 18, 22, .7);
  color: #71888e;
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 9px;
}

.launcher-material-frame { border-radius: 24px; box-shadow: 0 28px 65px rgba(0, 0, 0, .42), 0 0 46px rgba(38, 191, 204, .05); }
.product-shot figcaption { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 10px; }
.product-shot figcaption span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(38, 191, 204, .6); }

.quick-points {
  padding: 0 0 38px;
  border: 0;
  background: transparent;
}

.quick-points-inner {
  overflow: hidden;
  padding: 7px;
  gap: 3px;
  border: 1px solid #2a4147;
  border-radius: 22px;
  background: rgba(6, 18, 22, .93);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
  grid-template-columns: repeat(5, 1fr);
}
.quick-points-inner > div {
  min-height: 77px;
  padding: 12px 15px;
  border: 0;
  border-radius: 15px;
  text-align: left;
  transition: background-color .2s ease, transform .2s ease;
}
.quick-points-inner > div:hover { background: #0c242b; transform: translateY(-1px); }
.quick-points-inner > div.active { background: #123241; }
.quick-points small { color: #5f787e; font-family: Consolas, monospace; font-size: 8px; letter-spacing: .09em; }
.quick-points strong { margin-top: 2px; font-size: 13px; font-weight: 650; }
.quick-points-inner > div:first-child strong { color: #fff; }
.quick-points span { margin-top: 0; color: #71888e; font-size: 9px; }

.section { padding: 86px 0; }
.section-title { margin-bottom: 37px; }
.section-title > p,
.catalog-heading > div > p {
  margin-bottom: 9px;
  color: var(--cyan-light);
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-title h2,
.download-inner h2,
.catalog-heading h2 { font-size: clamp(32px, 3.3vw, 44px); font-weight: 610; }

#features { padding-top: 72px; }
.feature-row {
  margin-top: 14px;
  padding: 38px 40px;
  gap: 60px;
  border: 1px solid #294148;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 24, 29, .94), rgba(6, 18, 22, .94));
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
}
.feature-number {
  color: var(--cyan-light);
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .1em;
}
.feature-copy h3 { margin-top: 10px; font-size: 26px; font-weight: 630; }
.feature-copy > p { margin-top: 13px; color: #98acb1; font-size: 13px; }
.plain-list { margin-top: 18px; }
.plain-list li { font-size: 12px; }

.version-preview {
  padding: 11px;
  border-color: #2b454c;
  border-radius: 17px;
  background: #07171b;
  box-shadow: none;
}
.preview-header { padding: 8px 9px 13px; }
.preview-header strong { font-size: 13px; }
.preview-row { min-height: 65px; padding-inline: 14px; border-top-color: #20363c; }
.preview-row:nth-child(2) { border-color: #34707a; background: #123039; }

.module-settings {
  display: block;
  overflow: hidden;
  padding: 7px;
  border: 1px solid #2b454c;
  border-radius: 17px;
  background: #07171b;
}
.module-settings article,
.recommended-grid article {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #20363c;
  border-radius: 0;
  background: transparent;
}
.module-settings article:last-child { border-bottom: 0; }
.module-settings article:nth-child(1),
.recommended-grid article:nth-child(1) { border-color: #20363c; }
.module-settings strong,
.recommended-grid strong { font-size: 13px; }
.module-settings p,
.recommended-grid p { margin-top: 1px; font-size: 10px; line-height: 1.5; }

.demo-switch {
  position: relative;
  display: block;
  width: 34px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid #43555a;
  border-radius: 999px;
  background: #2b373b;
}
.demo-switch::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  content: "";
  background: #aab5b8;
  transition: transform .22s ease;
}
.demo-switch.on { border-color: #229eaa; background: #159cac; }
.demo-switch.on::after { background: #fff; transform: translateX(15px); }

.small-feature-list {
  overflow: hidden;
  padding: 7px 18px;
  border: 1px solid #2b454c;
  border-radius: 17px;
  background: #07171b;
}
.small-feature-list > div { min-height: 70px; }

.start-section,
.safety-section {
  border-color: rgba(47, 73, 80, .62);
  background: rgba(5, 16, 20, .72);
}
.centered-title { text-align: left; }

.steps {
  overflow: hidden;
  border: 1px solid #2a4248;
  border-radius: 20px;
  background: rgba(7, 22, 26, .94);
}
.steps li,
.steps li:first-child,
.steps li:last-child {
  min-height: 185px;
  padding: 27px 29px;
  border: 0;
  border-right: 1px solid #253c42;
  border-radius: 0;
  background: transparent;
}
.steps li:last-child { border-right: 0; }
.steps li > span { border-radius: 9px; }
.steps strong { margin-top: 27px; font-size: 16px; }
.steps p { font-size: 11px; }
.start-action { justify-content: flex-start; }

.safety-layout,
.faq-layout { gap: 72px; grid-template-columns: 300px 1fr; }
.safety-layout .section-title h2,
.faq-layout .section-title h2 { font-size: 34px; }
.safety-points,
.faq-list {
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid #2a4248;
  border-radius: 18px;
  background: rgba(7, 22, 26, .9);
}
.technical-details { background: rgba(7, 22, 26, .9); }

.download-section {
  border-color: #33555d;
  background: linear-gradient(115deg, #0d353d, #12303b 55%, #24345e);
}
.download-section::after { display: none; }
.download-inner { min-height: 220px; }
.download-inner h2 { font-size: 36px; }
.download-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 5px !important; font-family: Consolas, monospace; font-size: 9px !important; letter-spacing: .09em; }
.download-kicker span { width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 10px rgba(104, 216, 185, .6); }

/* Module library */
.catalog-hero {
  padding: 34px 0 42px;
  border: 0;
  background: transparent;
}
.catalog-hero-window {
  display: grid;
  align-items: end;
  gap: 50px;
  padding: 48px;
  border: 1px solid rgba(81, 118, 127, .55);
  border-radius: 28px;
  background:
    radial-gradient(circle at 87% 8%, rgba(42, 171, 188, .09), transparent 30%),
    linear-gradient(150deg, rgba(8, 25, 30, .97), rgba(5, 15, 18, .97));
  box-shadow: 0 28px 75px rgba(0, 0, 0, .32);
  grid-template-columns: 1fr auto;
}
.back-link { margin-bottom: 25px; }
.catalog-hero h1 { font-size: clamp(40px, 4.5vw, 57px); font-weight: 610; letter-spacing: -.045em; }
.catalog-hero .site-shell > div:first-child > p:last-child { max-width: 620px; margin: 17px 0 0; color: #9eb2b7; font-size: 13px; }

.catalog-status {
  display: grid;
  min-width: 270px;
  margin: 0;
  border: 1px solid #2b454c;
  border-radius: 15px;
  background: #07171b;
  grid-template-columns: repeat(3, 1fr);
}
.catalog-status div { padding: 14px 16px; border-left: 1px solid #243b41; }
.catalog-status div:first-child { border-left: 0; }
.catalog-status dt { color: #637a80; font-family: Consolas, monospace; font-size: 7px; letter-spacing: .1em; }
.catalog-status dd { display: flex; align-items: center; gap: 6px; margin: 4px 0 0; color: #e7edef; font-family: Consolas, monospace; font-size: 10px; font-weight: 700; }
.catalog-status dd span { width: 5px; height: 5px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px rgba(104, 216, 185, .6); }

.recommended-section { padding: 48px 0 58px; background: transparent; }
.compact-title { margin-bottom: 22px; }
.compact-title h2 { font-size: 27px; }
.recommended-grid {
  overflow: hidden;
  padding: 7px;
  gap: 0;
  border: 1px solid #2b454c;
  border-radius: 17px;
  background: #07171b;
  grid-template-columns: repeat(4, 1fr);
}
.recommended-grid article { min-height: 88px; border-right: 1px solid #20363c; border-bottom: 0; }
.recommended-grid article:last-child { border-right: 0; }

.catalog-section { padding: 70px 0 95px; }
.catalog-heading h2 { font-size: 34px; }
.catalog-tools { margin-top: 25px; padding: 16px; border: 1px solid #2b454c; border-radius: 17px; background: rgba(7, 22, 26, .9); }
.search-control { background: #061519; }

.module-grid { gap: 9px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.module-card {
  min-height: 138px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(10, 28, 33, .96), rgba(7, 20, 24, .96));
}
.module-card h3 { margin-top: 13px; font-size: 16px; }
.module-card p { margin-top: 6px; font-size: 11px; line-height: 1.65; }
.module-category { padding: 3px 7px; border: 1px solid #25434a; background: #0c252b; font-size: 8px; }

@media (max-width: 1050px) {
  .hero-grid { padding-inline: 36px; grid-template-columns: minmax(300px, .75fr) minmax(470px, 1.25fr); }
  .feature-row { gap: 38px; }
  .recommended-grid { grid-template-columns: repeat(2, 1fr); }
  .recommended-grid article:nth-child(2) { border-right: 0; }
  .recommended-grid article:nth-child(-n+2) { border-bottom: 1px solid #20363c; }
}

@media (max-width: 860px) {
  :root { --header-height: 78px; }
  .site-header { padding-top: 9px; }
  .header-inner { min-height: 58px; }
  .primary-nav { margin-left: auto; }
  .hero { padding-top: 20px; }
  .hero-grid { padding: 40px 32px 34px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; }
  .product-shot { max-width: none; }
  .quick-points-inner { grid-template-columns: repeat(5, minmax(128px, 1fr)); overflow-x: auto; }
  .quick-points-inner > div { min-height: 70px; border-top: 0; }
  .feature-row { padding: 32px; grid-template-columns: 1fr; }
  .safety-layout,
  .faq-layout { gap: 34px; grid-template-columns: 1fr; }
  .catalog-hero-window { align-items: start; padding: 38px; grid-template-columns: 1fr; }
  .catalog-status { min-width: 0; width: min(360px, 100%); }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 0; }
  .header-inner { padding-left: 11px; gap: 8px; border-radius: 19px; }
  .brand { padding-right: 0; }
  .brand strong { display: none; }
  .primary-nav { padding: 3px; }
  .primary-nav a { padding: 7px 9px; font-size: 10px; }
  .primary-nav a:nth-child(n+3) { display: block; }
  .primary-nav a:nth-child(4) { display: none; }
  .hero-window { border-radius: 23px; }
  .hero-window-bar { min-height: 38px; padding-inline: 15px; }
  .hero-window-bar span:last-child { display: none; }
  .hero-grid { padding: 31px 20px 23px; }
  .hero-brand-lockup { margin-bottom: 24px; }
  .hero h1 { font-size: 37px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .requirements { gap: 5px; }
  .launcher-material-frame { border-radius: 17px; }
  .quick-points { padding-bottom: 20px; }
  .quick-points-inner { padding: 5px; border-radius: 18px; }
  .section { padding: 62px 0; }
  .feature-row { padding: 25px 20px; border-radius: 17px; }
  .feature-copy h3 { font-size: 23px; }
  .steps { gap: 0; }
  .steps li,
  .steps li:first-child,
  .steps li:last-child { border: 0; border-bottom: 1px solid #253c42; border-radius: 0; }
  .steps li:last-child { border-bottom: 0; }
  .catalog-hero-window { padding: 28px 22px; border-radius: 22px; }
  .catalog-status { grid-template-columns: 1fr; }
  .catalog-status div { padding: 10px 14px; border-top: 1px solid #243b41; border-left: 0; }
  .catalog-status div:first-child { border-top: 0; }
  .recommended-grid,
  .module-grid { grid-template-columns: 1fr; }
  .recommended-grid article { border-right: 0; border-bottom: 1px solid #20363c; }
  .recommended-grid article:last-child { border-bottom: 0; }
  .catalog-tools { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .quick-points-inner > div,
  .demo-switch::after { transition: none !important; }
}

/* Discord member access */
.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(4, 13, 16, .3), rgba(4, 13, 16, .78)),
    url("client-background.png") center / cover fixed no-repeat,
    #061115;
}

.auth-stage {
  display: grid;
  min-height: 100vh;
  padding: 42px 24px;
  place-items: center;
}

.auth-window {
  overflow: hidden;
  width: min(100%, 600px);
  border: 1px solid rgba(82, 120, 129, .66);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(44, 174, 191, .1), transparent 30%),
    linear-gradient(150deg, rgba(8, 25, 30, .98), rgba(5, 15, 18, .98));
  box-shadow: 0 42px 110px rgba(0, 0, 0, .52), inset 0 1px rgba(255, 255, 255, .04);
}

.auth-window-bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #263d43;
  color: #6f858b;
  font-family: Consolas, "Segoe UI", sans-serif;
  font-size: 8px;
  letter-spacing: .1em;
}

.auth-window-bar span { display: inline-flex; align-items: center; gap: 8px; }
.auth-window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f2bf5e;
  box-shadow: 0 0 11px rgba(242, 191, 94, .55);
}

.auth-body { padding: 43px 47px 39px; }
.auth-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 35px; }
.auth-brand img { width: 48px; height: 48px; filter: drop-shadow(0 0 16px rgba(38, 191, 204, .18)); }
.auth-brand div { display: flex; line-height: 1.15; flex-direction: column; }
.auth-brand strong { font-size: 18px; font-weight: 620; }
.auth-brand span { margin-top: 5px; color: #70878d; font-family: Consolas, monospace; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }

.auth-body h1 { margin: 0; font-size: 38px; font-weight: 620; letter-spacing: -.045em; line-height: 1.2; }
.auth-lead { max-width: 455px; margin: 15px 0 0; color: #9eb1b6; font-size: 13px; line-height: 1.8; }

.auth-error {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(231, 103, 103, .38);
  border-radius: 13px;
  background: rgba(106, 31, 35, .18);
}
.auth-error strong { color: #ffd3d3; font-size: 12px; }
.auth-error p { margin: 3px 0 0; color: #caa9a9; font-size: 10px; line-height: 1.65; }

.auth-actions { display: flex; align-items: center; gap: 21px; margin-top: 27px; }
.auth-discord-button { min-width: 200px; }
.auth-invite-link { color: #a8bbc0; font-size: 11px; font-weight: 650; text-underline-offset: 4px; }
.auth-invite-link:hover { color: #fff; }

.auth-permissions {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid #263d43;
}
.auth-permissions div { display: grid; gap: 15px; padding: 13px 0; border-bottom: 1px solid #20353a; grid-template-columns: 105px 1fr; }
.auth-permissions dt { color: #71888e; font-size: 9px; }
.auth-permissions dd { margin: 0; color: #a4b6ba; font-size: 9px; line-height: 1.6; }

.auth-footer {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-top: 1px solid #263d43;
  color: #60777d;
  font-family: Consolas, monospace;
  font-size: 8px;
}

@media (max-width: 620px) {
  .auth-stage { padding: 18px 13px; }
  .auth-window { border-radius: 22px; }
  .auth-window-bar { padding-inline: 15px; }
  .auth-window-bar span:last-child { display: none; }
  .auth-body { padding: 31px 21px 28px; }
  .auth-brand { margin-bottom: 28px; }
  .auth-body h1 { font-size: 33px; }
  .auth-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .auth-discord-button { width: 100%; }
  .auth-invite-link { text-align: center; }
  .auth-permissions div { gap: 4px; grid-template-columns: 1fr; }
}
