:root {
  --bg: #0F1020;
  --panel: #17182B;
  --panel-2: #20223A;
  --primary: #6C5CE7;
  --cyan: #00D2FF;
  --text: #F5F6FA;
  --muted: #A6A8C3;
  --border: #2D3050;
  --success: #00B86B;
  --warning: #FFB020;
  --danger: #D93636;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

@property --radial-value {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
}

body.is-booting {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(108, 92, 231, 0.08), transparent 42%, rgba(0, 210, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(245, 246, 250, 0.025) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(245, 246, 250, 0.018) 0 1px, transparent 1px 96px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 18%), rgba(0, 210, 255, 0.13), transparent 24rem);
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(15, 16, 32, 0.96), rgba(23, 24, 43, 0.98)),
    repeating-linear-gradient(90deg, rgba(0, 210, 255, 0.08) 0 1px, transparent 1px 90px);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.intro-loader div {
  display: grid;
  justify-items: center;
  gap: 14px;
  transform: translateY(8px);
  animation: introRise 900ms ease both;
}

.intro-loader strong {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
}

.intro-mark {
  width: min(280px, 72vw);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(0, 210, 255, 0.32));
  animation: logoFloat 3.2s ease-in-out infinite, logoGlow 2.6s ease-in-out infinite;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  overflow: hidden;
}

.logo-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-mark img {
  width: 54px;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.24));
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover .brand-mark img {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.42));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--border);
  color: var(--text);
  outline: none;
}

.main-nav .nav-buy {
  border-color: rgba(108, 92, 231, 0.7);
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(108, 92, 231, 0.26);
  font-weight: 800;
}

.main-nav .nav-buy:hover,
.main-nav .nav-buy:focus-visible {
  border-color: rgba(0, 210, 255, 0.58);
  background: linear-gradient(135deg, var(--primary), rgba(0, 210, 255, 0.72));
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto;
  height: 58%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(108, 92, 231, 0.32), transparent 32%),
    radial-gradient(circle at 78% 34%, rgba(0, 210, 255, 0.24), transparent 34%);
  filter: blur(18px);
  animation: heroAurora 9s ease-in-out infinite;
}

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

.hero-fx span {
  position: absolute;
  width: 2px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, 0.85), transparent);
  opacity: 0;
  transform: rotate(32deg) translateY(-120px);
  animation: lightStreak 4.8s ease-in-out infinite;
}

.hero-fx span:nth-child(1) { left: 8%; top: 12%; animation-delay: 200ms; }
.hero-fx span:nth-child(2) { left: 28%; top: 58%; animation-delay: 1.4s; }
.hero-fx span:nth-child(3) { left: 54%; top: 10%; animation-delay: 2.2s; }
.hero-fx span:nth-child(4) { left: 76%; top: 50%; animation-delay: 3s; }
.hero-fx span:nth-child(5) { left: 92%; top: 20%; animation-delay: 3.8s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(24px, 3.8vw, 56px);
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--text), var(--cyan), var(--primary), var(--text));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleSweep 5.5s ease-in-out infinite;
}

h1 span {
  display: block;
  white-space: nowrap;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.hero-slogan {
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.16;
}

.hero-text,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -80%;
  width: 52%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 500ms ease;
}

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

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(108, 92, 231, 0.34);
}

.btn-secondary {
  background: rgba(32, 34, 58, 0.8);
  border-color: var(--border);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.72);
  animation: metricPop 640ms ease both;
}

.hero-metrics div:nth-child(2) {
  animation-delay: 120ms;
}

.hero-metrics div:nth-child(3) {
  animation-delay: 240ms;
}

.hero-metrics dt {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1px solid rgba(0, 210, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(23, 24, 43, 0.68);
  color: var(--muted);
  font-size: 13px;
  animation: proofNudge 4.5s ease-in-out infinite;
}

.hero-proof span:nth-child(2) {
  animation-delay: 650ms;
}

.hero-proof span:nth-child(3) {
  animation-delay: 1.3s;
}

.hero-proof b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.1);
}

.dashboard-shell,
.contrast-card,
.feature-card,
.insight-panel,
.preview-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.dashboard-shell {
  overflow: hidden;
  min-height: 620px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.dashboard-shell:hover {
  border-color: rgba(0, 210, 255, 0.45);
}

.program-preview {
  position: relative;
  min-height: 620px;
  background: #0d0f20;
  animation: heroFloat 7s ease-in-out infinite, previewBoot 900ms cubic-bezier(0.17, 0.84, 0.28, 1) both;
}

.program-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 42%, transparent 52% 100%);
  transform: translateX(-120%);
  animation: screenShine 4.8s ease-in-out 1.1s infinite;
}

.program-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(0, 210, 255, 0.18);
  box-shadow: inset 0 0 38px rgba(0, 210, 255, 0.08);
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(0, 210, 255, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 16, 32, 0.8);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.command-palette {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 6;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 238px;
  border: 1px solid rgba(0, 210, 255, 0.36);
  border-radius: 8px;
  padding: 12px;
  background: rgba(15, 16, 32, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  animation: commandFloat 5.2s ease-in-out infinite;
}

.command-palette span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--primary);
  color: var(--text);
  font-weight: 900;
}

.command-palette strong {
  font-size: 13px;
}

.command-palette em {
  color: var(--cyan);
  font-size: 12px;
  font-style: normal;
}

.badge-one {
  top: -18px;
  right: 18px;
}

.badge-two {
  left: 18px;
  bottom: -18px;
  animation-delay: 1.2s;
}

.desktop-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0 12px;
  background: #eee8df;
  color: #080914;
  font-size: 12px;
}

.desktop-titlebar span {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.program-stage {
  display: grid;
  grid-template-columns: 106px 1fr;
  min-height: 590px;
  color: var(--text);
}

.program-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 8px;
  border-right: 1px solid var(--border);
  background: #101123;
}

.program-logo {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-align: center;
}

.program-logo img {
  width: 76px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.24));
  animation: logoBreath 4s ease-in-out infinite;
}

.program-logo span {
  color: var(--muted);
  font-size: 10px;
}

.program-nav button,
.program-actions button,
.vehicle-form button {
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--panel-2);
  color: var(--text);
  min-height: 28px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.program-nav button:hover,
.program-actions button:hover,
.vehicle-form button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 210, 255, 0.5);
}

.program-nav button.active {
  background: var(--primary);
}

.business-status {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 10px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 9px;
}

.business-status strong {
  color: var(--success);
}

.business-status em {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-style: normal;
}

.business-status b {
  color: var(--cyan);
}

.business-status i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--primary));
  animation: statusLine 3s ease-in-out infinite;
}

.program-main {
  min-width: 0;
  padding: 12px;
}

.program-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.program-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.program-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.program-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-actions span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 10px;
}

.program-actions b {
  color: var(--cyan);
}

.program-actions button:first-of-type {
  min-width: 90px;
  background: var(--primary);
}

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

.program-kpis article {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--panel-2);
  padding: 8px;
  transform: translateY(10px);
  animation: kpiEnter 560ms ease both;
}

.program-kpis article:nth-child(2) { animation-delay: 90ms; }
.program-kpis article:nth-child(3) { animation-delay: 180ms; }
.program-kpis article:nth-child(4) { animation-delay: 270ms; }
.program-kpis article:nth-child(5) { animation-delay: 360ms; }
.program-kpis article:nth-child(6) { animation-delay: 450ms; }

.program-kpis article:hover {
  border-color: rgba(0, 210, 255, 0.42);
}

.program-kpis small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.program-kpis strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.program-workspace {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 10px;
}

.vehicle-form,
.analytics-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #17182b;
}

.vehicle-form {
  display: grid;
  gap: 8px;
  align-content: start;
  max-height: 450px;
  overflow: hidden;
  padding: 12px;
}

.vehicle-form h3 {
  font-size: 13px;
  margin: 4px 0;
}

.vehicle-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 9px;
}

.vehicle-form label i {
  display: block;
  height: 23px;
  border: 1px solid var(--border);
  background: #101123;
}

.vehicle-form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.vehicle-form button {
  min-height: 30px;
}

.vehicle-form button.save {
  background: var(--success);
  border-color: var(--success);
}

.analytics-panel {
  min-width: 0;
  padding: 10px;
}

.tabs {
  display: flex;
  gap: 0;
  color: #080914;
  font-size: 9px;
}

.tabs span {
  padding: 5px 8px;
  border: 1px solid #c8c8d3;
  background: #f6f6f8;
}

.line-chart {
  height: 205px;
  margin-top: 8px;
  border: 7px solid #f4f5fb;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, #ffffff 0 42px, #e9ebf4 43px, #ffffff 44px);
  overflow: hidden;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.area-blue {
  fill: url(#blueFill);
}

.area-red {
  fill: rgba(217, 54, 54, 0.14);
}

.chart-blue,
.chart-red {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.5s ease 650ms forwards;
}

.chart-blue {
  stroke: #2099ff;
}

.chart-red {
  stroke: #ff4646;
  animation-delay: 850ms;
}

.point-blue,
.point-red {
  fill: #ffffff;
  stroke-width: 4;
  opacity: 0;
  animation: popPoint 420ms ease 1.8s forwards;
}

.point-blue {
  stroke: #2099ff;
}

.point-red {
  stroke: #ff4646;
}

.month-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--panel-2);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 9px;
}

.month-search i {
  width: 160px;
  height: 22px;
  border: 1px solid var(--border);
  background: #101123;
}

.month-search em {
  font-style: normal;
}

.report-table {
  margin-top: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 8.5px;
}

.report-table div {
  display: grid;
  grid-template-columns: 1fr 64px 70px 70px 70px;
  min-height: 18px;
  border-bottom: 1px solid var(--border);
}

.report-table div:first-child {
  background: var(--panel-2);
}

.report-table div:last-child {
  border-bottom: 0;
}

.report-table span,
.report-table b {
  padding: 3px 5px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--muted);
  font-size: 13px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--warning);
}

.window-bar span:nth-child(3) {
  background: var(--success);
}

.window-bar strong {
  margin-left: 10px;
  color: var(--text);
}

.live-strip {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 16, 32, 0.7);
  color: var(--muted);
  font-size: 12px;
}

.live-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  animation: statusPulse 3.6s ease-in-out infinite;
}

.live-strip span:nth-child(2) {
  animation-delay: 450ms;
}

.live-strip span:nth-child(3) {
  animation-delay: 900ms;
}

.live-strip b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(0, 184, 107, 0.42);
  animation: ping 1.9s infinite;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 574px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  background: #121426;
}

.mock-sidebar span {
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mock-sidebar .active {
  background: rgba(108, 92, 231, 0.22);
  color: var(--text);
}

.mock-sidebar span:hover {
  transform: translateX(3px);
  color: var(--text);
}

.mock-content {
  display: grid;
  gap: 16px;
  padding: 18px;
}

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

.kpi-row article,
.chart-card,
.table-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-2);
}

.kpi-row article {
  min-height: 118px;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.kpi-row article:hover,
.chart-card:hover,
.table-card:hover {
  border-color: rgba(0, 210, 255, 0.34);
  transform: translateY(-2px);
}

.kpi-row small,
.kpi-row em,
.table-head,
.preview-top {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.kpi-row strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.cyan {
  color: var(--cyan) !important;
}

.success {
  color: var(--success) !important;
}

.warning {
  color: var(--warning) !important;
}

.chart-card {
  padding: 18px;
}

.chart-head,
.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.chart-head b {
  color: var(--cyan);
}

.bar-chart,
.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 178px;
  margin-top: 22px;
  border-bottom: 1px solid var(--border);
}

.bar-chart i,
.mini-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--primary));
  transform-origin: bottom;
  animation: growBar 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.bar-chart i:nth-child(2),
.mini-chart i:nth-child(2) {
  animation-delay: 80ms;
}

.bar-chart i:nth-child(3),
.mini-chart i:nth-child(3) {
  animation-delay: 160ms;
}

.bar-chart i:nth-child(4),
.mini-chart i:nth-child(4) {
  animation-delay: 240ms;
}

.bar-chart i:nth-child(5) {
  animation-delay: 320ms;
}

.bar-chart i:nth-child(6) {
  animation-delay: 400ms;
}

.bar-chart i:nth-child(7) {
  animation-delay: 480ms;
}

.table-card {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background 160ms ease, transform 160ms ease;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row:not(.table-head):hover {
  background: rgba(108, 92, 231, 0.1);
  transform: translateX(4px);
}

.pill {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 9px;
}

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

.section-heading p {
  margin: 16px 0 0;
}

.solution-grid,
.benefit-layout,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
  padding-bottom: 52px;
}

.proof-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.82);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(0, 210, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.proof-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.44);
  background: rgba(32, 34, 58, 0.92);
}

.proof-strip article:hover::after {
  transform: translateX(120%);
}

.proof-strip span {
  color: var(--cyan);
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}

.proof-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.solution-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.solution-flow::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: flowLine 1.4s ease forwards;
}

.solution-flow article {
  position: relative;
  z-index: 1;
  min-height: 168px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 210, 255, 0.08), transparent 45%),
    rgba(23, 24, 43, 0.88);
  padding: 20px;
  transform: translateY(10px);
  animation: flowCard 620ms ease both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-flow article:nth-child(2) { animation-delay: 130ms; }
.solution-flow article:nth-child(3) { animation-delay: 260ms; }
.solution-flow article:nth-child(4) { animation-delay: 390ms; }

.solution-flow article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(108, 92, 231, 0.18), rgba(0, 210, 255, 0.08)),
    rgba(23, 24, 43, 0.98);
}

.solution-flow span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 210, 255, 0.42);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(0, 210, 255, 0.06);
}

.solution-flow strong {
  display: block;
  font-size: 17px;
}

.solution-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contrast-card {
  padding: 28px;
}

.contrast-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contrast-card li {
  border-left: 3px solid var(--danger);
  padding-left: 12px;
}

.contrast-card.accent {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.24), rgba(0, 210, 255, 0.1)), var(--panel);
}

.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.module-cloud span {
  border: 1px solid rgba(0, 210, 255, 0.38);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(15, 16, 32, 0.62);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.module-cloud span:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  background: rgba(0, 210, 255, 0.1);
}

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

.feature-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 92, 231, 0.24), transparent 42%),
    rgba(15, 16, 32, 0.88);
  box-shadow: var(--shadow);
}

.feature-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 210, 255, 0.14), transparent 18%),
    radial-gradient(circle at 88% 74%, rgba(108, 92, 231, 0.18), transparent 24%);
}

.feature-search,
.feature-showcase,
.feature-path {
  position: relative;
  z-index: 1;
}

.feature-search,
.feature-showcase {
  display: none !important;
}

.feature-search {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: rgba(23, 24, 43, 0.92);
}

.feature-search span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 210, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 44%, var(--cyan) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, var(--primary) 44% 56%, transparent 56%),
    var(--panel-2);
}

.feature-search strong {
  color: var(--muted);
  font-size: 15px;
}

.feature-search button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: var(--primary);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(108, 92, 231, 0.32);
}

.feature-modes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 0;
}

.feature-modes button,
.feature-modes span {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(32, 34, 58, 0.84);
  color: var(--muted);
  font-weight: 800;
}

.feature-modes button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.feature-modes button:hover,
.feature-modes button.active {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 255, 0.48);
  background: rgba(108, 92, 231, 0.28);
  color: var(--text);
}

.feature-modes span {
  color: var(--cyan);
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 14px;
}

.feature-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.92);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.46);
  background: rgba(32, 34, 58, 0.95);
}

.feature-panel.large {
  grid-row: span 2;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 210, 255, 0.32);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--cyan);
  font-weight: 900;
}

.feature-panel h3 {
  margin-top: 24px;
  font-size: clamp(24px, 3vw, 34px);
}

.feature-panel:not(.large) h3 {
  font-size: 24px;
}

.feature-panel p {
  color: var(--muted);
}

.feature-mini-table {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature-mini-table div {
  display: grid;
  grid-template-columns: 1fr 90px 120px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
}

.feature-mini-table div:first-child {
  background: var(--panel-2);
  color: var(--muted);
}

.feature-mini-table div:last-child {
  border-bottom: 0;
}

.feature-mini-table em {
  color: var(--success);
  font-style: normal;
  font-weight: 800;
}

.feature-mini-table strong {
  color: var(--cyan);
}

.feature-checks {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.feature-checks span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(15, 16, 32, 0.56);
  color: var(--text);
}

.feature-checks span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--success);
}

.feature-bars {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--bar), rgba(45, 48, 80, 0.9) var(--bar));
  animation: levelPulse 2.8s ease-in-out infinite;
}

.feature-path {
  position: relative;
  display: block;
  min-height: 700px;
  margin-top: 0;
}

.feature-path article {
  position: absolute;
  width: min(460px, 48%);
  min-height: 190px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.92);
  padding: 28px 32px 28px 92px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-path::before {
  display: none;
}

.feature-route {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.feature-route path {
  fill: none;
  stroke: rgba(0, 210, 255, 0.38);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 12 24;
  animation: routeDash 3.8s linear infinite, routeGlow 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.22));
}

.feature-path article:nth-of-type(1) {
  top: 64px;
  right: 7%;
}

.feature-path article:nth-of-type(2) {
  top: 292px;
  left: 2%;
}

.feature-path article:nth-of-type(3) {
  right: 7%;
  bottom: 24px;
}

.feature-path article:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 210, 255, 0.52);
  background: rgba(32, 34, 58, 0.96);
}

.feature-path span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.feature-path span::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 210, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 210, 255, 0.18), rgba(108, 92, 231, 0.14)),
    var(--panel-2);
  box-shadow: 0 0 0 7px rgba(0, 210, 255, 0.05);
}

.feature-path strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.feature-path p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 210, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(0, 210, 255, 0.55) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, rgba(108, 92, 231, 0.7) 44% 56%, transparent 56%),
    rgba(32, 34, 58, 0.92);
  opacity: 0.88;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.feature-card:hover,
.feature-card.is-selected {
  border-color: rgba(0, 210, 255, 0.46);
  background: linear-gradient(145deg, rgba(108, 92, 231, 0.15), rgba(23, 24, 43, 0.92));
  transform: translateY(-5px);
}

.feature-card:hover::before,
.feature-card.is-selected::before {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.18);
}

.feature-card.is-selected p {
  color: var(--text);
}

.workflow-lab {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.54fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid rgba(0, 210, 255, 0.24);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.18), rgba(0, 210, 255, 0.07)),
    rgba(23, 24, 43, 0.9);
  box-shadow: var(--shadow);
}

.workflow-lab h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.workflow-lab p:not(.eyebrow) {
  color: var(--muted);
}

.workflow-stack {
  display: grid;
  gap: 10px;
}

.workflow-stack button {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(32, 34, 58, 0.82);
  color: var(--text);
  padding: 14px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.workflow-stack button:hover,
.workflow-stack button.active {
  transform: translateX(5px);
  border-color: rgba(0, 210, 255, 0.5);
  background: rgba(108, 92, 231, 0.34);
}

.workflow-output {
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.workflow-output span {
  color: var(--cyan);
  font-weight: 800;
}

.workflow-output strong {
  display: block;
  margin-top: 10px;
  color: var(--success);
  font-size: 46px;
  line-height: 1;
}

.workflow-output small {
  margin-top: 8px;
  color: var(--muted);
}

.feature-card:hover::after,
.feature-card.is-selected::after {
  transform: scaleX(1);
}

.feature-card span {
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}

.feature-card h3 {
  margin-top: 34px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 64px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(32, 34, 58, 0.74);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-list article:hover {
  transform: translateX(5px);
  border-color: rgba(0, 184, 107, 0.45);
  background: rgba(32, 34, 58, 0.95);
}

.benefit-list b {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.1);
}

.insight-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 36px;
  text-align: center;
}

.insight-panel p,
.insight-panel small {
  color: var(--muted);
}

.insight-panel strong {
  font-size: 28px;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding-top: 48px;
}

.impact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
  min-width: 0;
}

.impact-grid article {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.9);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.impact-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.45);
}

.impact-grid span {
  color: var(--muted);
  font-size: 13px;
}

.impact-grid strong {
  display: block;
  margin: 8px 0 16px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 0.95;
  color: var(--text);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
}

.impact-grid i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--level), rgba(45, 48, 80, 0.72) var(--level));
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.14);
  animation: levelPulse 2.8s ease-in-out infinite;
}

.radial {
  display: grid;
  place-items: center;
  width: min(270px, 72vw);
  aspect-ratio: 1;
  margin: 24px 0;
  border-radius: 50%;
  background: conic-gradient(var(--success) 0 var(--radial-value, 0%), var(--border) var(--radial-value, 0%) 100%);
  transition: --radial-value 900ms ease;
}

.radial span {
  display: grid;
  place-items: center;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 42px;
  font-weight: 800;
}

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

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}

.preview-tabs button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(32, 34, 58, 0.8);
  color: var(--muted);
  padding: 9px 14px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.preview-tabs button:hover,
.preview-tabs button.is-active {
  color: var(--text);
  border-color: rgba(0, 210, 255, 0.48);
  background: rgba(108, 92, 231, 0.22);
  transform: translateY(-2px);
}

.preview-card {
  display: none;
  min-height: 520px;
  padding: 18px;
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.preview-card.is-active-preview {
  display: block;
  animation: previewSwap 340ms ease both;
}

.preview-card.is-focused {
  border-color: rgba(0, 210, 255, 0.52);
  transform: translateY(-6px);
}

.preview-grid.has-focus .preview-card:not(.is-focused) {
  opacity: 0.58;
  filter: saturate(0.8);
}

.preview-card.large {
  min-height: 560px;
}

.preview-top b {
  min-width: 74px;
  min-height: 24px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(0, 210, 255, 0.34);
  color: var(--cyan);
  text-align: center;
  font-size: 11px;
}

.preview-screen {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 508px;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: 8px;
  background: #101123;
}

.preview-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  background: #0f1020;
}

.preview-logo {
  width: 86px;
  max-height: 56px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.25));
}

.preview-side span {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 9px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.preview-side span:hover,
.preview-side span.active {
  border-color: rgba(0, 210, 255, 0.5);
  background: var(--primary);
  color: var(--text);
  transform: translateX(4px);
}

.preview-main {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

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

.preview-kpis article,
.report-summary article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-2);
  padding: 14px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.preview-kpis article:hover,
.report-summary article:hover {
  border-color: rgba(0, 210, 255, 0.45);
  transform: translateY(-3px);
}

.preview-kpis small,
.report-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.preview-kpis strong,
.report-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.preview-workbench,
.invoice-preview-grid,
.report-preview-grid {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 14px;
  min-height: 330px;
}

.preview-form,
.preview-list,
.invoice-document,
.invoice-actions,
.report-chart,
.report-summary {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #17182b;
}

.preview-form {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
}

.preview-form h3,
.invoice-actions h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.preview-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.preview-form label span {
  height: 30px;
  border: 1px solid var(--border);
  background: #101123;
}

.preview-form button,
.invoice-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  background: var(--success);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.preview-list {
  align-self: stretch;
  overflow: hidden;
}

.preview-list div {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr 0.6fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.preview-list div:first-child {
  background: var(--panel-2);
  color: var(--muted);
}

.preview-list div:last-child {
  border-bottom: 0;
}

.preview-list em {
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 8px;
  font-style: normal;
  font-size: 11px;
}

.invoice-preview-grid {
  grid-template-columns: 0.62fr 0.38fr;
}

.invoice-document {
  padding: 22px;
  background: #f5f6fa;
  color: #17182b;
}

.invoice-document header,
.invoice-document footer,
.invoice-document div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.invoice-document header {
  margin-bottom: 28px;
  color: var(--primary);
}

.invoice-document p {
  margin: 0 0 20px;
}

.invoice-document div {
  border-top: 1px solid #d8dbea;
  padding: 14px 0;
}

.invoice-document footer {
  margin-top: 26px;
  border-top: 3px solid var(--primary);
  padding-top: 16px;
  font-size: 20px;
}

.invoice-actions {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.invoice-actions button {
  background: var(--primary);
}

.invoice-actions button:nth-of-type(2) {
  background: var(--cyan);
  color: #07101a;
}

.export-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--success);
  font-size: 13px;
}

.export-status i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(0, 184, 107, 0.42);
  animation: ping 1.8s infinite;
}

.report-preview-grid {
  grid-template-columns: 1fr 230px;
}

.report-chart {
  min-height: 270px;
  border: 8px solid #f5f6fa;
  background: repeating-linear-gradient(0deg, #fff 0 45px, #e8ebf5 46px, #fff 47px);
}

.report-chart svg {
  width: 100%;
  height: 100%;
}

.report-summary {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.report-mini-table {
  display: grid;
  grid-template-columns: 1fr 130px 130px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
}

.report-mini-table span,
.report-mini-table b {
  min-height: 36px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  background: #17182b;
}

.report-mini-table b {
  text-align: right;
}

.micro-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.micro-features button,
.micro-features span {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(32, 34, 58, 0.76);
  color: var(--muted);
  font-weight: 700;
}

.micro-features button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.micro-features button:hover,
.micro-features button.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 255, 0.5);
  background: rgba(0, 210, 255, 0.12);
  color: var(--text);
}

.micro-features span {
  border-color: rgba(0, 184, 107, 0.42);
  color: var(--success);
}

.mock-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mock-list i {
  display: block;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.22), rgba(32, 34, 58, 0.92));
  background-size: 220% 100%;
  animation: shimmer 2.5s linear infinite;
}

.preview-program-mini {
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 300px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #101123;
}

.preview-program-mini aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
}

.preview-program-mini aside b {
  color: var(--cyan);
  text-align: center;
  font-size: 24px;
}

.preview-program-mini aside span {
  height: 28px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}

.preview-program-mini aside span:first-of-type {
  background: var(--primary);
}

.preview-program-mini main {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mini-kpis i {
  height: 48px;
  border-radius: 8px;
  background: var(--panel-2);
}

.mini-work {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 12px;
}

.mini-work section {
  min-height: 210px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #17182b;
  padding: 12px;
}

.mini-work section:first-child {
  display: grid;
  gap: 9px;
  align-content: start;
}

.mini-work i {
  height: 25px;
  border: 1px solid var(--border);
  background: #101123;
}

.mini-work button {
  height: 32px;
  border: 0;
  background: var(--success);
}

.mini-work svg {
  width: 100%;
  height: 100%;
  border: 6px solid #f5f6fa;
  border-radius: 6px;
  background: #ffffff;
}

.mini-work path {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawLine 1.3s ease forwards;
}

.mini-work path:first-child {
  stroke: #2099ff;
}

.mini-work path:last-child {
  stroke: #ff4646;
  animation-delay: 200ms;
}

.invoice-lines {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.invoice-lines i,
.invoice-lines strong {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: var(--panel-2);
  position: relative;
  overflow: hidden;
}

.invoice-lines i::after,
.invoice-lines strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.18), transparent);
  transform: translateX(-100%);
  animation: sweep 2.4s ease-in-out infinite;
}

.invoice-lines i:nth-child(2) {
  width: 76%;
}

.invoice-lines i:nth-child(3) {
  width: 88%;
}

.invoice-lines strong {
  width: 48%;
  height: 42px;
  margin-top: 28px;
  background: rgba(108, 92, 231, 0.5);
}

.mini-chart {
  height: 214px;
  margin-top: 34px;
}

.preview-card.large .mini-chart,
.preview-card.large .invoice-lines {
  min-height: 286px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label,
.contact-form .full {
  grid-column: span 2;
}

.contact-form label:not(.full) {
  grid-column: span 1;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
}

.contact-form label {
  transition: transform 160ms ease;
}

.contact-form label:focus-within {
  transform: translateY(-2px);
}

.form-note {
  grid-column: span 2;
  margin: 0;
  min-height: 24px;
  color: var(--success);
}

.legal-section {
  scroll-margin-top: 92px;
  padding-top: 58px;
}

.legal-page {
  min-height: calc(100vh - 76px);
}

.legal-hero {
  padding-bottom: 28px;
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.legal-main {
  grid-column: span 2;
}

.legal-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-data {
  display: grid;
  gap: 8px;
}

.legal-data strong {
  color: var(--text);
}

.legal-note {
  grid-column: span 2;
  border: 1px solid rgba(255, 176, 32, 0.34);
  border-radius: 8px;
  background: rgba(255, 176, 32, 0.08);
  color: var(--muted);
  padding: 22px;
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--warning);
}

.legal-accordion {
  display: grid;
  gap: 12px;
}

.legal-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.legal-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cyan);
  transition: transform 160ms ease, background 160ms ease;
}

.legal-card[open] summary::after {
  content: "-";
  background: rgba(0, 210, 255, 0.1);
}

.legal-card[open] {
  border-color: rgba(0, 210, 255, 0.42);
}

.legal-card h3 {
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.legal-links {
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 48, 80, 0.65);
  color: var(--muted);
  font-size: 14px;
}

.legal-links a {
  transition: color 160ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.footer-brand img {
  width: 64px;
  max-height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.2));
}

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

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

@keyframes growBar {
  from {
    transform: scaleY(0.12);
    opacity: 0.38;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 184, 107, 0.42);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 184, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 107, 0);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes shimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 22px rgba(0, 210, 255, 0.24));
  }
  50% {
    filter: drop-shadow(0 0 38px rgba(108, 92, 231, 0.42));
  }
}

@keyframes logoBreath {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.2));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 18px rgba(108, 92, 231, 0.32));
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes screenShine {
  0%,
  48% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popPoint {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes statusLine {
  0%,
  100% {
    transform: scaleX(0.68);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes flowLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes flowCard {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroAurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(3%, -4%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes lightStreak {
  0% {
    opacity: 0;
    transform: rotate(32deg) translateY(-160px);
  }
  18% {
    opacity: 0.9;
  }
  46%,
  100% {
    opacity: 0;
    transform: rotate(32deg) translateY(360px);
  }
}

@keyframes titleSweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes previewBoot {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(7deg) rotateY(-8deg) translateY(28px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0) rotateY(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes proofNudge {
  0%,
  100% {
    transform: translateX(0);
    border-color: rgba(0, 210, 255, 0.22);
  }
  50% {
    transform: translateX(5px);
    border-color: rgba(0, 210, 255, 0.42);
  }
}

@keyframes commandFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1.02);
  }
}

@keyframes levelPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}

@keyframes dashDrift {
  to {
    background-position: 80px 0;
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes routeGlow {
  0%,
  100% {
    stroke: rgba(0, 210, 255, 0.26);
  }
  50% {
    stroke: rgba(0, 210, 255, 0.62);
  }
}

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

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

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .solution-grid,
  .benefit-layout,
  .preview-grid,
  .proof-strip,
  .workflow-lab,
  .feature-showcase,
  .feature-path,
  .impact-section,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-main,
  .legal-note {
    grid-column: span 1;
  }

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

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

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

  .feature-path {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .feature-path::before {
    display: none;
  }

  .feature-route {
    display: none;
  }

  .feature-path article,
  .feature-path article:nth-of-type(1),
  .feature-path article:nth-of-type(2),
  .feature-path article:nth-of-type(3) {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .feature-panel.large {
    grid-row: auto;
  }

  .dashboard-shell {
    min-height: 0;
  }

  .program-stage {
    grid-template-columns: 96px 1fr;
  }

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

  .program-workspace {
    grid-template-columns: 1fr;
  }

  .vehicle-form {
    display: none;
  }

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

  .preview-screen,
  .preview-workbench,
  .invoice-preview-grid,
  .report-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-side {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .preview-logo {
    display: none;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel);
  }

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

  .section {
    width: min(100% - 24px, 1180px);
    padding: 64px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-metrics,
  .kpi-row,
  .feature-grid,
  .solution-flow,
  .feature-search,
  .feature-mini-table div,
  .feature-path,
  .impact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-search button {
    width: 100%;
  }

  .feature-modes button,
  .feature-modes span {
    width: 100%;
    text-align: center;
  }

  .impact-grid strong {
    font-size: clamp(30px, 12vw, 46px);
  }

  h1 {
    font-size: clamp(42px, 16vw, 68px);
  }

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

  .program-preview {
    min-height: 0;
  }

  .floating-badge {
    display: none;
  }

  .command-palette {
    display: none;
  }

  .program-stage {
    grid-template-columns: 1fr;
  }

  .program-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .business-status {
    display: none;
  }

  .program-head {
    display: grid;
  }

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

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

  .line-chart {
    height: 180px;
  }

  .month-search,
  .report-table {
    display: none;
  }

  .preview-program-mini {
    grid-template-columns: 1fr;
  }

  .preview-program-mini aside {
    display: none;
  }

  .mini-work {
    grid-template-columns: 1fr;
  }

  .mini-work section:first-child {
    display: none;
  }

  .preview-card,
  .preview-card.large {
    min-height: 0;
  }

  .preview-main {
    padding: 12px;
  }

  .preview-list {
    overflow-x: auto;
  }

  .preview-list div {
    min-width: 620px;
  }

  .invoice-document {
    padding: 16px;
  }

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

  .report-mini-table b {
    text-align: left;
  }

  .micro-features button,
  .micro-features span {
    width: 100%;
    justify-content: center;
  }

  .mock-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 86px;
    padding: 12px;
  }

  .contact-form label,
  .contact-form label:not(.full),
  .contact-form .full,
  .form-note {
    grid-column: span 1;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mock-sidebar {
    grid-template-columns: 1fr;
  }
}
