:root {
  /* Brand Colors */
  --color-primary: #f5a623;
  --color-primary-hover: #ffbb47;
  --color-primary-active: #d98f14;
  --color-secondary: #8b5cf6;

  /* Accent (жёлтый) — одинаковый в обеих темах */
  --color-accent: #f5a623;
  --color-accent-soft: rgba(245, 166, 35, 0.1);
  --color-accent-border: rgba(245, 166, 35, 0.28);
  --color-accent-ink: #0a0a08;

  /* Backgrounds */
  --color-bg-base: #0a0a09;
  --color-bg-surface: #111110;
  --color-bg-elevated: #161513;
  --color-bg-overlay: rgba(0, 0, 0, 0.7);
  --color-bg-gradient-end: #050504;

  /* Borders */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.16);

  /* Text */
  --color-text-primary: #f5f4f1;
  --color-text-secondary: #a4a19a;
  /* WCAG AA >= 4.5:1 на bg-base/surface/elevated */
  --color-text-muted: #79766f;
  --color-text-inverse: #0a0a09;

  /* Translucent surfaces (header/panels/hover) — зависят от темы */
  --color-header-bg: rgba(10, 10, 9, 0.86);
  --color-panel-bg: rgba(10, 10, 9, 0.98);
  --color-surface-hover: rgba(255, 255, 255, 0.04);
  --color-grid-line: rgba(255, 255, 255, 0.05);

  /* Status */
  --color-status-active: #22c55e;
  --color-status-inactive: #f5a623;
  --color-status-blocked: #ef4444;
  --color-status-online: #22c55e;
  --color-status-offline: #6b6b6b;
  --color-status-warning: #f5a623;
  --color-status-error: #ef4444;
  --color-status-problem: #ef4444;
  --color-status-paused: #3b82f6;

  /* Focus rings */
  --color-focus-ring: rgba(245, 166, 35, 0.25);
  --color-focus-ring-error: rgba(239, 68, 68, 0.2);

  /* Chart */
  --color-chart-line: #f5a623;
  --color-chart-area: rgba(245, 166, 35, 0.18);
  --color-chart-grid: rgba(255, 255, 255, 0.07);

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Typography */
  --font-sans: 'Inter', ui-sans-serif,system-ui,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.6);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;

  /* Sidebar */
  --sidebar-width: 16rem;
  --sidebar-collapsed-width: 4rem;
  --header-height: 56px;
  --banner-height: 30px;

  --csstools-color-scheme--light:  ;

  color-scheme: dark;

  /* Layout */
  --container-wide: 1280px;
  --container-content: 1120px;
}

[data-theme='light'] {
  /* Backgrounds */
  --color-bg-base: #ffffff;
  --color-bg-surface: #ffffff;
  --color-bg-elevated: #f7f7f5;
  --color-bg-overlay: rgba(20, 20, 15, 0.4);
  --color-bg-gradient-end: #f1f1ee;

  /* Borders */
  --color-border: rgba(10, 10, 8, 0.09);
  --color-border-hover: rgba(10, 10, 8, 0.18);

  /* Text */
  --color-text-primary: #14140f;
  --color-text-secondary: #57564d;
  /* WCAG AA >= 4.5:1 на bg-base/surface/elevated */
  --color-text-muted: #7a7a6f;
  --color-text-inverse: #ffffff;

  /* Translucent surfaces */
  --color-header-bg: rgba(255, 255, 255, 0.86);
  --color-panel-bg: rgba(255, 255, 255, 0.98);
  --color-surface-hover: rgba(10, 10, 8, 0.035);
  --color-grid-line: rgba(10, 10, 8, 0.055);

  /* Chart */
  --color-chart-grid: rgba(10, 10, 8, 0.07);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 20, 15, 0.06);
  --shadow-md: 0 4px 10px rgba(20, 20, 15, 0.08);
  --shadow-lg: 0 16px 32px rgba(20, 20, 15, 0.1);

  --csstools-color-scheme--light: initial;

  color-scheme: light;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);

  transition:
    background-color 200ms ease, color 200ms ease;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

::-moz-selection {
  background: rgba(245, 166, 35, 0.28);
  color: #fff;
}

::selection {
  background: rgba(245, 166, 35, 0.28);
  color: #fff;
}
.Logo-module__logo--Inn8S {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.Logo-module__img--ESX6j {
  display: block;
  height: 30px;
  width: auto;
  flex: none;
}

.Logo-module__forLight--OrEHA {
  display: none;
}

.Logo-module__forDark--AfkxW {
  display: block;
}

html[data-theme='light'] .Logo-module__forLight--OrEHA {
  display: block;
}

html[data-theme='light'] .Logo-module__forDark--AfkxW {
  display: none;
}

.Footer-module__footer--MXtus {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-surface);
}

.Footer-module__container--acgyb {
  width: min(calc(100% - 48px), var(--container-content));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.Footer-module__columns--ymWkn {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  grid-gap: 54px;
  gap: 54px;
}

.Footer-module__logoLink--OEsFn {
  display: inline-flex;
  margin-bottom: 16px;
}

.Footer-module__brand--qlyhS p {
  max-width: 230px;

  color: var(--color-text-muted);

  font-size: 12px;
  line-height: 1.6;
}

.Footer-module__column--ZsODI {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Footer-module__column--ZsODI h3 {
  margin-bottom: 14px;

  color: var(--color-text-primary);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.Footer-module__column--ZsODI a {
  margin-bottom: 10px;

  color: var(--color-text-muted);

  font-size: 12px;
  line-height: 1.5;

  transition: color 160ms ease;
}

.Footer-module__column--ZsODI a:hover {
  color: var(--color-text-primary);
}

.Footer-module__divider--Ex_ZZ {
  height: 1px;
  margin-top: 40px;

  background: var(--color-border);
}

.Footer-module__meta--zwVYc {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 24px;

  color: var(--color-text-muted);

  font-size: 11px;
}

.Footer-module__status--EjpeS {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-family: var(--font-mono);
}

.Footer-module__statusDot--xpvlw {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-status-online);
}

@media (max-width: 760px) {
  .Footer-module__columns--ymWkn {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .Footer-module__container--acgyb {
    width: min(100% - 32px, 900px);
    padding: 48px 0 36px;
  }

  .Footer-module__columns--ymWkn {
    grid-template-columns: 1fr;
  }

  .Footer-module__meta--zwVYc {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

.Header-module__wrapper--Uwon2 {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.Header-module__announcement--cl39u {
  height: var(--banner-height);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: var(--color-accent);
  color: var(--color-accent-ink);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.Header-module__announcementDot--ChnNM {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-ink);
  flex: none;
}

.Header-module__announcementText--xVutx {
  opacity: 0.92;
}

.Header-module__announcementLink--ZoIkc {
  display: inline-flex;
  align-items: center;
  gap: 3px;

  -webkit-text-decoration: underline;

  text-decoration: underline;
  text-decoration-color: rgba(10, 10, 8, 0.4);
  text-underline-offset: 2px;
}

.Header-module__announcementLink--ZoIkc:hover {
  text-decoration-color: rgba(10, 10, 8, 0.8);
}

.Header-module__header--Qp5xk {
  position: relative;
  height: var(--header-height);

  background: var(--color-header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.Header-module__inner--zH2BG {
  width: min(calc(100% - 48px), var(--container-wide));
  height: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-gap: 24px;
  gap: 24px;
}

.Header-module__logoLink--xTStD {
  justify-self: start;
  display: inline-flex;
}

.Header-module__nav--Rcnm0 {
  justify-self: center;

  display: flex;
  align-items: center;
  gap: 26px;

  font-size: 13.5px;
  color: var(--color-text-secondary);
}

.Header-module__navLink--GaqC4,
.Header-module__navButton--Ca9Ed {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: inherit;
  font: inherit;
  transition: color 160ms ease;
}

.Header-module__navLink--GaqC4:hover,
.Header-module__navButton--Ca9Ed:hover {
  color: var(--color-text-primary);
}

.Header-module__navButtonActive--PjoJ8 {
  color: var(--color-text-primary);
  font-weight: 600;
}

.Header-module__chevronUp--RNxBl {
  transform: rotate(180deg);
  transition: transform 160ms ease;
}

.Header-module__actions--BalQ8 {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 8px;
}

.Header-module__iconButton--KDwDz {
  display: none;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 700;

  transition:
    color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.Header-module__iconButton--KDwDz:hover {
  color: var(--color-text-primary);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
}

.Header-module__dashboardButton--We9Ak {
  display: none;

  align-items: center;
  justify-content: center;

  height: 34px;
  padding: 0 16px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  transition:
    border-color 160ms ease, background-color 160ms ease;
}

.Header-module__dashboardButton--We9Ak:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
}

.Header-module__ctaButton--jHlwA {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 34px;
  padding: 0 16px;

  border-radius: 8px;

  background: var(--color-text-primary);
  color: var(--color-text-inverse);

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  transition:
    transform 160ms ease, opacity 160ms ease;
}

.Header-module__ctaButton--jHlwA:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.Header-module__menuButton--lZQAM {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  color: var(--color-text-primary);

  transition:
    border-color 160ms ease, color 160ms ease;
}

.Header-module__menuButton--lZQAM:hover {
  border-color: var(--color-border-hover);
}

.Header-module__menuButtonActive--Xvdtl {
  border-color: var(--color-accent-border);
  color: var(--color-accent);
}

/* Rich mega dropdown ("Возможности") */
.Header-module__megaPanel--tiU80 {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);

  width: min(calc(100% - 48px), var(--container-wide));

  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;

  background: var(--color-panel-bg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.Header-module__megaInner--gWkz8 {
  display: flex;
  align-items: stretch;
  gap: 36px;

  padding: 28px 32px;
}

.Header-module__megaColumns--yO2HG {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px 28px;
  gap: 8px 28px;
}

.Header-module__megaColumn--gPEbe {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.Header-module__megaColumnHeading--XZslf {
  margin-bottom: 8px;

  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.Header-module__megaItem--x_OcH {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 8px;
  margin: 0 -8px;
  border-radius: 8px;

  transition: background-color 140ms ease;
}

.Header-module__megaItem--x_OcH:hover {
  background: var(--color-surface-hover);
}

.Header-module__megaItemIcon--R_pCB {
  flex: none;
  margin-top: 1px;

  color: var(--color-text-secondary);
  transition: color 140ms ease;
}

.Header-module__megaItem--x_OcH:hover .Header-module__megaItemIcon--R_pCB {
  color: var(--color-accent);
}

.Header-module__megaItemTitle--HH2Yo {
  display: block;

  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 600;
}

.Header-module__megaItemDesc--zTGQi {
  display: block;
  margin-top: 2px;

  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.Header-module__featureCard--_REoK {
  width: 260px;
  flex: none;

  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-left: 28px;
  border-left: 1px solid var(--color-border);

  transition: opacity 160ms ease;
}

.Header-module__featureCard--_REoK:hover {
  opacity: 0.82;
}

.Header-module__featureCardEyebrow--ldvGK {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.Header-module__featureCardVisual--dwixl {
  position: relative;
  overflow: hidden;

  height: 104px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 45%),
    linear-gradient(135deg, #f5a623, #d9720f);
}

.Header-module__featureCardMark--yKGoV {
  position: relative;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.Header-module__featureCardMark--yKGoV::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);

  background: #f5a623;
}

.Header-module__featureCardTitle--O1Vkg {
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.Header-module__featureCardLink--HcUTB {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;

  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
}

/* Компактное содержимое той же широкой панели, что и у "Возможности" —
   для "Продукты", "Решения", "Ресурсы": одна колонка внутри общего .megaPanel,
   без второго прохода по позиционированию — панель всегда одна и та же. */
.Header-module__megaInnerCompact--gOtQ4 {
  padding: 24px 32px 28px;
}

.Header-module__megaInnerCompact--gOtQ4 .Header-module__megaColumn--gPEbe {
  max-width: 300px;
}

/* Mobile full menu (hamburger) */
.Header-module__mobilePanel--mzUmU {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  max-height: calc(100vh - var(--header-height) - var(--banner-height));
  overflow-y: auto;

  border-bottom: 1px solid var(--color-border);
  background: var(--color-panel-bg);
  backdrop-filter: blur(14px);
}

.Header-module__mobileList--ocfLh {
  width: min(calc(100% - 48px), var(--container-wide));
  margin: 0 auto;
  padding: 12px 0 8px;
}

.Header-module__mobileItem--bJAFT {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.Header-module__mobileItemTitle--OVk0c {
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
}

.Header-module__mobileItemDesc--fsSwU {
  color: var(--color-text-muted);
  font-size: 12px;
}

.Header-module__mobileUtilityRow--SR4x8 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  width: min(calc(100% - 48px), var(--container-wide));
  margin: 4px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.Header-module__mobileUtilityButton--NRL_h {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 34px;
  padding: 0 14px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 600;

  transition:
    color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.Header-module__mobileUtilityButton--NRL_h:hover {
  color: var(--color-text-primary);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
}

.Header-module__mobileFooterLink--pIEgN {
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(calc(100% - 48px), var(--container-wide));
  height: 44px;
  margin: 16px auto 20px;

  border-radius: 8px;
  background: var(--color-accent);

  color: var(--color-accent-ink);
  font-size: 13px;
  font-weight: 600;

  transition:
    opacity 160ms ease, transform 160ms ease;
}

.Header-module__mobileFooterLink--pIEgN:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .Header-module__iconButton--KDwDz,
  .Header-module__dashboardButton--We9Ak {
    display: inline-flex;
  }

  .Header-module__menuButton--lZQAM {
    display: none;
  }
}

@media (max-width: 900px) {
  .Header-module__nav--Rcnm0 {
    display: none;
  }
}

@media (max-width: 700px) {
  .Header-module__inner--zH2BG {
    width: min(100% - 32px, 960px);
  }

  .Header-module__ctaButton--jHlwA {
    padding: 0 12px;
    font-size: 12px;
  }

  .Header-module__megaInner--gWkz8 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .Header-module__featureCard--_REoK {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }

  .Header-module__simpleInner--vd9J_ {
    width: 100%;
  }
}

.Cta-module__cta--lfGo5 {
  padding: 64px 0 96px;
  background: var(--color-bg-base);
}

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

.Cta-module__eyebrow--XL9Jo {
  display: block;
  margin-bottom: 18px;

  color: var(--color-accent);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.Cta-module__grid--LyLHz {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  grid-gap: 32px;
  gap: 32px;
}

.Cta-module__grid--LyLHz h2 {
  color: var(--color-text-primary);

  font-size: max(30px, min(4.4vw, 44px));
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.Cta-module__accent--JzPWx {
  color: var(--color-accent);
}

.Cta-module__side--Eq0f_ p {
  max-width: 380px;

  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.Cta-module__side--Eq0f_ p + p {
  margin-top: 12px;
}

.Cta-module__form--qADxy {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.Cta-module__input--IEmYi {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 16px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  background: var(--color-bg-surface);
  color: var(--color-text-primary);

  font-size: 13px;

  transition: border-color 160ms ease;
}

.Cta-module__input--IEmYi::-moz-placeholder {
  color: var(--color-text-muted);
}

.Cta-module__input--IEmYi::placeholder {
  color: var(--color-text-muted);
}

.Cta-module__input--IEmYi:focus-visible {
  border-color: var(--color-accent-border);
  outline: none;
}

.Cta-module__submit--xZ15b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: none;

  height: 44px;
  padding: 0 18px;

  border-radius: 8px;

  background: var(--color-accent);
  color: var(--color-accent-ink);

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  transition:
    transform 160ms ease, background-color 160ms ease;
}

.Cta-module__submit--xZ15b:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.Cta-module__success--V_829 {
  margin-top: 20px;
  padding: 12px 14px;

  border: 1px solid var(--color-accent-border);
  border-radius: 8px;

  background: var(--color-accent-soft);
  color: var(--color-text-primary);

  font-size: 13px;
}

@media (max-width: 900px) {
  .Cta-module__grid--LyLHz {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .Cta-module__cta--lfGo5 {
    padding: 48px 0 80px;
  }

  .Cta-module__form--qADxy {
    flex-direction: column;
  }
}

.DashboardPreview-module__frame--JNWZy {
  position: relative;
  z-index: 2;
  overflow: hidden;

  width: 100%;
  max-width: 1020px;
  margin: 52px auto 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;

  background: var(--color-bg-elevated);
  text-align: left;
  box-shadow: var(--shadow-lg);

  opacity: 0;
  transform: translateY(24px);
  animation: DashboardPreview-module__dashboardIn--b5qUt 760ms cubic-bezier(0.16, 1, 0.3, 1) 420ms forwards;
}

@keyframes DashboardPreview-module__dashboardIn--b5qUt {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.DashboardPreview-module__frameBar--JAvyf {
  display: flex;
  align-items: center;
  gap: 12px;

  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--color-border);

  background: var(--color-bg-surface);
}

.DashboardPreview-module__frameDots--sh2yd {
  display: flex;
  gap: 5px;
}

.DashboardPreview-module__frameDots--sh2yd span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.DashboardPreview-module__frameDotRed--QI61T {
  background: #ef4444;
}

.DashboardPreview-module__frameDotAmber--TUyTm {
  background: #f5a623;
}

.DashboardPreview-module__frameDotGreen--X2DuY {
  background: #22c55e;
}

.DashboardPreview-module__frameUrl--dL2lT {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.DashboardPreview-module__body--IUsQ3 {
  display: flex;
  align-items: stretch;
}

.DashboardPreview-module__sidebar--K9FtO {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  width: 42px;
  padding: 14px 0;
  border-right: 1px solid var(--color-border);

  background: var(--color-bg-surface);
}

.DashboardPreview-module__sidebarIcon--BRXQ_ {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  border: 1px solid transparent;
  border-radius: 7px;

  color: var(--color-text-muted);
}

.DashboardPreview-module__sidebarIconActive--nD3iw {
  border-color: var(--color-accent-border);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.DashboardPreview-module__main--hFuCm {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;

  padding: 16px 18px 18px;
}

.DashboardPreview-module__mainHeader--L4cyt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.DashboardPreview-module__mainTitle--I1XJk {
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.DashboardPreview-module__mainSubtitle--_oiEu {
  margin-top: 2px;

  color: var(--color-text-muted);
  font-size: 11px;
}

.DashboardPreview-module__orgPill--j013i {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 4px;

  padding: 5px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;

  background: var(--color-bg-surface);

  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;
}

.DashboardPreview-module__statGrid--eQtbS {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.DashboardPreview-module__statTile--wRtM4 {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;

  background: var(--color-bg-surface);

  transition:
    border-color 200ms ease, background-color 200ms ease;
}

.DashboardPreview-module__statTileAccent--dgNJL {
  border-color: var(--color-accent-border);
  background: var(--color-accent-soft);
}

.DashboardPreview-module__statLabel--LLOip {
  color: var(--color-text-muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.DashboardPreview-module__statValue--VdxcH {
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.DashboardPreview-module__statValue--VdxcH small {
  margin-left: 2px;

  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 500;
}

.DashboardPreview-module__statNote--vsdVk {
  color: var(--color-text-muted);
  font-size: 9.5px;
}

.DashboardPreview-module__statDelta--lcYxd {
  color: var(--color-status-online);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
}

.DashboardPreview-module__statNoteOnline--Smvfb {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: var(--color-status-online);
  font-size: 9.5px;
  font-weight: 600;
}

.DashboardPreview-module__statDot--EYcJv {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-status-online);
}

.DashboardPreview-module__panelHeader--WwjFD {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 8px;

  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 700;
}

.DashboardPreview-module__panelBadge--RDQMs {
  padding: 1px 6px;
  border-radius: 999px;

  background: var(--color-surface-hover);

  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
}

.DashboardPreview-module__eventsPanel--XnfYG,
.DashboardPreview-module__chartPanel--k1bdl {
  padding: 12px 14px 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;

  background: var(--color-bg-surface);
}

.DashboardPreview-module__eventRow--lDtTn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 5px 0;
  border-top: 1px solid var(--color-border);
}

.DashboardPreview-module__eventRow--lDtTn:first-of-type {
  border-top: none;
}

.DashboardPreview-module__eventDot--EeCy0 {
  flex: none;

  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.DashboardPreview-module__eventDotInfo--d6W1k {
  background: var(--color-status-paused);
}

.DashboardPreview-module__eventDotError--HAhWx {
  background: var(--color-status-error);
}

.DashboardPreview-module__eventDotWarning--xfCxE {
  background: var(--color-status-warning);
}

.DashboardPreview-module__eventDotSuccess--WTlWx {
  background: var(--color-status-online);
}

.DashboardPreview-module__eventTime--dEsOh {
  flex: none;

  width: 34px;

  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.DashboardPreview-module__eventText--Pq03G {
  overflow: hidden;

  color: var(--color-text-secondary);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.DashboardPreview-module__containerGrid--xtCvE {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.DashboardPreview-module__containerCard--H2YR3 {
  display: flex;
  flex-direction: column;
  gap: 8px;

  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;

  background: var(--color-bg-surface);
}

.DashboardPreview-module__containerHeader--zi6fY {
  display: flex;
  align-items: center;
  gap: 6px;
}

.DashboardPreview-module__containerDot--w0EVo {
  flex: none;

  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.DashboardPreview-module__containerName--x4gGJ {
  flex: 1;
  overflow: hidden;

  color: var(--color-text-primary);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.DashboardPreview-module__containerHashrate--diFBL {
  flex: none;

  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 10px;
}

.DashboardPreview-module__containerStats--t26_9 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.DashboardPreview-module__containerStat--YvagF {
  padding: 2px 6px;
  border-radius: 6px;

  background: var(--color-surface-hover);

  font-size: 9.5px;
  font-weight: 600;
  text-transform: lowercase;
}

.DashboardPreview-module__toneOnline--r8sIB {
  color: var(--color-status-online);
}

.DashboardPreview-module__toneWarning--scQfE {
  color: var(--color-status-warning);
}

.DashboardPreview-module__toneError--LbmXy {
  color: var(--color-status-error);
}

.DashboardPreview-module__containerDot--w0EVo.DashboardPreview-module__toneOnline--r8sIB {
  background: var(--color-status-online);
}

.DashboardPreview-module__containerDot--w0EVo.DashboardPreview-module__toneWarning--scQfE {
  background: var(--color-status-warning);
}

.DashboardPreview-module__containerDot--w0EVo.DashboardPreview-module__toneError--LbmXy {
  background: var(--color-status-error);
}

.DashboardPreview-module__powerBar--d6T5H {
  overflow: hidden;

  height: 4px;
  margin-top: 2px;
  border-radius: 999px;

  background: var(--color-surface-hover);
}

.DashboardPreview-module__powerBarFill--n38le {
  height: 100%;
  border-radius: inherit;

  background: var(--color-accent);

  transition: width 500ms ease;
}

.DashboardPreview-module__powerLabel--J1aOL {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9.5px;
}

.DashboardPreview-module__chartValue--cmv11 {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.DashboardPreview-module__chartSvg--FSonv {
  display: block;
  width: 100%;
  height: 84px;
}

.DashboardPreview-module__chartBase--ciXmz {
  fill: none;
  stroke: var(--color-accent-border);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.DashboardPreview-module__chartComet--C9JOO {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90 500;
  filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.6));

  animation: DashboardPreview-module__chartTravel--vuUT3 4.2s linear infinite;
}

@keyframes DashboardPreview-module__chartTravel--vuUT3 {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -590;
  }
}

.DashboardPreview-module__chartLegend--RRyzU {
  display: flex;
  gap: 14px;

  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.DashboardPreview-module__legendItem--fMM1i {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: var(--color-text-muted);
  font-size: 9.5px;
  font-weight: 600;
}

.DashboardPreview-module__legendDot--UAVN3 {
  flex: none;

  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .DashboardPreview-module__sidebar--K9FtO {
    display: none;
  }

  .DashboardPreview-module__statGrid--eQtbS {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .DashboardPreview-module__frame--JNWZy {
    display: none;
  }
}

@media (max-width: 620px) {
  .DashboardPreview-module__containerGrid--xtCvE {
    grid-template-columns: 1fr;
  }
}

.Hero-module__hero--Uh5C8 {
  position: relative;
  overflow: hidden;

  background: var(--color-bg-base);
}

.Hero-module__grid--uRmC2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;

  background-image:
    linear-gradient(to right, var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--color-grid-line) 1px, transparent 1px);
  background-size: 64px 64px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent 85%
  );

          mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent 85%
  );
}

.Hero-module__glow--CLZhk {
  position: absolute;
  z-index: 0;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);

  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.16),
    rgba(245, 166, 35, 0.05) 40%,
    transparent 70%
  );
}

.Hero-module__content--ThwXL {
  position: relative;
  z-index: 1;

  width: min(calc(100% - 48px), var(--container-wide));
  margin: 0 auto;
  padding: 96px 0 64px;

  text-align: center;
}

.Hero-module__content--ThwXL h1 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;

  font-size: max(36px, min(6.4vw, 76px));
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--color-text-primary);
}

.Hero-module__headlineLine--G87PC {
  display: inline-block;

  opacity: 0;
  transform: translateY(22px);
  animation: Hero-module__heroFadeUp--jdeuw 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.Hero-module__headlineLineDelay--Ir2AP {
  animation-delay: 90ms;
}

.Hero-module__accent--PfAow {
  display: inline-block;

  background-image: linear-gradient(
    100deg,
    #f5a623 0%,
    #ffd88a 22%,
    #f5a623 44%,
    #d9720f 66%,
    #f5a623 88%
  );
  background-size: 250% auto;
  background-position: 0% center;
  background-repeat: repeat;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  will-change: background-position;
  animation: Hero-module__heroShimmer--Z1gaW 6s linear 1.1s infinite;
}

@keyframes Hero-module__heroFadeUp--jdeuw {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Hero-module__heroShimmer--Z1gaW {
  to {
    background-position: -250% center;
  }
}

.Hero-module__description--fpD0W {
  max-width: 720px;
  margin: 24px auto 0;

  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(16px);
  animation: Hero-module__heroFadeUp--jdeuw 700ms cubic-bezier(0.16, 1, 0.3, 1) 260ms forwards;
}

.Hero-module__actions--MkkRy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 30px;

  opacity: 0;
  transform: translateY(16px);
  animation: Hero-module__heroFadeUp--jdeuw 700ms cubic-bezier(0.16, 1, 0.3, 1) 380ms forwards;
}

.Hero-module__primaryButton--1mGVm,
.Hero-module__secondaryButton--pyceF {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;

  min-height: 42px;
  padding: 10px 22px;

  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;

  transition:
    transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.Hero-module__primaryButton--1mGVm {
  background: var(--color-accent);
  color: var(--color-accent-ink);

  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.18);
}

.Hero-module__primaryButton--1mGVm:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.Hero-module__secondaryButton--pyceF {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-primary);
}

.Hero-module__secondaryButton--pyceF:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  transform: translateY(-2px);
}

.Hero-module__stickyBar--x8fhR {
  position: sticky;
  top: calc(var(--header-height) + var(--banner-height));
  z-index: var(--z-dropdown);
}

.Hero-module__tickerBar--zQ88r {
  overflow: hidden;

  height: 38px;

  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-surface);
}

.Hero-module__tickerTrack--hRWQB {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 100%;

  animation: Hero-module__marquee--wG_1s 32s linear infinite;
}

@keyframes Hero-module__marquee--wG_1s {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.Hero-module__tickerItem--Ahj1_ {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 0 26px;

  border-right: 1px solid var(--color-border);

  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
}

.Hero-module__tickerLabel--Ibhbx {
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.Hero-module__tickerValue--Ju55C {
  color: var(--color-text-primary);
  font-weight: 600;
}

.Hero-module__tickerAccent--F2ks9 {
  color: var(--color-accent);
}

.Hero-module__tickerLive--XhIIy {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-status-online);
  animation: Hero-module__blink--yHKzp 1.6s ease-in-out infinite;
}

@keyframes Hero-module__blink--yHKzp {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@media (max-width: 760px) {
  .Hero-module__content--ThwXL {
    padding: 64px 0 44px;
  }

  .Hero-module__content--ThwXL h1 {
    white-space: normal;
    font-size: max(30px, min(8vw, 44px));
  }

  .Hero-module__actions--MkkRy {
    flex-direction: column;
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .Hero-module__primaryButton--1mGVm,
  .Hero-module__secondaryButton--pyceF {
    width: 100%;
    white-space: normal;
  }
}

.FeatureCard-module__card--TSo5h {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  padding: 28px 30px 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at 84% 90%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1.4px
    ),
    linear-gradient(160deg, #17140f 0%, #0a0908 60%, #060605 100%);
  background-size:
    16px 16px,
    100% 100%;

  box-shadow: var(--shadow-lg);

  transition:
    background-color 200ms ease, border-color 200ms ease;
}

.FeatureCard-module__title--jEQTE {
  color: #f5f4f1;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;

  transition: color 200ms ease;
}

.FeatureCard-module__description--IuhsH {
  max-width: 420px;
  margin-top: 10px;

  color: #a4a19a;
  font-size: 13px;
  line-height: 1.6;

  transition: color 200ms ease;
}

html[data-theme='light'] .FeatureCard-module__card--TSo5h {
  border-color: rgba(10, 10, 8, 0.09);

  background:
    radial-gradient(
      circle at 84% 90%,
      rgba(10, 10, 8, 0.05) 1px,
      transparent 1.4px
    ),
    linear-gradient(160deg, #fdfcfa 0%, #f6f5f1 60%, #f0efe9 100%);
  background-size:
    16px 16px,
    100% 100%;
}

html[data-theme='light'] .FeatureCard-module__title--jEQTE {
  color: #14140f;
}

html[data-theme='light'] .FeatureCard-module__description--IuhsH {
  color: #57564d;
}

.FeatureCard-module__stage--nCOYj {
  position: relative;

  display: flex;
  align-items: center;

  flex: 1;
  min-height: 130px;
  margin-top: 24px;
}

.Signal-module__section--sfKZ0 {
  padding: 96px 0;
  background: var(--color-bg-base);
}

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

.Signal-module__header--gY9Kr {
  max-width: 700px;
  margin: 0 auto;

  text-align: center;
}

.Signal-module__eyebrow--iUJJu {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 6px 16px;

  border: 1px solid var(--color-border);
  border-radius: 999px;

  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.Signal-module__header--gY9Kr h2 {
  color: var(--color-text-primary);

  font-size: max(30px, min(4.2vw, 42px));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.Signal-module__accent--y9ppt {
  color: var(--color-accent);
}

.Signal-module__header--gY9Kr p {
  max-width: 620px;
  margin: 20px auto 0;

  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.Signal-module__grid--MPPfk {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  gap: 20px;

  margin-top: 56px;
}

@media (max-width: 760px) {
  .Signal-module__section--sfKZ0 {
    padding: 72px 0;
  }

  .Signal-module__grid--MPPfk {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.AutomationVisual-module__stage--_K_Mi {
  position: relative;

  width: 100%;
  min-height: 130px;
}

.AutomationVisual-module__lines--cNElg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;
  overflow: visible;

  pointer-events: none;
}

.AutomationVisual-module__lineBase--kHTBk {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.AutomationVisual-module__lineFlow--Nc_eG {
  stroke: #f5a623;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 5 13;
  filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.65));

  animation: AutomationVisual-module__dashFlow--JpD5p 1.4s linear infinite;
}

html[data-theme='light'] .AutomationVisual-module__lineBase--kHTBk {
  stroke: rgba(10, 10, 8, 0.16);
}

@keyframes AutomationVisual-module__dashFlow--JpD5p {
  to {
    stroke-dashoffset: -36;
  }
}

.AutomationVisual-module__node--eug7O {
  position: absolute;
  z-index: 1;

  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.05);

  color: #c9c6bd;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;

  transition:
    border-color 300ms ease, background-color 300ms ease, color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.AutomationVisual-module__decision--Ls2Z9 {
  background: rgba(255, 255, 255, 0.08);
}

.AutomationVisual-module__nodeActive--L3YRd {
  border-color: rgba(245, 166, 35, 0.55);
  background: rgba(245, 166, 35, 0.16);

  color: #ffd88a;
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.35);
  transform: translateY(-2px);
}

html[data-theme='light'] .AutomationVisual-module__node--eug7O {
  border-color: rgba(10, 10, 8, 0.12);
  background: rgba(10, 10, 8, 0.045);

  color: #45443c;
}

html[data-theme='light'] .AutomationVisual-module__decision--Ls2Z9 {
  background: rgba(10, 10, 8, 0.07);
}

html[data-theme='light'] .AutomationVisual-module__nodeActive--L3YRd {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.14);

  color: #8a5a08;
}

@media (max-width: 560px) {
  .AutomationVisual-module__node--eug7O {
    padding: 7px 12px;
    font-size: 10.5px;
  }
}

.BulkActionsVisual-module__stage--H5iZB {
  width: 100%;
}

.BulkActionsVisual-module__panel--_kTyN {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.015);
}

.BulkActionsVisual-module__toolbar--sqjHV {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: rgba(255, 255, 255, 0.02);
}

.BulkActionsVisual-module__toolbarLink--JsN0e {
  color: #918e85;
  font-size: 10.5px;
  font-weight: 600;
}

.BulkActionsVisual-module__toolbarCount--ANIxe {
  color: #d8d5cd;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
}

.BulkActionsVisual-module__row--zWHFy {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 7px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);

  transition: background-color 250ms ease;
}

.BulkActionsVisual-module__row--zWHFy:last-child {
  border-bottom: none;
}

.BulkActionsVisual-module__rowActive--JAUpT {
  background: rgba(255, 255, 255, 0.035);
}

.BulkActionsVisual-module__checkbox--OFcIk {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;

  width: 14px;
  height: 14px;
  border: 1.4px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;

  color: #04121b;
  background: transparent;
}

.BulkActionsVisual-module__checkboxChecked--YGTTC {
  border-color: #0ea5e9;
  background: #0ea5e9;
}

.BulkActionsVisual-module__statusPill--EBQtc {
  flex: none;

  padding: 2px 7px;
  border-radius: 5px;

  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.BulkActionsVisual-module__statusOnline--XXxMT {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

.BulkActionsVisual-module__statusProblem--B1Tve {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.15);
}

.BulkActionsVisual-module__statusWarning--r0Vi2 {
  color: #fcd34d;
  background: rgba(245, 166, 35, 0.18);
}

.BulkActionsVisual-module__model--J737P {
  overflow: hidden;
  flex: 1;
  min-width: 0;

  color: #c9c6bd;

  font-size: 10.5px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.BulkActionsVisual-module__ip--xrvWl {
  flex: none;

  color: #6b6862;
  font-family: var(--font-mono);
  font-size: 9px;
}

@media (max-width: 560px) {
  .BulkActionsVisual-module__ip--xrvWl {
    display: none;
  }
}

html[data-theme='light'] .BulkActionsVisual-module__panel--_kTyN {
  border-color: rgba(10, 10, 8, 0.1);
  background: rgba(10, 10, 8, 0.02);
}

html[data-theme='light'] .BulkActionsVisual-module__toolbar--sqjHV {
  border-bottom-color: rgba(10, 10, 8, 0.09);
  background: rgba(10, 10, 8, 0.025);
}

html[data-theme='light'] .BulkActionsVisual-module__toolbarLink--JsN0e {
  color: #7a776e;
}

html[data-theme='light'] .BulkActionsVisual-module__toolbarCount--ANIxe {
  color: #26251f;
}

html[data-theme='light'] .BulkActionsVisual-module__row--zWHFy {
  border-bottom-color: rgba(10, 10, 8, 0.07);
}

html[data-theme='light'] .BulkActionsVisual-module__rowActive--JAUpT {
  background: rgba(10, 10, 8, 0.035);
}

html[data-theme='light'] .BulkActionsVisual-module__checkbox--OFcIk {
  border-color: rgba(10, 10, 8, 0.24);
}

html[data-theme='light'] .BulkActionsVisual-module__model--J737P {
  color: #34332c;
}

html[data-theme='light'] .BulkActionsVisual-module__ip--xrvWl {
  color: #918e85;
}

.HeatmapVisual-module__stage--QH4xF {
  width: 100%;
}

.HeatmapVisual-module__panel--p8Uey {
  width: 100%;
  padding: 12px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.015);
}

.HeatmapVisual-module__headerRow--O9pbY {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.HeatmapVisual-module__headerLabel--P_UtN {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #918e85;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.HeatmapVisual-module__liveDot--PlgHA {
  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.85);

  animation: HeatmapVisual-module__pulseDot--ebaMB 1.8s ease-in-out infinite;
}

.HeatmapVisual-module__count--bBzAv {
  color: #d8d5cd;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.HeatmapVisual-module__grid--DnAIL {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.HeatmapVisual-module__cell--lPA_p {
  aspect-ratio: 1 / 1;
  border-radius: 3px;

  background: rgba(255, 255, 255, 0.045);

  transition: background-color 550ms ease;
}

@keyframes HeatmapVisual-module__pulseDot--ebaMB {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 560px) {
  .HeatmapVisual-module__panel--p8Uey {
    padding: 10px 11px 11px;
  }
}

html[data-theme='light'] .HeatmapVisual-module__panel--p8Uey {
  border-color: rgba(10, 10, 8, 0.1);
  background: rgba(10, 10, 8, 0.02);
}

html[data-theme='light'] .HeatmapVisual-module__headerLabel--P_UtN {
  color: #7a776e;
}

html[data-theme='light'] .HeatmapVisual-module__count--bBzAv {
  color: #26251f;
}

html[data-theme='light'] .HeatmapVisual-module__cell--lPA_p {
  background: rgba(10, 10, 8, 0.06);
}

.InventoryVisual-module__stage--nxX2Z {
  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;
}

.InventoryVisual-module__image--HLskB {
  width: 78px;
  height: auto;
  flex: none;

  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.InventoryVisual-module__statusPill--j6Lu1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;

  padding: 16px 18px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border: 1px solid var(--pill-border, rgba(34, 197, 94, 0.35));
  border-radius: 12px;

  background: rgba(34, 197, 94, 0.12);

  background: var(--pill-bg, rgba(34, 197, 94, 0.12));

  color: #4ade80;

  color: var(--pill-color, #4ade80);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;

  transition:
    background-color 400ms ease, border-color 400ms ease, color 400ms ease;
}

.InventoryVisual-module__statusDot--emR4c {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;

  background: currentColor;
  box-shadow: 0 0 10px currentColor;

  animation: InventoryVisual-module__pulseDot--YG2K6 1.6s ease-in-out infinite;
}

.InventoryVisual-module__statusStable--MeBVJ {
  --pill-bg: rgba(34, 197, 94, 0.12);
  --pill-border: rgba(34, 197, 94, 0.35);
  --pill-color: #4ade80;
}

.InventoryVisual-module__statusOffline--ebh_Q {
  --pill-bg: rgba(100, 116, 139, 0.16);
  --pill-border: rgba(100, 116, 139, 0.4);
  --pill-color: #94a3b8;
}

.InventoryVisual-module__statusAttention--R4M8d {
  --pill-bg: rgba(245, 166, 35, 0.14);
  --pill-border: rgba(245, 166, 35, 0.4);
  --pill-color: #f5a623;
}

.InventoryVisual-module__statusCritical--vqbSg {
  --pill-bg: rgba(239, 68, 68, 0.14);
  --pill-border: rgba(239, 68, 68, 0.42);
  --pill-color: #f87171;
}

@keyframes InventoryVisual-module__pulseDot--YG2K6 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 560px) {
  .InventoryVisual-module__stage--nxX2Z {
    gap: 12px;
  }

  .InventoryVisual-module__image--HLskB {
    width: 62px;
  }

  .InventoryVisual-module__statusPill--j6Lu1 {
    padding: 12px 14px;
    font-size: 12.5px;
  }
}

.MonitorVisual-module__stage--o2A7n {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;

  width: 100%;
}

.MonitorVisual-module__minerWrap--eylX6 {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;

  --gauge-color: #22c55e;
  --gauge-glow: rgba(34, 197, 94, 0.4);
}

.MonitorVisual-module__levelWarning--F6VvK {
  --gauge-color: #f5a623;
  --gauge-glow: rgba(245, 166, 35, 0.42);
}

.MonitorVisual-module__levelCritical--HAnOt {
  --gauge-color: #ef4444;
  --gauge-glow: rgba(239, 68, 68, 0.48);
}

.MonitorVisual-module__tag--pASc6 {
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);

  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;

  background: #0c0b09;
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #6b685f;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.MonitorVisual-module__glow--a3Zp4 {
  position: absolute;
  top: 10px;
  right: 4px;
  bottom: 10px;
  left: 4px;
  z-index: 0;

  border-radius: 50%;
  filter: blur(16px);
  background: var(--gauge-glow);
  opacity: 0.55;

  transition: background-color 500ms ease;
  animation: MonitorVisual-module__glowPulse--PZXOE 2.6s ease-in-out infinite;
}

.MonitorVisual-module__minerImage--QbBEg {
  position: relative;
  z-index: 1;

  width: 76px;
  height: auto;

  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
}

.MonitorVisual-module__readout--CjeWi {
  position: relative;
  z-index: 2;
  margin-top: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 38px;
  height: 20px;
  padding: 0 7px;
  border: 1.5px solid var(--gauge-color);
  border-radius: 6px;

  background: #050403;
  box-shadow: 0 0 12px var(--gauge-glow);

  transition:
    border-color 500ms ease, box-shadow 500ms ease;
}

.MonitorVisual-module__readoutValue--BoXc5 {
  color: var(--gauge-color);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 8px var(--gauge-glow);

  transition: color 500ms ease;
}

.MonitorVisual-module__warning--ZnPd7 {
  position: absolute;
  z-index: 3;
  top: -2px;
  right: -6px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.4);

  color: #ef4444;
  background: rgba(239, 68, 68, 0.16);

  opacity: 0;
  transform: scale(0.7);

  transition:
    opacity 400ms ease, transform 400ms ease;
}

.MonitorVisual-module__warningVisible--Pc3sp {
  opacity: 1;
  transform: scale(1);
}

@keyframes MonitorVisual-module__glowPulse--PZXOE {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

@media (max-width: 560px) {
  .MonitorVisual-module__stage--o2A7n {
    gap: 16px;
  }

  .MonitorVisual-module__minerImage--QbBEg {
    width: 66px;
  }
}

.PowerVisual-module__stage--nVFvB {
  display: flex;
  align-items: center;
  gap: 24px;

  width: 100%;
}

.PowerVisual-module__deviceWrap--DDmXg {
  position: relative;
  flex: none;
}

.PowerVisual-module__deviceImage--RiDbM {
  position: relative;

  width: 76px;
  height: auto;

  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
}

.PowerVisual-module__badge--lYOzj {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;

  padding: 5px 9px;
  border-radius: 7px;

  background: #16140f;
  border: 1px solid rgba(245, 166, 35, 0.35);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.25);

  color: #ffd88a;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;

  animation: PowerVisual-module__badgePulse--hVSkX 2.6s ease-in-out infinite;
}

.PowerVisual-module__chart--qcvQq {
  flex: 1;
  min-width: 0;
  height: 90px;
}

.PowerVisual-module__chartBase--lOcvu {
  fill: none;
  stroke: rgba(245, 166, 35, 0.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.PowerVisual-module__chartComet--WdLq7 {
  fill: none;
  stroke: #f5a623;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50 280;
  filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.75));

  animation: PowerVisual-module__travel--ltSkI 3.6s linear infinite;
}

@keyframes PowerVisual-module__travel--ltSkI {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -330;
  }
}

@keyframes PowerVisual-module__badgePulse--hVSkX {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(245, 166, 35, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
  }
}

.Steps-module__section--Y_Wo2 {
  padding: 96px 0;
  border-top: 1px solid var(--color-border);

  background: var(--color-bg-surface);
}

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

.Steps-module__heading--jN_0c {
  margin-bottom: 48px;

  color: var(--color-text-primary);
  font-size: max(28px, min(3.6vw, 38px));
  font-weight: 800;
  letter-spacing: -0.02em;
}

.Steps-module__grid--TWUJR {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  gap: 20px;
}

.Steps-module__card--a_GNs {
  padding: 32px 32px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at 84% 90%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1.4px
    ),
    linear-gradient(160deg, #17140f 0%, #0a0908 60%, #060605 100%);
  background-size:
    16px 16px,
    100% 100%;

  box-shadow: var(--shadow-lg);

  transition:
    background-color 200ms ease, border-color 200ms ease;
}

.Steps-module__number--M2B8Q {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 8px;

  background: #f5f4f1;

  color: #0a0a09;
  font-size: 15px;
  font-weight: 800;

  transition: background-color 200ms ease;
}

.Steps-module__title--nAXlg {
  margin-bottom: 10px;

  color: #f5f4f1;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;

  transition: color 200ms ease;
}

.Steps-module__description--EEjZR {
  color: #a4a19a;
  font-size: 13px;
  line-height: 1.7;

  transition: color 200ms ease;
}

.Steps-module__description--EEjZR + .Steps-module__description--EEjZR {
  margin-top: 10px;
}

html[data-theme='light'] .Steps-module__card--a_GNs {
  border-color: rgba(10, 10, 8, 0.09);

  background:
    radial-gradient(
      circle at 84% 90%,
      rgba(10, 10, 8, 0.05) 1px,
      transparent 1.4px
    ),
    linear-gradient(160deg, #fdfcfa 0%, #f6f5f1 60%, #f0efe9 100%);
  background-size:
    16px 16px,
    100% 100%;
}

html[data-theme='light'] .Steps-module__number--M2B8Q {
  background: #14140f;
  color: #ffffff;
}

html[data-theme='light'] .Steps-module__title--nAXlg {
  color: #14140f;
}

html[data-theme='light'] .Steps-module__description--EEjZR {
  color: #57564d;
}

@media (max-width: 760px) {
  .Steps-module__section--Y_Wo2 {
    padding: 72px 0;
  }

  .Steps-module__heading--jN_0c {
    margin-bottom: 32px;
  }

  .Steps-module__grid--TWUJR {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .Steps-module__card--a_GNs {
    padding: 26px 24px 28px;
  }
}

.LegalPage-module__page--TuXxy {
  min-height: calc(100vh - 54px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(245, 166, 35, 0.12),
      transparent 42%
    ),
    var(--color-bg-base);
}

.LegalPage-module__inner--_WAdM {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  padding: 48px 0 96px;
}

.LegalPage-module__switcher--CIL0S {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.LegalPage-module__switcher--CIL0S a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;

  border: 1px solid var(--color-border);
  border-radius: 8px;

  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;

  transition:
    color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.LegalPage-module__switcher--CIL0S a:hover {
  color: var(--color-text-primary);
  border-color: var(--color-border-hover);
}

.LegalPage-module__switcher--CIL0S a[aria-current='page'] {
  border-color: var(--color-accent-border);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.LegalPage-module__eyebrow--blrOT {
  display: block;
  margin-bottom: 12px;

  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.LegalPage-module__title--Ek6PX {
  color: var(--color-text-primary);
  font-size: max(28px, min(4vw, 36px));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.LegalPage-module__updated--ZUNpC {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.LegalPage-module__article--GMnhI {
  margin-top: 36px;
}

.LegalPage-module__article--GMnhI h2 {
  margin: 32px 0 12px;

  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.LegalPage-module__article--GMnhI h2:first-child {
  margin-top: 0;
}

.LegalPage-module__article--GMnhI p,
.LegalPage-module__article--GMnhI li {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.LegalPage-module__article--GMnhI p + p {
  margin-top: 10px;
}

.LegalPage-module__article--GMnhI ul,
.LegalPage-module__article--GMnhI ol {
  margin: 10px 0 0 18px;
}

.LegalPage-module__article--GMnhI li + li {
  margin-top: 8px;
}

.LegalPage-module__article--GMnhI strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.LegalPage-module__back--stSsi {
  display: inline-flex;
  margin-top: 40px;

  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
}

.LegalPage-module__back--stSsi:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 700px) {
  .LegalPage-module__inner--_WAdM {
    width: min(100% - 32px, 760px);
    padding-top: 36px;
  }
}


/*# sourceMappingURL=styles.0d6a4584c346f76c9d25.css.map*/