@font-face {
  font-family: "PelakFA";
  src: url("../fonts/PelakFA-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PelakFA";
  src: url("../fonts/PelakFA-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PelakFA";
  src: url("../fonts/PelakFA-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PelakFA";
  src: url("../fonts/PelakFA-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #2490ef;
  --brand-dark: #1877d1;
  --brand-soft: #e8f4fd;
  --ink: #1f272e;
  --ink-muted: #6b7280;
  --surface: #ffffff;
  --canvas: #f5f7fa;
  --border: #e2e2e2;
  --radius: 7px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 3px 10px rgba(0, 0, 0, 0.04);
  --header-h: 52px;
  --font: "PelakFA", Tahoma, "Segoe UI", sans-serif;
  --max: 1040px;
  --narrow: 640px;
  --mesh:
    linear-gradient(rgba(36, 144, 239, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 144, 239, 0.055) 1px, transparent 1px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  font-size: 13.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  color: var(--brand-dark);
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}
.narrow {
  width: min(100% - 1.5rem, var(--narrow));
  margin-inline: auto;
}

.mesh-bg {
  background-color: var(--surface);
  background-image: var(--mesh);
  background-size: 28px 28px;
}
.mesh-bg-dark {
  background-color: #12293f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  direction: ltr;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ink);
  order: 1;
}
.brand:hover {
  color: var(--ink);
}
.brand-logo {
  height: 22px;
  width: auto;
}
.header-slogan {
  display: none;
  order: 2;
  flex: 1;
  margin: 0;
  min-width: 0;
  text-align: center;
  direction: rtl;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.slogan-brand {
  font-weight: 700;
  color: var(--ink);
}
.slogan-mark {
  color: var(--ink-muted);
}
.slogan-accent {
  font-weight: 700;
  background: linear-gradient(120deg, #1877d1, #2490ef 55%, #5bb0f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  order: 3;
  direction: rtl;
}
.site-nav ul {
  display: flex;
  gap: 0.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--canvas);
}

.nav-toggle {
  display: none;
  order: 4;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle-icon {
  display: block;
}
.nav-toggle .nav-sq {
  fill: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.is-open .nav-sq.a {
  transform: translate(3px, 3px) rotate(45deg) scale(0.85);
}
.nav-toggle.is-open .nav-sq.d {
  transform: translate(-3px, -3px) rotate(45deg) scale(0.85);
}
.nav-toggle.is-open .nav-sq.b,
.nav-toggle.is-open .nav-sq.c {
  opacity: 0;
  transform: scale(0.4);
}

/* Mobile nav modal */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  direction: ltr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 48, 0.45);
}
.nav-modal-panel {
  position: relative;
  width: min(100%, 340px);
  height: 100%;
  background:
    var(--mesh),
    linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
  background-size: 24px 24px, auto;
  border-left: 1px solid var(--border);
  padding: 1rem 1.1rem 1.5rem;
  overflow-y: auto;
  direction: rtl;
  transform: translateX(22px);
  transition: transform 0.28s ease;
}
.nav-modal.is-open .nav-modal-panel {
  transform: none;
}
.nav-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.nav-modal-top img {
  height: 24px;
  width: auto;
}
.nav-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.nav-modal-slogan {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}
.nav-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.nav-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}
.nav-modal-btn:hover,
.nav-modal-btn[aria-current="page"] {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.nav-modal-cta {
  width: 100%;
  margin-bottom: 1.1rem;
}
.nav-modal-social {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.social-ico {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  background: #fff;
}
.nav-modal-contact {
  display: grid;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.78rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
}
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--canvas);
  color: var(--ink);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.btn-row-center {
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 1.75rem 0 1.15rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  background-image: var(--mesh);
  background-size: 28px 28px;
}
.page-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-hero .lead {
  margin: 0;
  color: var(--ink-muted);
  max-width: 48ch;
  font-size: 0.88rem;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 600;
}
.section {
  padding: 2.75rem 0;
}
.home-unify.section,
.home-unify {
  padding: 2.75rem 0;
  margin-top: 0;
}
.unify-points {
  margin: 1.35rem 0 0;
  padding: 1.1rem 0 0.25rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid rgba(36, 144, 239, 0.12);
}
.section-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-sub {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}
.feature-grid,
.price-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.feature-card h3,
.price-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.feature-card p,
.price-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.feature-icon {
  width: fit-content;
  min-width: 30px;
  height: 30px;
  padding: 0 0.5rem;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 0.65rem;
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow);
}
.price-amount {
  margin: 0.55rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.price-amount span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.price-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.price-list li {
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.prose h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.05rem;
}
.prose h3 {
  margin: 1.15rem 0 0.4rem;
  font-size: 0.95rem;
}
.prose p,
.prose ul,
.prose ol {
  font-size: 0.88rem;
}
.prose ul,
.prose ol {
  padding-inline-start: 1.15rem;
}
.post-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
}
.post-meta {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.post-back {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.post-list {
  display: grid;
  gap: 0.75rem;
}
.post-card h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}
.post-card h2 a {
  color: var(--ink);
}
.post-card h2 a:hover {
  color: var(--brand);
}
.post-more {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 600;
  font-size: 0.78rem;
}
.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 460px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand-soft);
  border-color: var(--brand);
}

/* Footer compact */
.site-footer {
  margin-top: 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 0.85rem;
}
.footer-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.footer-brand-inline img {
  height: 20px;
  width: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0;
  flex: 1;
  min-width: 0;
}
.footer-links a {
  color: var(--ink-muted);
  font-size: 0.75rem;
  padding: 0 0.45rem;
  border-inline-start: 1px solid var(--border);
  line-height: 1.2;
}
.footer-links a:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.75rem;
  font-size: 0.75rem;
}
.footer-meta a {
  color: var(--ink-muted);
}
.footer-bottom {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--ink-muted);
}

/* Floating actions — physical left */
.float-actions {
  position: fixed;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(15, 40, 70, 0.12);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.float-btn:hover {
  transform: translateY(-2px);
}
.float-wa {
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.75), rgba(18, 140, 70, 0.65));
  color: #fff;
}
.float-top {
  background: linear-gradient(145deg, rgba(31, 39, 46, 0.55), rgba(31, 39, 46, 0.35));
  color: #fff;
  opacity: 0;
  pointer-events: none;
}
.float-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ——— Home ——— */
.page-home {
  background: var(--surface);
}
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f7fbff 0%, #eef6fc 40%, #e8f0f7 100%);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-hero-bg .mesh {
  position: absolute;
  inset: 0;
  background-image: var(--mesh);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 55% 40%, #000 20%, transparent 72%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.45;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.orb-a {
  width: 260px;
  height: 260px;
  background: #8ec8f7;
  top: -60px;
  inset-inline-end: 6%;
}
.orb-b {
  width: 200px;
  height: 200px;
  background: #b8dde8;
  bottom: 4%;
  inset-inline-start: 4%;
  animation-delay: -4s;
}
.orb-c {
  width: 140px;
  height: 140px;
  background: #c5d4f0;
  top: 42%;
  inset-inline-start: 44%;
  animation-delay: -8s;
}
@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-16px, 12px) scale(1.06);
  }
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2.25rem 0 2.5rem;
}
.home-hero-logo {
  height: 34px;
  width: auto;
  margin-bottom: 0.85rem;
}
.home-hero-actions {
  margin-top: 1rem;
}
.home-hero-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(120deg, #15202b 0%, #1f5f9e 50%, #2490ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero-lead {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.home-hero-stage {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 0.75rem;
}
.ui-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(900px) rotateY(3deg) rotateX(1.5deg);
  animation: shell-float 7s ease-in-out infinite alternate;
}
@keyframes shell-float {
  from {
    transform: perspective(900px) rotateY(3deg) rotateX(1.5deg) translateY(0);
  }
  to {
    transform: perspective(900px) rotateY(1.5deg) rotateX(1deg) translateY(-8px);
  }
}
.ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #f8fbff, #fff);
}
.ui-top img {
  height: 14px;
  width: auto;
}
.ui-pill {
  font-size: 0.65rem;
  font-weight: 600;
  color: #1a7a4c;
  background: #e8f6ee;
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
}
.ui-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 210px;
}
.ui-rail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
  border-inline-end: 1px solid var(--border);
  background: #fafbfc;
}
.ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #d5dbe3;
}
.ui-dot.is-on {
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.ui-main {
  padding: 0.75rem 0.85rem 1rem;
}
.ui-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.8rem;
}
.ui-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
}
.ui-bars {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.ui-bars i {
  display: block;
  height: 6px;
  width: var(--w);
  border-radius: 3px;
  background: linear-gradient(90deg, #d7e9f8, #2490ef);
  animation: bar-pulse 2.8s ease-in-out infinite alternate;
}
.ui-bars i:nth-child(2) {
  animation-delay: 0.2s;
}
.ui-bars i:nth-child(3) {
  animation-delay: 0.4s;
}
.ui-bars i:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes bar-pulse {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
.ui-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 70px;
}
.ui-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #5bb0f5, #2490ef 70%, #1877d1);
  animation: chart-rise 1.1s ease both;
}
.ui-chart span:nth-child(2) {
  animation-delay: 0.08s;
}
.ui-chart span:nth-child(3) {
  animation-delay: 0.16s;
}
.ui-chart span:nth-child(4) {
  animation-delay: 0.24s;
}
.ui-chart span:nth-child(5) {
  animation-delay: 0.32s;
}
.ui-chart span:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes chart-rise {
  from {
    transform: scaleY(0.2);
    transform-origin: bottom;
    opacity: 0.3;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.float-chip {
  position: absolute;
  z-index: 2;
  padding: 0.3rem 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: chip-bob 5s ease-in-out infinite alternate;
  max-width: calc(100% - 1rem);
}
.float-a {
  top: 6%;
  inset-inline-start: 2%;
  color: var(--brand-dark);
}
.float-b {
  bottom: 14%;
  inset-inline-start: 2%;
  animation-delay: -1.5s;
}
.float-c {
  top: 40%;
  inset-inline-end: 2%;
  animation-delay: -3s;
  color: #1a7a4c;
}
@keyframes chip-bob {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

.home-marquee {
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  overflow: hidden;
  padding: 0.65rem 0;
  direction: ltr;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 36s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  padding-inline-end: 1.5rem;
}
.marquee-group span {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink-muted);
  white-space: nowrap;
  unicode-bidi: plaintext;
}
.marquee-group span::before {
  content: "◆";
  margin-inline-end: 0.55rem;
  color: var(--brand);
  font-size: 0.45rem;
  vertical-align: middle;
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

.home-head {
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

/* Flow — desktop grid, mobile compact rail */
.home-flow {
  border-block: 1px solid var(--border);
}
.flow-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.flow-card {
  padding: 1rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 253, 0.9) 100%);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.flow-card:hover {
  border-color: #b8d4ef;
  transform: translateY(-2px);
}
.flow-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.55rem;
}
.flow-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}
.flow-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

/* Unify tools */
.home-unify {
  border-bottom: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.unify-board {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}
.unify-scatter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.tool-chip {
  padding: 0.35rem 0.65rem;
  border-radius: 7px;
  border: 1px dashed #c5d3e2;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  animation: tool-wiggle 4s ease-in-out infinite;
}
.tool-chip:nth-child(2) {
  animation-delay: 0.3s;
}
.tool-chip:nth-child(3) {
  animation-delay: 0.6s;
}
.tool-chip:nth-child(4) {
  animation-delay: 0.9s;
}
.tool-chip:nth-child(5) {
  animation-delay: 1.2s;
}
.tool-chip:nth-child(6) {
  animation-delay: 1.5s;
}
@keyframes tool-wiggle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.unify-arrow {
  color: var(--brand);
}
.unify-target {
  text-align: center;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--brand);
  background: linear-gradient(145deg, #f0f7fd, #fff);
}
.unify-target img {
  height: 24px;
  width: auto;
  margin: 0 auto 0.4rem;
}
.unify-target p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.unify-points li {
  font-size: 0.8rem;
  color: var(--ink-muted);
  padding-inline-start: 1rem;
  position: relative;
}
.unify-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brand);
}

/* Showcase */
.home-showcase {
  padding: 2rem 0 2.5rem;
  background: var(--canvas);
  background-image: var(--mesh);
  background-size: 28px 28px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: center;
  padding: 1.75rem 0;
}
.showcase-row.reverse .showcase-visual {
  order: 2;
}
.showcase-row.reverse .showcase-copy {
  order: 1;
}
.showcase-visual {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}
.home-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}
.showcase-copy .section-title {
  font-size: 1.1rem;
}
.showcase-copy .section-sub {
  margin-bottom: 0.75rem;
}

/* Sales funnel */
.funnel-wrap {
  display: grid;
  place-items: center;
  padding: 1.1rem;
  background:
    var(--mesh),
    linear-gradient(160deg, #e8f3fc 0%, #d6e9f8 100%);
  background-size: 22px 22px, auto;
}
.funnel {
  width: min(100%, 260px);
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}
.funnel-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - var(--i) * 18%);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1877d1, #2490ef);
  box-shadow: 0 2px 8px rgba(24, 119, 209, 0.2);
  animation: funnel-pulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.25s);
}
.funnel-step b {
  font-variant-numeric: tabular-nums;
  opacity: 0.95;
}
.funnel-step[style="--i:1"],
.funnel-step:nth-child(2) {
  background: linear-gradient(90deg, #1a84e0, #3aa0f5);
}
.funnel-step:nth-child(3) {
  background: linear-gradient(90deg, #2b93ea, #5bb0f5);
}
.funnel-step:nth-child(4) {
  background: linear-gradient(90deg, #3aa0f5, #7ec4f7);
  color: #0f3d66;
}
@keyframes funnel-pulse {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.985) translateY(-2px);
  }
}
.funnel-drop {
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(#7ec4f7, transparent);
  animation: drop 1.6s ease-in-out infinite;
}
@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Stats */
.home-stats {
  color: #fff;
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-visual {
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 0.45rem;
}
.stat-ring {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 5;
}
.ring-fg {
  fill: none;
  stroke: #7ec4f7;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 163.36;
  stroke-dashoffset: calc(163.36 - (163.36 * var(--p)) / 100);
  transition: stroke-dashoffset 0.2s linear;
}
.stat-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
}
.stat-bars i {
  width: 7px;
  height: 20%;
  border-radius: 2px;
  background: #7ec4f7;
  transition: height 0.5s ease;
}
.stat-bars.is-on i:nth-child(1) {
  height: 35%;
}
.stat-bars.is-on i:nth-child(2) {
  height: 55%;
}
.stat-bars.is-on i:nth-child(3) {
  height: 45%;
}
.stat-bars.is-on i:nth-child(4) {
  height: 75%;
}
.stat-bars.is-on i:nth-child(5) {
  height: 60%;
}
.stat-bars.is-on i:nth-child(6) {
  height: 90%;
}
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
  line-height: 1;
  font-family: var(--font);
  color: #fff;
}
.stat .count {
  font-size: 1em !important;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-size: 0.4em;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1;
  color: #fff;
}
.stat > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

/* Modules mosaic — glass */
.module-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.mosaic-item {
  position: relative;
  padding: 1.05rem 1rem;
  border-radius: 14px;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.mosaic-item:hover {
  transform: translateY(-2px);
  color: inherit;
}
.home-modules-glass,
.home-faq-glass {
  background-color: #c5daf0;
  background-image:
    var(--mesh),
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(36, 144, 239, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(99, 102, 241, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(16, 185, 129, 0.2), transparent 50%),
    linear-gradient(165deg, #b9d4ec 0%, #d4e4f4 40%, #c8d8ec 100%);
  background-size: 28px 28px, auto, auto, auto, auto;
}
.glass-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 10px 32px rgba(15, 40, 70, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: var(--glow, linear-gradient(135deg, #2490ef, #7ec4f7, #2490ef));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
}
.glow-a { --glow: linear-gradient(135deg, #2490ef, #60a5fa, #93c5fd, #2490ef); }
.glow-b { --glow: linear-gradient(135deg, #0ea5e9, #38bdf8, #a5f3fc, #0284c7); }
.glow-c { --glow: linear-gradient(135deg, #6366f1, #818cf8, #c4b5fd, #4f46e5); }
.glow-d { --glow: linear-gradient(135deg, #10b981, #34d399, #6ee7b7, #059669); }
.glow-e { --glow: linear-gradient(135deg, #f59e0b, #fbbf24, #fde68a, #d97706); }
.mosaic-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.mosaic-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
}
.mosaic-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

/* FAQ glass */
.faq-list {
  display: grid;
  gap: 0.55rem;
}
.faq-item {
  position: relative;
  border-radius: 12px;
  padding: 0 0.9rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.14));
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 24px rgba(15, 40, 70, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(36, 144, 239, 0.55), rgba(126, 196, 247, 0.35), rgba(99, 102, 241, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.72);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(36, 144, 239, 0.25);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--brand);
}
.faq-item[open] summary::after {
  content: "–";
  background: var(--brand-soft);
}
.faq-item p {
  margin: 0 0 0.9rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* CTA */
.home-cta-band {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.home-cta-inner {
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
}
.cta-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 0.85rem;
}
.home-cta-inner .btn-row {
  margin-top: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 861px) {
  .header-slogan {
    display: block;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
  }
  .header-slogan {
    display: block;
    font-size: 0.68rem;
    white-space: normal;
    line-height: 1.35;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    padding: 1.75rem 0 2rem;
  }
  .home-hero-copy {
    display: grid;
    grid-template-columns: minmax(11.75rem, 52%) minmax(0, 1fr);
    gap: 0.4rem 0.45rem;
    align-items: start;
    direction: ltr;
    width: 100%;
  }
  .home-hero-text {
    order: 2;
    direction: rtl;
    text-align: right;
    min-width: 0;
    max-width: 16.5rem;
  }
  .home-hero-actions {
    order: 1;
    margin-top: 0.15rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    gap: 0.45rem;
  }
  .home-hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 0.55rem;
    font-size: 0.8rem;
    min-height: 2.55rem;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
  .home-hero-logo {
    height: 28px;
    margin-bottom: 0.55rem;
  }
  .home-hero-lead {
    font-size: 0.82rem;
  }
  .showcase-row:not(.showcase-media) {
    grid-template-columns: 1fr;
  }
  .showcase-row.showcase-media {
    display: block;
    position: relative;
    min-height: 300px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 0;
    margin-bottom: 0.85rem;
  }
  .showcase-media .showcase-visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
  }
  .showcase-media .showcase-visual img {
    min-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .showcase-media .showcase-copy {
    position: relative;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.1rem;
    background: linear-gradient(to top, rgba(12, 28, 45, 0.92) 0%, rgba(12, 28, 45, 0.55) 48%, transparent 100%);
    color: #fff;
  }
  .showcase-media .home-kicker {
    color: #9fd0ff;
  }
  .showcase-media .section-title {
    color: #fff;
  }
  .showcase-media .section-sub {
    color: rgba(255, 255, 255, 0.82);
  }
  .showcase-media .btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    backdrop-filter: blur(8px);
    align-self: flex-start;
  }
  .showcase-row.reverse .showcase-visual,
  .showcase-row.reverse .showcase-copy {
    order: unset;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .stat-value {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .stat > span {
    font-size: 0.62rem;
    line-height: 1.35;
  }
  .stat-visual {
    height: 44px;
  }
  .stat-ring {
    width: 40px;
    height: 40px;
  }
  .home-hero-stage {
    min-height: 240px;
  }
  .ui-shell {
    transform: none;
    animation: none;
  }
  .float-chip {
    display: block;
  }
  .flow-rail {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .flow-card {
    flex: 0 0 42%;
    min-width: 140px;
    scroll-snap-align: start;
    background: linear-gradient(165deg, #fff 0%, #eaf4fc 100%);
  }
  .module-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .home-unify,
  .home-flow,
  .home-modules,
  .home-faq,
  .home-stats {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .footer-compact {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links a {
    border-inline-start: 0;
    padding: 0.15rem 0.55rem 0.15rem 0;
  }
  .footer-links a:not(:last-child)::after {
    content: "·";
    margin-inline-start: 0.45rem;
    color: var(--border);
  }
  .home-cta-inner .btn-row {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .module-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .nav-modal-grid {
    grid-template-columns: 1fr;
  }
  .flow-card {
    flex-basis: 46%;
  }
  .home-hero-actions {
    width: 100%;
    max-width: none;
  }
}

/* Lab page */
.page-lab .lab-stage {
  background:
    var(--mesh),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(36, 144, 239, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 70%, rgba(99, 102, 241, 0.3), transparent 50%),
    linear-gradient(160deg, #9ec4e8 0%, #c5daf0 50%, #a8c6e4 100%);
  background-size: 28px 28px, auto, auto, auto;
}
.lab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-end;
}
.lab-item {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}
.lab-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.lab-demo {
  position: static;
}
.lab-fab {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.lab-fab-b {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  color: #128c45;
  box-shadow: 0 8px 24px rgba(15, 40, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.lab-fab-c {
  background: linear-gradient(145deg, rgba(20, 40, 60, 0.55), rgba(20, 40, 60, 0.25));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.lab-fab-d {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 0 1.5px rgba(37, 211, 102, 0.8), 0 0 18px rgba(37, 211, 102, 0.45);
}
.lab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}
.lab-card {
  position: relative;
  padding: 1.1rem;
  border-radius: 14px;
  overflow: hidden;
  min-height: 120px;
}
.lab-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}
.lab-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.lab-card-1 {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 32px rgba(15, 40, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.lab-card-1::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, #2490ef, #93c5fd, #2490ef);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lab-card-2 {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 40px rgba(15, 40, 70, 0.16);
}
.lab-card-3 {
  background: linear-gradient(160deg, rgba(36, 144, 239, 0.22), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(126, 196, 247, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.lab-card-4 {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 2px transparent;
}
.lab-card-4::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2490ef, #a78bfa, #34d399, #2490ef);
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .reveal,
  .flow-card,
  .mosaic-item,
  .nav-modal,
  .nav-modal-panel {
    transition: none;
  }
  .orb,
  .ui-shell,
  .float-chip,
  .ui-bars i,
  .ui-chart span,
  .marquee-track,
  .funnel-step,
  .funnel-drop,
  .tool-chip {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
