@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/styles/legacy/style.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #65a30d;
  --color-primary-hover: #84cc16;
  --color-lime-400: #a3e635;
  --color-lime-500: #84cc16;
  --color-lime-100: #ecfccb;
  --color-lime-50: #f7fee7;
  --color-black: #000;
  --color-white: #fff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --color-green-50: #dcfce7;
  --color-green-400: #4ade80;
  --color-green-500: #16a34a;
  --color-green-600: #15803d;
  --color-green-700: #15803d;
  --color-blue-100: #dbeafe;
  --color-blue-300: #93c5fd;
  --color-blue-500: #3b82f6;
  --color-blue-600: #2563eb;
  --color-blue-700: #1e40af;
  --color-orange-400: #fb923c;
  --color-orange-700: #c2410c;
  --color-red-500: #dc2626;
  --font-family: "Inter", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --letter-spacing-tight: -.02em;
  --letter-spacing-normal: -.01em;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 20px;
  --spacing-6: 24px;
  --spacing-8: 32px;
  --spacing-10: 40px;
  --spacing-12: 48px;
  --spacing-16: 64px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px #0000000d;
  --shadow-md: 0 4px 20px #00000014;
  --shadow-lg: 0 10px 40px #0000001a;
  --shadow-xl: 0 20px 60px #0000001a;
  --transition-fast: .2s ease;
  --transition-normal: .3s ease;
  --z-dropdown: 100;
  --z-nav: 1000;
  --z-overlay: 9999;
  --z-mobile-menu: 10000;
  --container-max-width: 1280px;
  --nav-height: 64px;
}

.flex {
  display: flex;
}

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

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-evenly {
  justify-content: space-evenly;
}

.gap-1 {
  gap: var(--spacing-1);
}

.gap-2 {
  gap: var(--spacing-2);
}

.gap-3 {
  gap: var(--spacing-3);
}

.gap-4 {
  gap: var(--spacing-4);
}

.gap-6 {
  gap: var(--spacing-6);
}

.gap-8 {
  gap: var(--spacing-8);
}

.gap-12 {
  gap: var(--spacing-12);
}

.w-full {
  width: 100%;
}

.w-5 {
  width: 20px;
}

.w-6 {
  width: 24px;
}

.w-7 {
  width: 28px;
}

.w-10 {
  width: 40px;
}

.w-12 {
  width: 48px;
}

.w-14 {
  width: 56px;
}

.w-16 {
  width: 64px;
}

.w-20 {
  width: 80px;
}

.w-28 {
  width: 112px;
}

.w-32 {
  width: 128px;
}

.w-40 {
  width: 160px;
}

.w-48 {
  width: 192px;
}

.w-1\.5 {
  width: 6px;
}

.w-3\.5 {
  width: 14px;
}

.w-4 {
  width: 16px;
}

.h-full {
  height: 100%;
}

.h-5 {
  height: 20px;
}

.h-6 {
  height: 24px;
}

.h-7 {
  height: 28px;
}

.h-10 {
  height: 40px;
}

.h-12 {
  height: 48px;
}

.h-14 {
  height: 56px;
}

.h-16 {
  height: 64px;
}

.h-20 {
  height: 80px;
}

.h-32 {
  height: 128px;
}

.h-40 {
  height: 160px;
}

.h-56 {
  height: 224px;
}

.h-1\.5 {
  height: 6px;
}

.h-3\.5 {
  height: 14px;
}

.h-4 {
  height: 16px;
}

.max-w-7xl {
  max-width: var(--container-max-width);
}

.max-w-xs {
  max-width: 320px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: var(--spacing-1);
}

.mb-2 {
  margin-bottom: var(--spacing-2);
}

.mb-3 {
  margin-bottom: var(--spacing-3);
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.mb-5 {
  margin-bottom: var(--spacing-5);
}

.mb-6 {
  margin-bottom: var(--spacing-6);
}

.mb-8 {
  margin-bottom: var(--spacing-8);
}

.mt-1 {
  margin-top: var(--spacing-1);
}

.mt-2 {
  margin-top: var(--spacing-2);
}

.mt-0\.5 {
  margin-top: 2px;
}

.px-2 {
  padding-left: var(--spacing-2);
  padding-right: var(--spacing-2);
}

.px-5 {
  padding-left: var(--spacing-5);
  padding-right: var(--spacing-5);
}

.px-6 {
  padding-left: var(--spacing-6);
  padding-right: var(--spacing-6);
}

.py-0\.5 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-2\.5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-3 {
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-3);
}

.py-4 {
  padding-top: var(--spacing-4);
  padding-bottom: var(--spacing-4);
}

.py-12 {
  padding-top: var(--spacing-12);
  padding-bottom: var(--spacing-12);
}

.p-5 {
  padding: var(--spacing-5);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-base {
  font-size: var(--font-size-base);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-4xl {
  font-size: var(--font-size-4xl);
}

.text-5xl {
  font-size: var(--font-size-5xl);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-lime-400 {
  color: var(--color-lime-400);
}

.text-gray-400 {
  color: var(--color-gray-400);
}

.text-gray-500 {
  color: var(--color-gray-500);
}

.text-gray-600 {
  color: var(--color-gray-600);
}

.text-green-500 {
  color: var(--color-green-500);
}

.text-green-600 {
  color: var(--color-green-600);
}

.text-green-700 {
  color: var(--color-green-700);
}

.text-orange-700 {
  color: var(--color-orange-700);
}

.text-blue-600 {
  color: var(--color-blue-600);
}

.text-blue-700 {
  color: var(--color-blue-700);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-lime-400 {
  background-color: var(--color-lime-400);
}

.bg-lime-500 {
  background-color: var(--color-lime-500);
}

.bg-lime-100 {
  background-color: var(--color-lime-100);
}

.bg-lime-50 {
  background-color: var(--color-lime-50);
}

.bg-gray-50 {
  background-color: var(--color-gray-50);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.bg-gray-200 {
  background-color: var(--color-gray-200);
}

.bg-gray-700 {
  background-color: var(--color-gray-700);
}

.bg-gray-900 {
  background-color: var(--color-gray-900);
}

.bg-green-50 {
  background-color: var(--color-green-50);
}

.bg-green-200 {
  background-color: #86efac;
}

.bg-green-500 {
  background-color: var(--color-green-500);
}

.bg-blue-50 {
  background-color: var(--color-blue-100);
}

.bg-blue-200 {
  background-color: var(--color-blue-300);
}

.bg-orange-50 {
  background-color: #fed7aa;
}

.bg-orange-200 {
  background-color: #fdba74;
}

.border {
  border: 1px solid;
}

.border-2 {
  border: 2px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-gray-100 {
  border-color: var(--color-gray-100);
}

.border-gray-200 {
  border-color: var(--color-gray-200);
}

.border-green-200 {
  border-color: #86efac;
}

.border-green-500 {
  border-color: var(--color-green-500);
}

.border-blue-200 {
  border-color: var(--color-blue-300);
}

.border-orange-200 {
  border-color: #fdba74;
}

.rounded {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-3xl {
  border-radius: 24px;
}

.rounded-full {
  border-radius: var(--radius-full);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.transition {
  transition: all var(--transition-fast);
}

.hover\:text-lime-400:hover {
  color: var(--color-lime-400);
}

.hover\:bg-lime-500:hover {
  background-color: var(--color-lime-500);
}

.hover\:bg-gray-50:hover {
  background-color: var(--color-gray-50);
}

.hover\:shadow-md:hover {
  box-shadow: var(--shadow-md);
}

.hover\:gap-2:hover {
  gap: var(--spacing-2);
}

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

.text-left {
  text-align: left;
}

.leading-tight {
  line-height: var(--line-height-tight);
}

.leading-relaxed {
  line-height: var(--line-height-normal);
}

.tracking-tight {
  letter-spacing: var(--letter-spacing-tight);
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1;
}

.space-y-0\.5 > * + * {
  margin-top: 2px;
}

.space-y-2 > * + * {
  margin-top: var(--spacing-2);
}

.space-y-3 > * + * {
  margin-top: var(--spacing-3);
}

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

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

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:block {
    display: block;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:py-16 {
    padding-top: var(--spacing-16);
    padding-bottom: var(--spacing-16);
  }

  .lg\:text-5xl {
    font-size: var(--font-size-5xl);
  }

  .lg\:col-span-1 {
    grid-column: span 1;
  }

  .lg\:col-span-4 {
    grid-column: span 4;
  }
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

body {
  font-family: var(--font-family);
  color: var(--color-gray-900);
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}

nav {
  z-index: var(--z-nav);
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  color: inherit;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.dropdown-menu {
  margin-top: var(--spacing-3);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  min-width: 200px;
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-10px);
}

.dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: var(--spacing-3) var(--spacing-5);
  color: var(--color-gray-900);
  transition: background var(--transition-fast);
  font-size: var(--font-size-sm);
  text-decoration: none;
  display: block;
}

.dropdown-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dropdown-item:hover {
  background: var(--color-gray-100);
  color: var(--color-primary);
}

.mobile-menu {
  background: var(--color-black);
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  z-index: var(--z-mobile-menu);
  transition: right var(--transition-normal);
  position: fixed;
  top: 0;
  right: -100%;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.mobile-menu-header {
  padding: var(--spacing-4) var(--spacing-6);
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

#mobile-menu-close {
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

#mobile-menu-close:hover {
  color: var(--color-lime-400);
}

.mobile-menu-items {
  padding: var(--spacing-6);
  flex: 1;
  overflow-y: auto;
}

.mobile-menu-footer {
  padding: var(--spacing-6);
  border-top: 1px solid #ffffff1a;
}

.mobile-dropdown {
  margin-bottom: var(--spacing-2);
}

.mobile-dropdown-toggle {
  width: 100%;
  padding: var(--spacing-3) 0;
  color: var(--color-white);
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mobile-dropdown-toggle:hover {
  color: var(--color-lime-400);
}

.mobile-dropdown-toggle i {
  transition: transform var(--transition-fast);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  transition: max-height var(--transition-normal);
  overflow: hidden;
}

.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 500px;
}

.mobile-dropdown-item {
  padding: 10px 0 10px var(--spacing-5);
  color: #ffffffb3;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: block;
}

.mobile-dropdown-item:hover {
  color: var(--color-lime-400);
}

.mobile-menu-link {
  padding: var(--spacing-3) 0;
  color: var(--color-white);
  font-size: var(--font-size-base);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: block;
}

.mobile-menu-link:hover {
  color: var(--color-lime-400);
}

.mobile-menu-overlay {
  width: 100%;
  height: 100vh;
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  background: #00000080;
  position: fixed;
  top: 0;
  left: 0;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.container {
  max-width: var(--container-max-width);
  padding: 0 var(--spacing-6);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-green-50) 100%);
  padding: var(--spacing-12) 0 var(--spacing-16);
  position: relative;
  overflow: hidden;
}

.hero-content {
  gap: var(--spacing-12);
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.hero-text h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-6);
  color: var(--color-gray-900);
  letter-spacing: var(--letter-spacing-tight);
}

.hero-text h1 .gradient-text {
  color: var(--color-gray-900);
}

.hero-text p {
  font-size: var(--font-size-base);
  color: var(--color-gray-500);
  margin-bottom: var(--spacing-8);
  line-height: var(--line-height-normal);
}

.hero-buttons {
  gap: var(--spacing-3);
  flex-wrap: wrap;
  display: flex;
}

.btn {
  padding: var(--spacing-3) var(--spacing-6);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  align-items: center;
  gap: var(--spacing-1);
  border: none;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  background: var(--color-lime-400);
  color: var(--color-black);
}

.btn-primary:hover {
  background: #bef264;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-gray-900);
  border: 1px solid var(--color-gray-200);
}

.btn-secondary:hover {
  background: var(--color-gray-50);
  transform: translateY(-1px);
}

.dashboard-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
}

.dashboard-header {
  margin-bottom: var(--spacing-5);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.dashboard-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  align-items: center;
  gap: var(--spacing-1);
  display: flex;
}

.status-online {
  font-size: var(--font-size-xs);
  color: var(--color-green-500);
  align-items: center;
  gap: 6px;
  display: flex;
}

.status-dot {
  border-radius: var(--radius-full);
  background: var(--color-green-500);
  width: 6px;
  height: 6px;
}

.metrics-grid {
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-6);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.metric {
  text-align: left;
}

.metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  margin-bottom: var(--spacing-1);
}

.metric-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.metric-set {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
}

.dashboard-bottom {
  gap: var(--spacing-6);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--color-gray-100);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.section-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-3);
}

.zone-list {
  gap: var(--spacing-2);
  flex-direction: column;
  display: flex;
}

.zone-item {
  font-size: var(--font-size-xs);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.badge {
  padding: 2px var(--spacing-2);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  border: 1px solid;
}

.badge-healthy {
  background: var(--color-green-50);
  color: var(--color-green-600);
  border-color: #86efac;
}

.badge-warning {
  color: var(--color-orange-700);
  background: #fed7aa;
  border-color: #fdba74;
}

.badge-optimal {
  background: var(--color-blue-100);
  border-color: var(--color-blue-300);
  color: var(--color-blue-700);
}

.badge-idle {
  background: var(--color-gray-50);
  border-color: var(--color-gray-200);
  color: var(--color-gray-500);
}

.chart-svg {
  width: 100%;
  height: 80px;
  margin-bottom: var(--spacing-1);
}

.chart-labels {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  justify-content: space-between;
  display: flex;
}

.applications {
  background: var(--color-white);
  padding: 48px 0;
}

.section-title-main {
  letter-spacing: -.01em;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}

.section-subtitle {
  color: var(--color-gray-500);
  margin-bottom: 32px;
  font-size: 14px;
}

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

.app-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: 12px;
  transition: all .3s;
  overflow: hidden;
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #00000014;
}

.app-image {
  justify-content: center;
  align-items: center;
  height: 160px;
  display: flex;
}

.app-green {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}

.app-orange {
  background: linear-gradient(135deg, #fb923c 0%, #dc2626 100%);
}

.app-dark {
  background: linear-gradient(135deg, #374151 0%, #111827 100%);
}

.app-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.app-blue i {
  color: #2563eb;
  width: 64px;
  height: 64px;
}

.app-content {
  padding: 20px;
}

.app-content h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.app-footer {
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  display: flex;
}

.app-footer p {
  color: var(--color-gray-500);
  flex: 1;
  font-size: 14px;
}

.app-arrow {
  border: 1px solid var(--color-primary);
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.valvix-structure {
  background: var(--color-lime-100);
  padding: 48px 0;
}

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

.structure-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: 12px;
  padding: 24px;
}

.structure-icon {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
}

.structure-icon-lime {
  background: var(--color-lime-400);
  color: var(--color-black);
}

.structure-icon-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.structure-icon i {
  width: 24px;
  height: 24px;
}

.structure-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.structure-type {
  color: var(--color-gray-500);
  margin-bottom: 16px;
  font-size: 14px;
}

.structure-desc {
  color: var(--color-gray-900);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.structure-link {
  color: var(--color-primary);
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
}

.structure-link:hover {
  gap: 8px;
}

.structure-link i {
  width: 14px;
  height: 14px;
}

.cta-section {
  border-top: 1px solid var(--color-gray-100);
  padding: 40px 0;
}

.cta-content {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.cta-left {
  align-items: center;
  gap: 16px;
  display: flex;
}

.cta-icon {
  border: 2px solid var(--color-primary);
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-icon i {
  width: 28px;
  height: 28px;
}

.cta-left h3, .cta-left p {
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-text {
  color: var(--color-gray-500);
  max-width: 320px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

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

  .structure-grid, .dashboard-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

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

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

  .cta-content {
    text-align: center;
    flex-direction: column;
  }

  .cta-left {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .section-title-main {
    font-size: 18px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

.animate-fade-in {
  animation: .6s ease-out forwards fadeIn;
}

.animate-slide-in-left {
  animation: .6s ease-out forwards slideInLeft;
}

.animate-slide-in-right {
  animation: .6s ease-out forwards slideInRight;
}

.animate-scale-in {
  animation: .4s ease-out forwards scaleIn;
}

.animate-pulse {
  animation: 2s ease-in-out infinite pulse;
}

.delay-100 {
  animation-delay: .1s;
}

.delay-200 {
  animation-delay: .2s;
}

.delay-300 {
  animation-delay: .3s;
}

.delay-400 {
  animation-delay: .4s;
}

.delay-500 {
  animation-delay: .5s;
}

.animate-fade-in, .animate-slide-in-left, .animate-slide-in-right, .animate-scale-in {
  opacity: 0;
}

/* [project]/src/styles/legacy/applications.css [app-client] (css) */
body {
  font-family: Inter, sans-serif;
}

.form-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 32px #00000012;
}

.form-input {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border .2s;
}

.form-input:focus {
  border-color: #a3e635;
}

.form-input.is-invalid, .form-input.is-invalid:focus {
  border-color: #ef4444;
}

.form-error {
  color: #dc2626;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
}

.form-select {
  appearance: none;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.form-select:focus {
  border-color: #a3e635;
}

.btn-submit {
  color: #000;
  cursor: pointer;
  background: #a3e635;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.btn-submit:hover {
  background: #84cc16;
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.form-submit-error {
  text-align: center;
  margin-top: 12px;
}

.phone-input-wrapper {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  transition: border .2s;
  display: flex;
}

.phone-input-wrapper:focus-within {
  border-color: #a3e635;
}

.phone-input-wrapper.is-invalid, .phone-input-wrapper.is-invalid:focus-within {
  border-color: #ef4444;
}

.phone-input-wrapper .PhoneInput {
  align-items: center;
  gap: 8px;
  width: 100%;
  display: flex;
}

.phone-input-wrapper .PhoneInputCountry {
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  display: flex;
}

.phone-input-wrapper .PhoneInputCountrySelect {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.phone-input-wrapper .PhoneInputCountrySelectArrow {
  border-top: 5px solid #6b7280;
  border-left: 4px solid #0000;
  border-right: 4px solid #0000;
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin-left: 2px;
  display: block;
}

.phone-input-wrapper .PhoneInputCountryIcon {
  border-radius: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 14px;
  position: relative;
  overflow: hidden;
}

.phone-input-wrapper .PhoneInputCountryIcon--square {
  width: 14px;
  height: 14px;
}

.phone-input-wrapper .PhoneInputCountryIconImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phone-input-wrapper .PhoneInputCountryIcon--border {
  box-shadow: 0 0 0 1px #0000001a;
}

.phone-input-wrapper .PhoneInputInput {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.toast {
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}

#applications-sidebar {
  align-self: stretch;
}

.applications-sidebar-inner {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
  position: sticky;
  top: 6rem;
}

.testi-slider {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.testi-slide {
  animation: .5s fadeSlide;
  display: none;
}

.testi-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testi-dot {
  cursor: pointer;
  background: #d1d5db;
  border: none;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: background .2s;
}

.testi-dot.active {
  background: #a3e635;
}

.testi-slide-img {
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  width: 80px;
  height: 96px;
}

.testi-slide-body {
  background: #f9fafb;
  border-radius: 12px;
  flex: 1;
  margin-top: 12px;
  margin-left: -16px;
  padding: .85rem 1rem;
}

.stat-card {
  text-align: center;
  background: #f7fee7;
  border-radius: 16px;
  padding: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.testi-avatar {
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  width: 120px;
  height: 140px;
}

.testi-body {
  background: #f9fafb;
  border-radius: 14px;
  flex: 1;
  margin-top: 16px;
  margin-left: -24px;
  padding: 1.1rem 1.2rem;
  position: relative;
}

.related-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: block;
  overflow: hidden;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #0000001a;
}

.step-num {
  color: #000;
  background: #a3e635;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.img-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.img-grid img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 200px;
}

.img-grid .img-wide {
  grid-column: span 2;
  height: 260px;
}

.video-thumb {
  cursor: pointer;
  background: #111827;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  height: 380px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-play-btn {
  z-index: 2;
  background: #a3e635e6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: transform .2s, background .2s;
  display: flex;
}

.video-play-btn:hover {
  background: #a3e635;
  transform: scale(1.08);
}

.video-overlay {
  background: linear-gradient(to top, #0009, #0000);
  position: absolute;
  inset: 0;
}

.stars {
  color: #facc15;
  letter-spacing: 2px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-q {
  text-align: left;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.faq-a {
  color: #6b7280;
  padding-bottom: 1rem;
  font-size: 14px;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-icon {
  transition: transform .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.applications-layout {
  align-items: flex-start;
  gap: 3rem;
  display: flex;
}

:is(.testi-slider, .mb-12:has(.testimonial-card), .mb-12:has(.video-thumb)) {
  display: none !important;
}

.popup-fab {
  z-index: 900;
  color: #000;
  cursor: pointer;
  background: #a3e635;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  position: fixed;
  bottom: 28px;
  right: 28px;
  box-shadow: 0 4px 20px #0003;
}

.popup-fab:hover {
  background: #84cc16;
  transform: scale(1.08);
  box-shadow: 0 6px 28px #00000040;
}

.popup-overlay {
  z-index: 901;
  opacity: 0;
  pointer-events: none;
  background: #00000073;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 28px;
  transition: opacity .25s;
  display: flex;
  position: fixed;
  inset: 0;
}

.popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  max-height: calc(100vh - 56px);
  padding: 2rem;
  transition: transform .25s;
  position: relative;
  overflow-y: auto;
  transform: translateY(24px);
  box-shadow: 0 8px 48px #0000002e;
}

.popup-overlay.is-open .popup-modal {
  transform: translateY(0);
}

.popup-close {
  cursor: pointer;
  color: #6b7280;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  transition: color .15s, background .15s;
  display: flex;
  position: absolute;
  top: 14px;
  right: 14px;
}

.popup-close:hover {
  color: #111;
  background: #f3f4f6;
}

@media (max-width: 480px) {
  .popup-overlay {
    justify-content: center;
    align-items: flex-end;
    padding: 0;
  }

  .popup-modal {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 100%;
  }
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #171717;
  --muted: #5f6b76;
  --accent: #84cc16;
  --surface: #f7faf7;
  --border: #e5e7eb;
}

html {
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: clip;
}

body {
  min-height: 100%;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-direction: column;
  font-family: Inter, Arial, Helvetica, sans-serif;
  display: flex;
}

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

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

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

.site-header {
  color: #fff;
  z-index: 50;
  background: #000;
  padding: 16px 24px;
  position: sticky;
  top: 0;
}

.site-header__inner {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.site-header__brand {
  flex-shrink: 0;
  align-items: center;
  display: inline-flex;
}

.site-header__logo {
  width: auto;
  height: 32px;
  display: block;
}

.site-header__nav {
  color: #f9fafb;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: .875rem;
  display: flex;
}

.site-header__nav a, .site-header__languages a {
  transition: color .2s;
}

.site-header__nav a:hover, .site-header__languages a:hover {
  color: #a3e635;
}

.site-header__controls {
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
  display: flex;
}

.site-header__languages {
  color: #e5e7eb;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  display: flex;
}

.site-header__languages [aria-current="true"] {
  color: #a3e635;
  font-weight: 700;
}

.site-header__separator {
  color: #6b7280;
}

.site-header__login {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s;
}

.site-header__login:hover {
  background: #ffffff26;
}

.site-mobile-menu {
  display: none;
}

.site-mobile-menu__trigger, .site-mobile-menu__close, .site-mobile-menu__overlay {
  appearance: none;
  cursor: pointer;
  border: 0;
}

.site-mobile-menu__trigger {
  background: none;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: background .2s;
  display: inline-flex;
}

.site-mobile-menu__trigger:hover {
  background: #ffffff1a;
}

.site-mobile-menu__trigger span {
  background: #fff;
  border-radius: 999px;
  width: 22px;
  height: 2px;
  display: block;
}

.site-mobile-menu__overlay {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 90;
  background: #0000008c;
  transition: opacity .2s, visibility .2s;
  position: fixed;
  inset: 0;
}

.site-mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-mobile-menu__panel {
  color: #fff;
  z-index: 100;
  background: #000;
  flex-direction: column;
  width: min(100%, 400px);
  max-width: 400px;
  height: 100dvh;
  transition: transform .24s;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: auto;
  transform: translateX(100%);
}

.site-mobile-menu__panel.is-open {
  transform: translateX(0);
}

.site-mobile-menu__header {
  border-bottom: 1px solid #ffffff1f;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

.site-mobile-menu__brand {
  align-items: center;
  display: inline-flex;
}

.site-mobile-menu__logo {
  width: auto;
  height: 32px;
  display: block;
}

.site-mobile-menu__close {
  background: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background .2s;
  display: inline-flex;
  position: relative;
}

.site-mobile-menu__close:hover {
  background: #ffffff1a;
}

.site-mobile-menu__close span {
  background: #fff;
  border-radius: 999px;
  width: 22px;
  height: 2px;
  display: block;
  position: absolute;
}

.site-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.site-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.site-mobile-menu__links {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  padding: 24px;
  display: flex;
}

.site-mobile-menu__links a {
  color: #fff;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1rem;
  transition: color .2s;
}

.site-mobile-menu__links a:hover {
  color: #a3e635;
}

.site-mobile-menu__footer {
  border-top: 1px solid #ffffff1f;
  padding: 24px;
}

.site-mobile-menu__languages {
  color: #d1d5db;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .875rem;
  display: flex;
}

.site-mobile-menu__languages a {
  transition: color .2s;
}

.site-mobile-menu__languages a:hover, .site-mobile-menu__languages [aria-current="true"] {
  color: #a3e635;
  font-weight: 700;
}

.site-mobile-menu__separator {
  color: #6b7280;
}

.site-mobile-menu__login {
  color: #fff;
  text-align: center;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 6px;
  width: 100%;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s;
  display: block;
}

.site-mobile-menu__login:hover {
  background: #ffffff26;
}

.site-footer {
  color: #f9fafb;
  background: #111827;
  margin-top: auto;
  padding: 48px 24px 24px;
}

.site-footer__inner {
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(180px, .7fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
}

.site-footer__section {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.site-footer__section h2 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__section p, .site-footer__section a {
  color: #d1d5db;
  font-size: .94rem;
  line-height: 1.6;
}

.site-footer__section a {
  transition: color .2s;
}

.site-footer__section a:hover {
  color: #a3e635;
}

.site-footer__bottom {
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid #ffffff1f;
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 20px;
  font-size: .875rem;
}

@media (max-width: 960px) {
  .site-header__inner {
    flex-direction: row;
    align-items: center;
  }

  .site-header__nav, .site-header__controls {
    display: none;
  }

  .site-mobile-menu {
    display: block;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.route-shell {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
  padding: 64px 0;
}

.route-kicker {
  color: #4d7c0f;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 700;
}

.route-title {
  letter-spacing: 0;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
}

.route-copy {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 32px;
  padding: 24px;
}

.route-list {
  gap: 12px;
  margin-top: 20px;
  display: grid;
}

.route-link {
  color: #3f6212;
  font-weight: 700;
}

.route-meta {
  color: var(--muted);
  margin-top: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: .9rem;
}

.applications-listing {
  background: #fff;
}

.applications-listing__title {
  color: #111827;
  letter-spacing: 0;
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: 600;
}

.home-page {
  background: #fff;
}

.home-container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin: 0 auto;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  max-width: 1280px;
  min-height: 540px;
  margin: 0 auto;
  display: grid;
}

.home-hero__copy {
  background: #f8fafc;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.home-hero__image {
  background-image: linear-gradient(110deg, #fff 0% 48%, #fff3 100%), url("/images/main/main1.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.home-hero__content {
  z-index: 1;
  max-width: 620px;
  padding: 72px 32px;
  position: relative;
}

.home-hero h1 {
  color: #111827;
  letter-spacing: 0;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.02;
}

.home-hero p {
  color: #374151;
  max-width: 580px;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}

.home-button {
  color: #000;
  background: #a3e635;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s;
  display: inline-flex;
}

.home-button:hover {
  background: #84cc16;
}

.home-demo {
  z-index: 1;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  margin: 20px 20px 20px 0;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 2px #0f172a0d;
}

.vx-hdr {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.vx-title {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}

.vx-online {
  color: #22c55e;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.vx-pulse {
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 2s infinite vxp;
}

@keyframes vxp {
  0%, 100% {
    box-shadow: 0 0 #22c55e80;
  }

  70% {
    box-shadow: 0 0 0 6px #22c55e00;
  }
}

.vx-sensors {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  display: grid;
}

.vx-s {
  padding: 12px 0;
}

.vx-s + .vx-s {
  border-left: 1px solid #e5e7eb;
  padding-left: 20px;
}

.vx-sl {
  color: #9ca3af;
  margin-bottom: 6px;
  font-size: 13px;
}

.vx-sv {
  color: #111827;
  letter-spacing: -.5px;
  margin-bottom: 4px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.vx-ss {
  color: #9ca3af;
  font-size: 13px;
}

.vx-slrow {
  margin-bottom: 18px;
}

.vx-sltop {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.vx-sltlbl {
  color: #6b7280;
  font-size: 13px;
}

.vx-sltime {
  color: #111827;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 700;
}

.rng {
  appearance: none;
  cursor: pointer;
  background: #e5e7eb;
  border-radius: 2px;
  outline: none;
  width: 100%;
  height: 4px;
}

.rng::-webkit-slider-thumb {
  appearance: none;
  cursor: pointer;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 3px #22c55e2e;
}

.rng::-moz-range-thumb {
  cursor: pointer;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.vx-ticks {
  color: #d1d5db;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 1px;
  font-size: 11px;
  display: flex;
}

.vx-eqs {
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 16px;
  display: grid;
}

.vx-eq {
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 4px;
  transition: background .25s, border-color .25s;
}

.vx-eq.on {
  background: #f0fdf4;
  border-color: #86efac;
}

.vx-eq svg {
  color: #d1d5db;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  width: 15px;
  height: 15px;
  margin: 0 auto;
  transition: color .25s;
}

.vx-eq.on svg {
  color: #16a34a;
}

.vx-eqn {
  color: #9ca3af;
  margin-top: 4px;
  font-size: 9px;
}

.vx-eqv {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 600;
}

.vx-eq.on .vx-eqv {
  color: #16a34a;
}

.vx-legend {
  color: #6b7280;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 11px;
  display: flex;
}

.vx-leg {
  align-items: center;
  gap: 5px;
  display: flex;
}

.vx-legsw {
  border-radius: 1px;
  width: 16px;
  height: 2px;
  display: inline-block;
}

.vx-legsw--inside {
  background: #22c55e;
}

.vx-legsw--outside {
  background: #d1d5db;
}

.vx-chart {
  width: 100%;
  height: 170px;
  display: block;
  overflow: visible;
}

.vx-grid {
  stroke: #0000000a;
  stroke-width: 1px;
}

.vx-axis {
  fill: #00000047;
  font-size: 10px;
}

.vx-area {
  fill: #22c55e12;
}

.vx-line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vx-line--inside {
  stroke: #22c55e;
  stroke-width: 2px;
}

.vx-line--outside {
  stroke: #e5e7eb;
  stroke-dasharray: 5 4;
  stroke-width: 1.5px;
}

.vx-cursor {
  stroke: #22c55e66;
  stroke-dasharray: 3 3;
  stroke-width: 1.5px;
}

.vx-point {
  fill: #22c55e;
  stroke: #fff;
  stroke-width: 2px;
}

.home-section {
  padding: 48px 0;
}

.home-section--lime {
  background: #ecfccb;
}

.home-section--gray {
  background: #f9fafb;
}

.home-section h2 {
  color: #111827;
  letter-spacing: 0;
  margin-bottom: 24px;
  font-size: 1.35rem;
  font-weight: 700;
}

.home-section__lead {
  color: #4b5563;
  margin: -14px 0 28px;
  font-size: .95rem;
}

.home-applications-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.home-application-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  transition: box-shadow .2s, transform .2s;
  display: block;
  overflow: hidden;
}

.home-application-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #0f172a14;
}

.home-application-card img {
  object-fit: cover;
  width: 100%;
  height: 160px;
  display: block;
}

.home-application-card div {
  padding: 20px;
}

.home-application-card h3 {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
}

.home-application-card p {
  color: #4b5563;
  font-size: .875rem;
  line-height: 1.55;
}

.home-application-card h3 svg {
  color: #9ca3af;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  transition: color .2s;
}

.home-application-card:hover h3 svg {
  color: #65a30d;
}

.home-structure-tabs__tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
  display: grid;
}

.home-structure-tab {
  appearance: none;
  color: #111827;
  cursor: pointer;
  text-align: left;
  z-index: 0;
  background: #ffffff9e;
  border: 1px solid #e5e7eb;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  gap: 14px;
  margin-bottom: 0;
  padding: 24px;
  transition: background .2s, border-color .2s;
  display: grid;
  position: relative;
}

.home-structure-tab:hover, .home-structure-tab.is-active {
  background: #fff;
}

.home-structure-tab.is-active {
  z-index: 2;
  border-width: 2px;
  border-color: #a3e635;
  margin-bottom: -2px;
}

.home-structure-tab__header {
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.home-structure-tab__icon {
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.home-structure-tab__copy {
  flex: 1;
  gap: 4px;
  display: grid;
}

.home-structure-tab__copy strong {
  font-size: 1.125rem;
  line-height: 1.35;
}

.home-structure-tab__copy small, .home-structure-tab p {
  color: #6b7280;
  font-size: .875rem;
}

.home-structure-tab p {
  margin: 0;
  line-height: 1.6;
}

.home-structure-panel {
  z-index: 1;
  background: #fff;
  border: 2px solid #a3e635;
  border-radius: 0 12px 12px;
  padding: 32px;
  position: relative;
}

.home-structure-panel__content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  display: grid;
}

.home-structure-panel__image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-structure-panel__image-wrap {
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  display: flex;
}

.home-structure-panel__image img {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 240px;
}

.home-structure-panel h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.home-structure-panel__body > p {
  color: #4b5563;
  margin-bottom: 18px;
  font-size: .9rem;
  line-height: 1.6;
}

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

.home-check-grid__item, .home-structure-panel__benefits li {
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.home-check-grid__item span, .home-structure-panel__benefits li span {
  color: #111827;
  font-size: .86rem;
  line-height: 1.45;
}

.home-check-grid__item svg, .home-structure-panel__benefits li svg {
  color: #22c55e;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.home-structure-panel__benefits {
  background: #f7fee7;
  border-radius: 10px;
  padding: 20px;
}

.home-structure-panel__benefits h4 {
  color: #15803d;
  margin-bottom: 14px;
  font-size: .9rem;
}

.home-structure-panel__benefits ul {
  gap: 12px;
  margin: 0;
  padding: 0;
  display: grid;
}

.home-ai {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.home-ai__main {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.home-ai__panel {
  flex-direction: column;
  flex: 1;
  gap: 24px;
  display: flex;
}

.home-ai-card, .home-ai__wide-panel, .home-metrics {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 20px;
}

.home-ai-card {
  flex: 1;
  min-width: 0;
}

.home-ai-card--compact {
  flex-shrink: 0;
}

.home-ai-card__label {
  color: #6b7280;
  margin-bottom: 4px;
  font-size: .75rem;
}

.home-ai-card__value {
  color: #111827;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.home-ai-card__chart {
  gap: 4px;
  display: flex;
}

.home-ai-card__chart svg {
  flex: 1;
  height: 48px;
}

.home-ai-card__chart polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}

.home-ai-card__chart polyline:first-child {
  stroke: #3b82f6;
}

.home-ai-card__chart polyline:last-child {
  stroke: #84cc16;
}

.home-ai-card__y {
  color: #9ca3af;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0;
  font-size: .75rem;
  display: flex;
}

.home-ai-card__x {
  color: #9ca3af;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-left: 28px;
  font-size: .75rem;
  display: flex;
}

.home-ai__wide-panel {
  flex-wrap: wrap;
  flex: 1;
  gap: 24px;
  display: flex;
}

.home-ai__wide-panel .home-ai-card {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.home-ai__wide-panel > * + * {
  border-left: 0;
  padding-left: 0;
}

.home-ai-energy {
  flex: 1;
  min-width: 0;
}

.home-ai-energy__content {
  align-items: center;
  gap: 16px;
  display: flex;
}

.home-ai-energy__ring {
  flex: 0 0 128px;
  width: 128px;
  height: 128px;
  position: relative;
}

.home-ai-energy__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.home-ai-energy__ring circle {
  fill: none;
  stroke-width: 8px;
}

.home-ai-energy__ring circle:first-child {
  stroke: #e5e7eb;
}

.home-ai-energy__ring circle:last-child {
  stroke: #3b82f6;
  stroke-dasharray: 201;
  stroke-dashoffset: 50px;
}

.home-ai-energy__ring div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-ai-energy__ring strong {
  font-size: 1.125rem;
}

.home-ai-energy__ring span {
  color: #9ca3af;
  font-size: .75rem;
}

.home-ai-energy__segments {
  flex: 1;
  gap: 4px;
  display: grid;
}

.home-ai-energy__segments div {
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  display: flex;
}

.home-ai-energy__segments span {
  align-items: center;
  gap: 4px;
  display: flex;
}

.home-ai-energy__dot {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
}

.home-ai-energy__dot--0 {
  background: #3b82f6;
}

.home-ai-energy__dot--1 {
  background: #93c5fd;
}

.home-ai-energy__dot--2 {
  background: #1d4ed8;
}

.home-ai__yield {
  flex-direction: column;
  display: flex;
}

.home-metrics {
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  display: flex;
}

.home-metric {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-metric__icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.home-metric__icon--green {
  color: #22c55e;
}

.home-metric__icon--blue {
  color: #3b82f6;
}

.home-metric__icon--orange {
  color: #fb923c;
}

.home-metric p {
  color: #6b7280;
  margin-bottom: 4px;
  font-size: .75rem;
}

.home-metric strong {
  font-size: 1.25rem;
  font-weight: 600;
}

.home-metric span {
  color: #9ca3af;
  margin-top: 4px;
  font-size: .75rem;
}

.home-equipment-shell {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 24px;
}

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

.home-equipment-card {
  text-align: center;
}

.home-equipment-card img {
  object-fit: cover;
  border-radius: 8px;
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
  display: block;
}

.home-equipment-card p {
  font-size: .78rem;
}

.home-cta {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  display: flex;
}

.home-cta h2, .home-cta p {
  margin: 0;
}

.home-cta__title {
  align-items: center;
  gap: 16px;
  display: flex;
}

.home-cta__icon {
  border: 2px solid #22c55e;
  border-radius: 50%;
  flex: 0 0 56px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.home-cta__icon svg {
  fill: none;
  stroke: #22c55e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  width: 28px;
  height: 28px;
}

.home-cta h2, .home-cta__title p {
  letter-spacing: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.home-cta > p {
  color: #4b5563;
  text-align: left;
  max-width: 320px;
  font-size: .9rem;
}

.home-cta a {
  color: #000;
  text-align: center;
  background: #a3e635;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 800;
  display: inline-flex;
}

.home-cta a svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  width: 16px;
  height: 16px;
}

.application-detail-shell {
  background: #f9fafb;
  padding-bottom: 64px;
}

.application-detail {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.application-detail__backlink {
  color: #6b7280;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  transition: color .2s;
  display: inline-flex;
}

.application-detail__backlink:hover {
  color: #65a30d;
}

.application-detail__content {
  flex: 1;
  min-width: 0;
}

.application-detail__section {
  margin-bottom: 48px;
}

.application-detail__badges {
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.application-detail__badge {
  color: #65a30d;
  background: #ecfccb;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
}

.application-detail__title {
  color: #111827;
  letter-spacing: 0;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.application-detail__lead {
  color: #6b7280;
  max-width: 720px;
  margin-bottom: 40px;
  font-size: 1.25rem;
  line-height: 1.65;
}

.application-detail__hero-image-wrap {
  border-radius: 24px;
  margin-bottom: 40px;
  overflow: hidden;
}

.application-detail__hero-image {
  object-fit: cover;
  width: 100%;
  height: 420px;
}

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

.application-detail__stat-value {
  color: #65a30d;
  margin-bottom: 4px;
  font-size: 2.25rem;
  font-weight: 800;
}

.application-detail__stat-label {
  color: #4b5563;
  font-size: .875rem;
  font-weight: 500;
}

.application-detail__heading {
  color: #111827;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.application-detail__problem-intro {
  color: #374151;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 24px;
  margin-bottom: 24px;
  padding: 24px;
  line-height: 1.75;
}

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

.application-detail__problem-card {
  color: #374151;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.application-detail__problem-card p {
  font-size: .875rem;
  line-height: 1.5;
}

.application-detail__problem-icon {
  background: #fee2e2;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  display: inline-flex;
}

.application-detail__problem-icon-svg {
  color: #ef4444;
}

.application-detail__steps {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.application-detail__step {
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.application-detail__step-title {
  color: #111827;
  margin-bottom: 4px;
  font-size: .9375rem;
  font-weight: 600;
}

.application-detail__step-description {
  color: #6b7280;
  font-size: .875rem;
  line-height: 1.7;
}

.application-detail__gallery-caption {
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
  font-size: .875rem;
}

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

.application-detail__benefit-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  display: flex;
}

.application-detail__benefit-icon {
  color: #65a30d;
  background: #ecfccb;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
}

.application-detail__benefit-title {
  color: #111827;
  margin-bottom: 4px;
  font-size: .875rem;
  font-weight: 600;
}

.application-detail__benefit-description {
  color: #6b7280;
  font-size: .75rem;
  line-height: 1.6;
}

.application-sidebar {
  flex-shrink: 0;
  width: 320px;
  display: none;
}

#applications-sidebar.application-sidebar {
  align-self: flex-start;
  position: sticky;
  top: 96px;
}

#applications-sidebar .applications-sidebar-inner {
  position: static;
  top: auto;
}

.application-sidebar__title {
  color: #111827;
  margin-bottom: 4px;
  font-size: 1.125rem;
  font-weight: 700;
}

.application-sidebar__description {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: .875rem;
  line-height: 1.6;
}

.application-sidebar__form {
  flex-direction: column;
  display: flex;
}

.application-sidebar__fields {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.application-sidebar__label {
  color: #374151;
  margin-bottom: 4px;
  font-size: .75rem;
  font-weight: 600;
  display: block;
}

.application-sidebar__optional {
  color: #9ca3af;
  font-weight: 400;
}

.application-sidebar__textarea {
  resize: vertical;
}

.application-sidebar__button {
  margin-top: 16px;
}

.application-sidebar__toast.is-visible {
  display: block;
}

.application-sidebar__note {
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
  font-size: .75rem;
  line-height: 1.5;
}

.application-mobile-cta {
  text-align: center;
  background: #f7fee7;
  border: 1px solid #d9f99d;
  border-radius: 24px;
  margin-top: 32px;
  padding: 24px;
}

.application-mobile-cta__title {
  color: #111827;
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

.application-mobile-cta__description {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: .875rem;
}

.application-mobile-cta__button {
  color: #111827;
  background: #a3e635;
  border-radius: 12px;
  justify-content: center;
  padding: 12px 32px;
  font-weight: 700;
  transition: background .2s;
  display: inline-flex;
}

.application-mobile-cta__button:hover {
  background: #84cc16;
}

.application-detail__related {
  margin-top: 80px;
}

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

.related-card, .application-related-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: block;
  overflow: hidden;
}

.related-card:hover, .application-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #0000001a;
}

.application-related-card__image {
  object-fit: cover;
  width: 100%;
  height: 176px;
}

.application-related-card__body {
  padding: 16px;
}

.application-related-card__category {
  color: #65a30d;
  font-size: .75rem;
  font-weight: 600;
}

.application-related-card__title {
  color: #111827;
  margin: 4px 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.application-related-card__description {
  color: #6b7280;
  font-size: .75rem;
  line-height: 1.6;
}

.application-related-card__action {
  color: #65a30d;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.application-footer-cta {
  color: #fff;
  background: #000;
  margin-top: 0;
  padding: 48px 24px;
}

.application-footer-cta__inner {
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.application-footer-cta__icon {
  color: #a3e635;
  border: 2px solid #a3e635;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: inline-flex;
}

.application-footer-cta__title {
  margin-bottom: 12px;
  font-size: 1.875rem;
  font-weight: 700;
}

.application-footer-cta__description {
  color: #9ca3af;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.application-footer-cta__actions {
  justify-content: center;
  gap: 12px;
  display: flex;
}

.application-footer-cta__button {
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 700;
  transition: background .2s, border-color .2s;
}

.application-footer-cta__button--primary {
  color: #111827;
  background: #a3e635;
}

.application-footer-cta__button--primary:hover {
  background: #84cc16;
}

.application-footer-cta__button--secondary {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #fff3;
}

.application-footer-cta__button--secondary:hover {
  background: #ffffff29;
}

@media (min-width: 768px) {
  .home-ai__wide-panel {
    flex-wrap: nowrap;
    gap: 0;
  }

  .home-ai__wide-panel > * + * {
    border-left: 1px solid #e5e7eb;
    padding-left: 24px;
  }

  .home-ai__wide-panel > :first-child, .home-ai__wide-panel > :nth-child(2) {
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .home-ai__panel {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .home-ai {
    flex-direction: row;
  }

  .application-sidebar {
    display: block;
  }

  .application-mobile-cta {
    display: none;
  }
}

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

  .home-demo {
    margin: 16px;
  }

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

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

  .home-structure-tab {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  }

  .home-structure-tab.is-active {
    margin-bottom: 0;
  }

  .home-structure-panel {
    border-radius: 12px;
  }

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

  .home-structure-panel__image-wrap {
    width: min(240px, 65vw);
    height: min(240px, 65vw);
  }

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

  .application-detail__stats, .application-detail__problem-grid, .application-detail__benefits-grid, .application-detail__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-hero__content {
    padding: 56px 20px;
  }

  .home-demo {
    padding: 20px;
  }

  .home-applications-grid, .home-check-grid, .home-equipment-grid {
    grid-template-columns: 1fr;
  }

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

  .vx-sv {
    font-size: 1.55rem;
  }

  .home-equipment-card img {
    width: 120px;
    height: 120px;
  }

  .home-cta {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .home-cta > p {
    text-align: center;
  }

  .home-cta__title {
    flex-direction: column;
  }

  .application-detail {
    padding: 32px 20px 0;
  }

  .application-detail__lead {
    font-size: 1rem;
  }

  .application-detail__hero-image {
    height: 260px;
  }

  .application-detail__stats, .application-detail__problem-grid, .application-detail__benefits-grid, .application-detail__related-grid, .application-footer-cta__actions {
    grid-template-columns: 1fr;
  }

  .application-footer-cta__actions {
    flex-direction: column;
    display: flex;
  }

  .application-detail__problem-card, .application-detail__benefit-card {
    padding: 16px;
  }

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

  .img-grid .img-wide {
    grid-column: span 1;
    height: 200px;
  }

  .application-footer-cta__title {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=src_1q9bkt_._.css.map*/