:root {
  --bg: #02050b;
  --bg-soft: #0a1322;
  --surface: rgba(12, 22, 37, 0.72);
  --surface-strong: rgba(18, 33, 55, 0.9);
  --line: rgba(179, 221, 255, 0.24);
  --text: #f4f9ff;
  --text-soft: #a2b6d2;
  --cyan: #86ecff;
  --mint: #9ef8d7;
  --blue: #7db1ff;
  --danger: #ff8ea1;
  --radius: 20px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
}

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

@media (min-width: 981px) {
  .signal-track {
    animation: signalFlow 24s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora,
  .signal-track,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -10%, rgba(88, 167, 255, 0.28), transparent 35%),
    radial-gradient(circle at 90% 6%, rgba(109, 255, 216, 0.18), transparent 32%),
    linear-gradient(160deg, #04070f 0%, #02050b 48%, #030a14 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.aurora {
  position: fixed;
  width: 56vw;
  height: 56vw;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
  animation: drift 18s ease-in-out infinite;
}

.aurora-a {
  left: -12vw;
  top: -10vw;
  background: radial-gradient(circle at 40% 40%, rgba(122, 221, 255, 0.8), rgba(122, 221, 255, 0));
}

.aurora-b {
  right: -12vw;
  bottom: 8vh;
  animation-delay: 4s;
  background: radial-gradient(circle at 60% 60%, rgba(147, 255, 209, 0.85), rgba(147, 255, 209, 0));
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1360px, 96vw);
  margin: 0 auto;
  padding: 12px clamp(16px, 2vw, 24px);
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, rgba(11, 18, 30, 0.9), rgba(8, 14, 24, 0.82));
  border: 1px solid rgba(174, 222, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
}

.brand {
  font-family: "Syne", sans-serif;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 22px rgba(125, 228, 255, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(157, 205, 243, 0.24);
}

.nav a,
.header-cta {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: 220ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.client-access-pill {
  text-decoration: none;
  color: #d7f2ff;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(149, 207, 251, 0.4);
  background: linear-gradient(120deg, rgba(16, 32, 52, 0.9), rgba(12, 24, 42, 0.86));
  border-radius: 999px;
  padding: 9px 13px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.client-access-pill:hover {
  border-color: rgba(145, 225, 255, 0.72);
  box-shadow: 0 12px 24px rgba(71, 153, 211, 0.28);
  transform: translateY(-1px);
}

.client-access-pill.is-connected {
  border-color: rgba(132, 243, 199, 0.72);
  color: #dfffee;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(12, 18, 31, 0.65);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  cursor: pointer;
}

.nav a:hover,
.header-cta:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(134, 236, 255, 0.35);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 18, 30, 0.72);
}

.section {
  width: min(1160px, 94vw);
  margin: 0 auto;
  padding: clamp(52px, 9vw, 104px) 0;
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8% -10% auto -10%;
  height: 66%;
  background: radial-gradient(circle at 40% 26%, rgba(128, 230, 255, 0.22), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  margin-top: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff, #d8ebff 55%, #9ff7da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: #b6c8e1;
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.06rem;
}

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

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 260ms ease, border-color 220ms ease;
}

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

.btn.primary {
  color: #041019;
  background: linear-gradient(120deg, #a6ffe2, #8eeeff 48%, #8daeff 100%);
  box-shadow: 0 14px 32px rgba(126, 227, 255, 0.32);
}

.btn.ghost {
  border-color: rgba(179, 221, 255, 0.35);
  color: #dbe8fb;
  background: rgba(12, 19, 32, 0.82);
}

.hero-panel {
  border: 1px solid rgba(173, 218, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(17, 30, 50, 0.96), rgba(10, 16, 27, 0.92));
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform 260ms ease;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(170, 222, 255, 0.11), transparent 46%);
  pointer-events: none;
}

.panel-title {
  margin: 0 0 12px;
  color: var(--mint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.signal-strip {
  padding-top: 0;
}

.signal-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(10, 16, 26, 0.72);
  width: max-content;
  min-width: 100%;
}

.signal-track span {
  font-size: 0.78rem;
  color: var(--text-soft);
  border: 1px solid rgba(165, 211, 255, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.experience-copy,
.experience-panel,
.steps-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.experience-copy {
  padding: 22px;
}

.experience-copy p,
.experience-copy li {
  color: var(--text-soft);
}

.experience-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.experience-panel {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.experience-panel::before {
  content: "";
  position: absolute;
  inset: auto -35% -50% -35%;
  height: 70%;
  background: radial-gradient(circle, rgba(111, 171, 255, 0.25), transparent 70%);
}

.xp-title {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xp-rows {
  display: grid;
  gap: 10px;
}

.xp-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(172, 214, 255, 0.24);
  border-radius: 12px;
  background: rgba(10, 15, 24, 0.7);
}

.xp-rows span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.xp-rows strong {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stats-grid article {
  border: 1px solid rgba(155, 194, 255, 0.2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(10, 16, 26, 0.8);
}

.stats-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.stats-grid strong {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  letter-spacing: -0.01em;
}

.demo-shell {
  border: 1px solid rgba(173, 217, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(16, 27, 44, 0.96), rgba(9, 15, 25, 0.92));
  padding: 20px;
  box-shadow: 0 18px 56px rgba(2, 10, 20, 0.45);
}

.demo-tabs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid rgba(160, 208, 255, 0.34);
  background: rgba(12, 20, 33, 0.92);
  color: #c5d4e9;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.demo-tab.active {
  color: #041019;
  background: linear-gradient(120deg, var(--mint), var(--cyan));
  border-color: transparent;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-reality-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow: auto;
  padding: 2px 0 10px;
  margin-bottom: 10px;
}

.demo-reality-strip span {
  border: 1px solid rgba(157, 208, 255, 0.32);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  color: #d8e7ff;
  background: rgba(11, 19, 31, 0.92);
}

.demo-card {
  border: 1px solid rgba(168, 214, 255, 0.28);
  border-radius: 16px;
  background: rgba(11, 18, 29, 0.96);
  padding: 14px;
}

.demo-card-title {
  margin: 0 0 11px;
  color: #8cf7cf;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-console-body {
  margin: 0;
  min-height: 220px;
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #e8f1ff;
  white-space: pre-wrap;
}

.demo-panel-card {
  position: relative;
  overflow: hidden;
}

.demo-panel-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -55% -25%;
  height: 70%;
  background: radial-gradient(circle, rgba(111, 169, 255, 0.24), transparent 70%);
}

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

.demo-kpis div {
  border: 1px solid rgba(157, 208, 255, 0.24);
  border-radius: 10px;
  padding: 10px;
  background: rgba(10, 15, 24, 0.78);
}

.demo-kpis span {
  display: block;
  color: #9eb1ca;
  font-size: 0.8rem;
}

.demo-kpis strong {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
}

.demo-caption {
  margin: 12px 0 0;
  color: #d4e5ff;
  font-size: 0.94rem;
}

.demo-timeline {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #d6e5ff;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.demo-embed-preview {
  margin: 8px 0 0;
  border: 1px solid rgba(157, 208, 255, 0.22);
  border-radius: 10px;
  background: rgba(7, 12, 20, 0.82);
  color: #dce8ff;
  padding: 10px;
  font-size: 0.87rem;
  white-space: pre-wrap;
  line-height: 1.5;
}

.features-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.feature-card,
.plan-card,
.faq-grid article,
.lead-form {
  border: 1px solid rgba(175, 220, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(15, 24, 40, 0.86), rgba(10, 17, 28, 0.8));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.feature-card,
.plan-card,
.faq-grid article,
.steps-grid article {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.plan-card:hover,
.faq-grid article:hover,
.steps-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(165, 229, 255, 0.44);
  box-shadow: 0 20px 40px rgba(4, 12, 24, 0.42);
}

.feature-card {
  padding: 18px;
}

.feature-card h3 {
  font-size: 1.2rem;
}

.feature-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

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

.plan-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -45% -40%;
  height: 80%;
  background: radial-gradient(circle, rgba(117, 220, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.plan-badge {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--cyan);
}

.plan-card h3 {
  margin-top: 14px;
  font-size: 1.4rem;
}

.plan-price {
  margin: 8px 0;
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
}

.plan-price small {
  font-family: "Manrope", sans-serif;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.consent-field {
  margin-top: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid rgba(166, 209, 255, 0.45);
  border-radius: 4px;
  background: rgba(12, 18, 31, 0.9);
  appearance: auto;
  display: inline-block;
  flex: 0 0 18px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.checkbox-row span {
  flex: 1;
}

.form-legal {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.privacy-link {
  display: inline-block;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9rem;
}

.privacy-link:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 40;
  border: 1px solid rgba(174, 222, 255, 0.26);
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.46);
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(2, 6, 12, 0.7);
  display: grid;
  place-items: center;
  padding: 14px;
}

.cookie-modal-card {
  width: min(520px, 96vw);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.98);
  padding: 18px;
}

.cookie-modal-card h3 {
  margin: 0 0 8px;
}

.cookie-modal-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.site-footer {
  display: grid;
  gap: 6px;
}

.admin-main {
  width: min(1100px, 94vw);
  margin: 30px auto 90px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-head p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.admin-actions {
  display: inline-flex;
  gap: 10px;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.admin-kpi-card {
  border: 1px solid rgba(159, 205, 255, 0.24);
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.84);
  padding: 14px;
}

.admin-kpi-card h2 {
  margin: 8px 0 0;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  margin-bottom: 14px;
}

.admin-panel h3 {
  margin: 0 0 12px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-panel-head h3 {
  margin: 0;
}

.admin-inline-actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ops-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(156, 205, 255, 0.32);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(9, 16, 27, 0.72);
  color: #dbe6f7;
}

.status-operational {
  border-color: rgba(158, 248, 215, 0.65);
  color: #b8ffe7;
  box-shadow: 0 0 0 3px rgba(116, 255, 204, 0.12);
}

.status-partial {
  border-color: rgba(255, 227, 166, 0.58);
  color: #ffe7b3;
}

.status-degraded,
.status-down {
  border-color: rgba(255, 142, 161, 0.62);
  color: #ffd0d9;
}

.status-disabled,
.status-unknown {
  border-color: rgba(170, 188, 214, 0.42);
  color: #cfdbec;
}

.ops-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.ops-service-card {
  border: 1px solid rgba(159, 205, 255, 0.24);
  border-radius: 12px;
  background: rgba(8, 14, 24, 0.75);
  padding: 11px;
  display: grid;
  gap: 6px;
}

.ops-service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.ops-service-card strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.ops-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.ops-alert-card {
  border: 1px solid rgba(159, 205, 255, 0.22);
  border-radius: 14px;
  padding: 12px;
  background: rgba(8, 14, 24, 0.82);
}

.ops-alert-card h4 {
  margin: 6px 0;
  font-size: 1.03rem;
}

.lockout-stable {
  border-color: rgba(158, 248, 215, 0.36);
}

.lockout-warning {
  border-color: rgba(255, 227, 166, 0.58);
  background: rgba(44, 31, 10, 0.44);
}

.lockout-critical {
  border-color: rgba(255, 142, 161, 0.62);
  background: rgba(58, 18, 26, 0.45);
}

.admin-table-wrap {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(159, 205, 255, 0.22);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(156, 205, 255, 0.14);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--text-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-table td {
  color: var(--text);
  font-size: 0.92rem;
}

.admin-empty {
  margin: 0;
  padding: 20px;
  color: var(--text-soft);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(147, 217, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 13, 22, 0.88);
  backdrop-filter: blur(10px);
  padding: 9px 10px 9px 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.sticky-cta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.sticky-cta .btn {
  padding: 9px 14px;
  font-size: 0.84rem;
}

.plan-card p,
.plan-card li {
  color: var(--text-soft);
}

.plan-card ul {
  padding-left: 18px;
}

.trust-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.trust-kpis article,
.testimonial-grid article {
  border: 1px solid rgba(175, 220, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(15, 24, 40, 0.86), rgba(10, 17, 28, 0.8));
  backdrop-filter: blur(12px);
}

.trust-kpis article {
  padding: 14px;
}

.trust-kpis p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.trust-kpis strong {
  display: block;
  margin-top: 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-grid article {
  padding: 16px;
}

.testimonial-grid p {
  margin: 0;
  color: #dbe8fb;
}

.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--mint);
  font-size: 0.88rem;
}

.logo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow: auto;
  padding-bottom: 6px;
}

.logo-strip span {
  border: 1px solid rgba(165, 211, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  white-space: nowrap;
  color: var(--text-soft);
  background: rgba(10, 16, 26, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.comparison-wrap {
  border: 1px solid rgba(175, 220, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(15, 24, 40, 0.86), rgba(10, 17, 28, 0.8));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  overflow: auto;
}

.comparison-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(156, 205, 255, 0.14);
  padding: 12px 14px;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  color: var(--text-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table td {
  color: var(--text);
  font-size: 0.94rem;
}

.comparison-table .recommended {
  background: linear-gradient(180deg, rgba(130, 217, 255, 0.12), rgba(130, 217, 255, 0.04));
}

.comparison-table th.recommended span {
  display: inline-block;
  margin-left: 6px;
  border: 1px solid rgba(125, 228, 255, 0.5);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--cyan);
  font-size: 0.68rem;
}

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

.faq-grid article {
  padding: 18px;
}

.faq-grid p {
  color: var(--text-soft);
}

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

.steps-grid article {
  padding: 16px;
}

.steps-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(169, 214, 255, 0.3);
  color: var(--cyan);
  font-size: 0.8rem;
}

.steps-grid h3 {
  margin-top: 12px;
  font-size: 1.1rem;
}

.steps-grid p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.lead-form {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-soft);
  font-size: 0.86rem;
}

input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
  background: var(--surface-strong);
  border: 1px solid rgba(166, 209, 255, 0.24);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--text);
  font-family: inherit;
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(125, 228, 255, 0.4);
  border-color: rgba(125, 228, 255, 0.8);
}

.form-status {
  margin: 0;
  color: var(--mint);
  grid-column: 1 / -1;
}

.hidden {
  display: none !important;
}

.checkout-main {
  width: min(1100px, 94vw);
  margin: 30px auto 90px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-card {
  border: 1px solid rgba(175, 220, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(15, 24, 40, 0.9), rgba(10, 17, 28, 0.84));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  padding: 24px;
}

.checkout-card h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-top: 10px;
}

.checkout-lead {
  color: var(--text-soft);
}

.checkout-plan-box {
  border: 1px solid rgba(157, 208, 255, 0.26);
  border-radius: 14px;
  background: rgba(10, 16, 26, 0.75);
  padding: 14px;
}

.checkout-plan-box p {
  margin: 0;
  color: var(--text);
}

.checkout-plan-box p + p {
  margin-top: 8px;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-details {
  border: 1px solid rgba(157, 208, 255, 0.26);
  border-radius: 14px;
  background: rgba(10, 16, 26, 0.75);
  padding: 14px;
  margin: 10px 0 18px;
}

.checkout-details p {
  margin: 0;
  color: var(--text-soft);
}

.checkout-details p + p {
  margin-top: 8px;
}

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 20px;
}

.auth-panel {
  border: 1px solid rgba(157, 208, 255, 0.24);
  border-radius: 14px;
  background: rgba(10, 16, 26, 0.68);
  padding: 14px;
}

.auth-panel h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border-color: rgba(150, 206, 255, 0.3);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: -26% 35% auto -20%;
  height: 240px;
  background: radial-gradient(circle, rgba(126, 216, 255, 0.2), rgba(126, 216, 255, 0));
  pointer-events: none;
}

.download-head {
  position: relative;
  z-index: 1;
}

.download-head .eyebrow {
  margin-bottom: 6px;
}

.download-head h1 {
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.download-head .checkout-lead {
  margin-top: 14px;
  max-width: 52ch;
}

.portal-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.portal-tabs .btn {
  min-width: 0;
}

.download-details {
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(142deg, rgba(8, 15, 25, 0.55), rgba(6, 11, 19, 0.38));
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.download-details p {
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: 0.98rem;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(124, 175, 217, 0.24);
}

.download-details p:nth-last-child(-n + 2) {
  border-bottom-color: rgba(124, 175, 217, 0.12);
}

.download-details p span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #8fb4d8;
}

.download-details p strong {
  font-size: 1.02rem;
  color: #e8f4ff;
}

.release-panel {
  margin: 18px 0 22px;
  border: 0;
  border-top: 1px solid rgba(129, 186, 231, 0.3);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 16px 0 0;
}

.release-head h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
}

.release-head .checkout-lead {
  margin: 0;
  color: #9db6d3;
}

.release-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 14px;
  align-items: start;
}

.release-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.release-card h3 {
  margin: 10px 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.2;
}

.release-card p {
  margin: 0;
}

.release-badge {
  margin: 0;
  color: #98f3d6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-card-official {
  position: relative;
  overflow: visible;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.release-card-official .btn {
  margin-top: 20px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 22px rgba(104, 208, 255, 0.22);
}

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

.customer-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.portal-inline-form {
  margin-top: 12px;
}

.portal-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.plans-summary-actions {
  margin-top: 12px;
  align-items: center;
}

.plans-cancel-hint {
  color: #9ca3af;
  font-size: 0.84rem;
}

.portal-inline-actions .btn {
  margin-top: 0;
}

#licensePanel {
  border: 1px solid rgba(130, 206, 255, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(150deg, rgba(13, 22, 36, 0.78), rgba(9, 16, 27, 0.62));
}

#licensePanel p {
  margin-top: 8px;
  color: #b8cde5;
}

.release-card-legacy {
  padding-left: 0;
}

.release-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.release-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(127, 179, 221, 0.24);
  border-radius: 0;
  padding: 10px 0;
  color: #b2c7de;
  background: transparent;
}

.release-list li > div {
  min-width: 0;
}

.release-list li:last-child {
  border-bottom-color: rgba(127, 179, 221, 0.14);
}

.release-list strong {
  font-family: "Syne", sans-serif;
  color: var(--text);
  letter-spacing: -0.01em;
  font-size: 1.02rem;
}

.release-list a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 700;
}

.release-list a:hover {
  text-decoration: underline;
}

.release-chip {
  font-size: 0.72rem;
  color: #9fb7d2;
  border: 1px solid rgba(116, 160, 201, 0.24);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(10, 18, 30, 0.46);
}

.client-body {
  min-height: 100vh;
}

.client-topbar {
  width: min(1700px, 96vw);
  margin: 14px auto 6px;
  padding: 12px 16px;
  border: 1px solid rgba(156, 210, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(7, 14, 25, 0.86), rgba(5, 10, 18, 0.74));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-topbar-brand {
  color: #e8f4ff;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.client-topbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-shell {
  width: min(1700px, 96vw);
  margin: 10px auto 28px;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.client-sidebar,
.client-panel,
.client-form-card {
  border: 1px solid rgba(156, 210, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(10, 19, 33, 0.9), rgba(6, 12, 22, 0.78));
  backdrop-filter: blur(11px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.client-sidebar {
  position: sticky;
  top: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.client-sidebar h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  letter-spacing: -0.02em;
}

.client-content {
  display: grid;
  gap: 18px;
}

.client-panel {
  padding: clamp(18px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}

.client-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 1.8vw, 1.8rem);
  letter-spacing: -0.015em;
}

.client-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 232, 255, 0.7), rgba(126, 165, 255, 0));
  pointer-events: none;
}

.client-form-card {
  padding: clamp(16px, 1.8vw, 22px);
}

.client-body .portal-tabs,
.client-body .portal-top-actions {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.client-body .portal-tabs .btn,
.client-body .portal-top-actions .btn,
.client-body .customer-actions .btn {
  width: 100%;
  justify-content: center;
}

.client-body .download-details {
  margin-top: 0;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(120, 170, 212, 0.2);
  background: linear-gradient(158deg, rgba(6, 12, 21, 0.78), rgba(5, 10, 18, 0.6));
}

.client-body .download-details p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 78px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(6, 11, 19, 0.5);
  border-bottom: 1px solid rgba(120, 170, 212, 0.18);
}

.status-lines {
  display: grid;
  gap: 10px;
}

.status-lines p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(123, 176, 220, 0.22);
  background: linear-gradient(145deg, rgba(7, 13, 22, 0.7), rgba(8, 15, 26, 0.55));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-lines p span {
  color: #c5ddf3;
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(143, 197, 239, 0.34);
  background: rgba(9, 17, 28, 0.78);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill.is-operational {
  color: #8ff2bf;
  border-color: rgba(143, 242, 191, 0.34);
}

.status-pill.is-warning {
  color: #ffd584;
  border-color: rgba(255, 213, 132, 0.34);
}

.status-pill.is-issue {
  color: #ff9ca6;
  border-color: rgba(255, 156, 166, 0.34);
}

.client-body .release-grid {
  margin-top: 10px;
}

.client-body .site-footer {
  margin-top: 0;
}

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

.portal-kpi-card {
  border: 1px solid rgba(121, 177, 221, 0.26);
  border-radius: 14px;
  background: linear-gradient(152deg, rgba(9, 17, 29, 0.92), rgba(7, 13, 22, 0.56));
  padding: 12px;
  display: grid;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.portal-kpi-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -45%;
  width: 65%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(126, 218, 255, 0.14), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  transition: transform 400ms ease;
  pointer-events: none;
}

.portal-kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 212, 255, 0.52);
  box-shadow: 0 12px 26px rgba(53, 114, 163, 0.24);
}

.portal-kpi-card:hover::after {
  transform: translateX(120%) rotate(18deg);
}

.portal-kpi-card span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #91b6d8;
}

.portal-kpi-card strong {
  font-size: 1.02rem;
  color: #eff8ff;
}

.portal-mini-btn {
  margin-top: 8px;
  padding: 6px 10px;
  min-height: 0;
}

.client-plans-grid {
  margin-top: 6px;
}

.client-plan-current {
  border-color: rgba(133, 241, 199, 0.56);
  box-shadow: 0 14px 30px rgba(67, 145, 121, 0.2);
}

.client-plan-current .plan-badge {
  color: #bdfde2;
  border-color: rgba(133, 241, 199, 0.58);
}

.client-content .client-panel {
  animation: dashboardPanelIn 480ms ease both;
}

.client-content .client-panel:nth-child(2) {
  animation-delay: 70ms;
}

.client-content .client-panel:nth-child(3) {
  animation-delay: 120ms;
}

.client-content .client-panel:nth-child(4) {
  animation-delay: 170ms;
}

.success-card {
  max-width: 760px;
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid rgba(166, 211, 255, 0.18);
  padding: 22px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(4, 8, 14, 0), rgba(6, 12, 22, 0.65));
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes signalFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 6px));
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

@media (max-width: 980px) {
  .hero,
  .demo-grid,
  .experience-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .trust-kpis,
  .faq-grid,
  .steps-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .auth-split,
  .customer-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .header-side {
    border-left: 0;
    padding-left: 0;
  }

  .header-actions {
    gap: 8px;
  }

  .site-header {
    border-radius: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .demo-kpis {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 12px;
    justify-content: space-between;
    border-radius: 14px;
  }

  .admin-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-kpis {
    grid-template-columns: 1fr;
  }

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

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

  .download-details {
    grid-template-columns: 1fr;
  }

  .client-shell {
    width: min(100%, 96vw);
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .client-topbar {
    width: min(100%, 96vw);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .client-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .portal-kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-kpi-card,
  .portal-kpi-card::after,
  .client-content .client-panel {
    transition: none;
    animation: none;
    transform: none;
  }
}
