:root {
  --bg: #030508;
  --bg-soft: #0b1220;
  --panel: rgba(13, 18, 29, 0.78);
  --panel-strong: #111827;
  --panel-border: rgba(148, 163, 184, 0.18);
  --text: #edf2ff;
  --muted: #a8b4cf;
  --muted-strong: #dfe7ff;
  --primary: #7c8cff;
  --primary-strong: #9a7cff;
  --accent: #62e0ff;
  --green: #4ade80;
  --shadow: 0 24px 80px rgba(86, 110, 255, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(125, 143, 179, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 143, 179, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -3;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.ambient {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -2;
}
.ambient-a { top: 80px; left: -250px; background: #6366f1; }
.ambient-b { top: 420px; right: -300px; background: #8b5cf6; }
.container { width: var(--container); margin: 0 auto; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(3, 5, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(125, 143, 179, 0.12);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  letter-spacing: -0.5px;
}
.brand-logo, .mini-logo {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.18);
}
.mini-logo {
  width: 24px;
  height: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-links a {
  position: relative;
  color: rgba(237, 242, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  background: rgba(15, 15, 24, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle i {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  min-height: 100vh;
  padding: 128px 0 64px;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(134, 153, 202, 0.24);
  border-radius: 999px;
  background: rgba(18, 24, 40, 0.7);
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  font-family: "Space Grotesk", sans-serif;
  max-width: 620px;
}
.gradient-text {
  background: linear-gradient(135deg, #dfe7ff 0%, #8db8ff 17%, #91d4ff 38%, #a78bfa 68%, #d6b4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #081018;
  background: linear-gradient(135deg, #dfe7ff, #8cc3ff 30%, #c0a5ff 100%);
  box-shadow: 0 18px 38px rgba(140, 150, 255, 0.38);
}
.btn-ghost {
  background: rgba(9, 13, 21, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--text);
}
.play-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: var(--muted);
  font-size: 0.87rem;
}
.hero-meta b { color: rgba(255,255,255,0.28); }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.stat-box {
  padding: 18px 18px 16px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background: rgba(10, 15, 25, 0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.stat-box strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}
.stat-box span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(144, 166, 255, 0.18);
  border-radius: 50%;
  animation: rotate 16s linear infinite;
}
.orbit-1 { width: 500px; height: 500px; }
.orbit-2 {
  width: 340px;
  height: 340px;
  animation-duration: 11s;
  animation-direction: reverse;
}
.app-window {
  position: relative;
  width: min(100%, 510px);
  border: 1px solid rgba(116, 133, 175, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 16, 28, 0.9), rgba(10, 13, 22, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateX(6deg) rotateY(-10deg);
  transition: transform 0.3s ease;
}
.app-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 107, 255, 0.16), transparent 38%, rgba(98, 224, 255, 0.08));
  pointer-events: none;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(13, 17, 29, 0.85);
}
.window-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: #ffd1a8;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.live-badge span, .status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
}
.window-body { padding: 18px 18px 20px; }
.preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 17, 30, 0.9), rgba(24, 35, 52, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
}
.preview-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.preview-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(88, 123, 255, 0.25);
}
.preview-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(237, 242, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.stream-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 2px 12px;
}
.stream-row small, .stats small, .mock-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  margin-bottom: 6px;
}
.stream-row strong, .stats strong, .mock-grid strong { font-size: 0.96rem; }
.stream-metric { text-align: right; }
.progress {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  overflow: hidden;
}
.progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(110, 143, 255, 0.7);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}
.stats > div {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 14px 12px 12px;
}
.stop-btn {
  width: 100%;
  margin-top: 18px;
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 12px;
  background: rgba(127, 29, 29, 0.16);
  color: #fecaca;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  cursor: pointer;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background: rgba(8, 11, 19, 0.86);
  box-shadow: 0 24px 50px rgba(4, 8, 19, 0.46);
  animation: float 6s ease-in-out infinite;
}
.floating-card small { display: block; color: var(--muted); font-size: 0.62rem; letter-spacing: 0.12em; }
.floating-card strong { display: block; font-size: 0.9rem; }
.card-live { right: 10%; top: 12%; }
.card-loop { left: 2%; bottom: 20%; animation-delay: 0.8s; }
.loop-symbol {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  color: #dfe7ff;
  font-size: 1.1rem;
}
.section { padding: 110px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { text-align: center; }
.section-heading h2 {
  margin: 18px 0 10px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-family: "Space Grotesk", sans-serif;
}
.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.trust-strip { padding: 14px 0 0; }
.trust-strip p {
  margin: 0 0 18px;
  color: rgba(237, 242, 255, 0.76);
  font-size: 1.08rem;
  text-align: center;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.trust-items span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(14, 19, 31, 0.55);
  font-size: 0.82rem;
}
.feature-grid, .tech-grid, .metrics-grid { display: grid; gap: 22px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .tech-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px 22px 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.78), rgba(9, 13, 22, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover, .tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 176, 255, 0.36);
  box-shadow: 0 18px 40px rgba(8, 15, 24, 0.54);
}
.icon-box, .tech-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.28), rgba(98, 224, 255, 0.18));
  border: 1px solid rgba(127, 162, 255, 0.3);
  font-size: 1.8rem;
  margin-bottom: 22px;
}
.card-number {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.feature-card h3, .tech-card h3, .step h3 {
  margin: 16px 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.feature-card p, .tech-card p, .step p, .security-copy p, .security-points p, .faq p, .compare-side li, .product-layout p {
  color: var(--muted);
  line-height: 1.75;
}
.card-arrow {
  margin-top: auto;
  opacity: 0.7;
  font-size: 1.3rem;
}
.metrics-section { padding-top: 10px; }
.metrics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-item {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.9), rgba(16, 22, 36, 0.72));
}
.metric-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.06em;
}
.metric-item span { color: var(--muted); line-height: 1.5; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step {
  position: relative;
  padding: 28px 22px 22px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(11, 17, 26, 0.8);
  overflow: hidden;
}
.step-line {
  position: absolute;
  top: 20px;
  right: -22px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 140, 255, 0), rgba(124, 140, 255, 0.7));
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.18), rgba(98, 224, 255, 0.22));
  border: 1px solid rgba(137, 176, 255, 0.22);
  font-weight: 800;
  color: var(--muted-strong);
}
.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 36px;
}
.callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.callouts span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(11, 17, 26, 0.7);
  color: var(--muted-strong);
  font-size: 0.8rem;
}
.product-mock {
  position: relative;
  display: flex;
  min-height: 470px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(11, 15, 24, 0.92), rgba(8, 11, 19, 0.9));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mock-sidebar {
  width: 86px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(9, 13, 20, 0.65);
}
.side-logo { margin-bottom: 6px; }
.mock-sidebar span {
  color: rgba(237, 242, 255, 0.48);
  font-size: 1.4rem;
}
.side-active { color: var(--text) !important; }
.mock-content { flex: 1; padding: 18px 18px 16px; }
.mock-header, .mock-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mock-header { margin-bottom: 18px; }
.mock-header strong, .mock-footer span { font-size: 0.95rem; }
.mock-preview {
  position: relative;
  display: grid;
  place-items: center;
  height: 180px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(135deg, rgba(15, 19, 31, 0.9), rgba(16, 27, 40, 0.82));
  overflow: hidden;
}
.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(124,140,255,0.08), transparent);
  animation: scan 4s linear infinite;
}
.mock-preview span {
  position: relative;
  z-index: 1;
  color: rgba(237, 242, 255, 0.72);
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.mock-preview button {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2ff, #a4c7ff);
  color: #091421;
  font-size: 1rem;
  cursor: pointer;
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.mock-grid > div {
  background: rgba(11, 17, 26, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 14px 12px;
}
.mock-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.mock-stop {
  border: 0;
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.tech-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tech-card code {
  display: inline-flex;
  margin-top: auto;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #b1c9ff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.security-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.95), rgba(12, 17, 25, 0.85));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.security-copy h2 {
  margin: 18px 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-family: "Space Grotesk", sans-serif;
}
.security-points { display: grid; gap: 16px; }
.security-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(9, 14, 23, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.security-points span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.2), rgba(98, 224, 255, 0.18));
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-strong);
}
.security-points strong { font-size: 1.1rem; }
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 20px;
}
.compare-side {
  padding: 26px 26px 18px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(11, 17, 27, 0.8);
}
.compare-side.active {
  border-color: rgba(143, 182, 255, 0.32);
  background: linear-gradient(180deg, rgba(18, 27, 44, 0.96), rgba(12, 17, 27, 0.9));
  box-shadow: 0 30px 60px rgba(61, 82, 128, 0.18);
}
.compare-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.compare-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.compare-side li { position: relative; padding-left: 22px; }
.compare-side li::before {
  content: "�";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.4rem;
}
.vs {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  align-self: center;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.2), rgba(98, 224, 255, 0.25));
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-weight: 800;
  color: var(--muted-strong);
}
.cta-section { position: relative; padding: 120px 0; }
.cta-glow {
  position: absolute;
  inset: 10% 8% auto;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.2), transparent 62%);
  filter: blur(28px);
}
.cta-inner {
  position: relative;
  text-align: center;
  padding: 56px 28px 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.9), rgba(9, 12, 22, 0.88));
  overflow: hidden;
}
.cta-inner h2 {
  margin: 18px 0 12px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-family: "Space Grotesk", sans-serif;
}
.cta-inner p {
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--muted);
  line-height: 1.8;
}
.cta-inner small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}
.download-note {
  min-height: 24px;
  margin-top: 14px;
  color: #dfe7ff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(10, 15, 24, 0.7);
  overflow: hidden;
}
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 1.4rem; color: var(--muted-strong); }
.faq p {
  margin: 0;
  padding: 0 20px 18px;
}
.footer {
  padding: 26px 0 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(3, 5, 8, 0.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 20px 0 10px;
}
.footer-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: rgba(237, 242, 255, 0.65);
  font-size: 0.8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 980px) {
  .hero, .product-layout, .security-card, .faq-layout { grid-template-columns: 1fr; }
  .feature-grid, .tech-grid, .metrics-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 110px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 480px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(9, 13, 21, 0.95);
    box-shadow: 0 28px 50px rgba(2, 6, 23, 0.42);
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; }
  .feature-grid, .tech-grid, .metrics-grid, .steps, .compare, .footer-grid { grid-template-columns: 1fr; }
  .compare { gap: 14px; }
  .vs { width: 58px; height: 58px; }
  .hero-copy h1 { max-width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .card-live { right: 4%; top: 7%; }
  .card-loop { left: 4%; bottom: 15%; }
  .section { padding: 85px 0; }
  .cta-inner { padding-left: 18px; padding-right: 18px; }
  .footer-bottom { flex-direction: column; }
}
/* Overrides for better hovers, smoother animations and mobile responsiveness */

.btn {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease !important;
}
.btn:hover, .btn:focus-visible { 
  transform: translateY(-4px) scale(1.02) !important; 
}
.btn-primary:hover {
  box-shadow: 0 22px 45px rgba(140, 150, 255, 0.45) !important;
}
.btn-ghost:hover {
  background: rgba(20, 25, 35, 0.8) !important;
  border-color: rgba(148, 163, 184, 0.4) !important;
}

.feature-card, .tech-card, .step, .metric-item {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.feature-card:hover, .tech-card:hover, .step:hover, .metric-item:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(137, 176, 255, 0.36) !important;
  box-shadow: 0 20px 50px rgba(8, 15, 24, 0.6) !important;
}

.icon-box i {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
}
.feature-card:hover .icon-box i {
  transform: scale(1.15) rotate(8deg);
}

.card-arrow i {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
  display: inline-block;
}
.feature-card:hover .card-arrow i {
  transform: translate(4px, -4px);
  color: var(--accent);
}

.reveal {
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 8vw, 3.2rem) !important;
  }
  .section {
    padding: 60px 0 !important;
  }
  .section-heading h2 {
    font-size: clamp(2rem, 6vw, 2.8rem) !important;
  }
  .btn {
    width: 100% !important;
  }
  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .app-window {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) !important;
  }
  .nav-cta {
    text-align: center;
  }
}

/* More Hover & Animation Improvements & Smooth Scrolling Offset */

html {
  scroll-padding-top: 90px; /* offset for fixed header */
}

/* Nav Links hover */
.nav-links a {
  transition: color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover {
  color: var(--accent);
}

/* Nav CTA button */
.nav-cta {
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.2);
}

/* FAQ Details hover */
.faq details {
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.faq details:hover {
  background: rgba(15, 22, 36, 0.9);
  border-color: rgba(148, 163, 184, 0.3);
  transform: translateX(4px);
}

/* Trust items hover */
.trust-items span {
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trust-items span:hover {
  background: rgba(20, 28, 45, 0.7);
  transform: translateY(-3px) scale(1.05);
}

/* Fix reveal animation initial state just to ensure smoothness */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Mock stop button hover */
.mock-stop {
  transition: all 0.2s ease;
}
.mock-stop:hover {
  background: rgba(248, 113, 113, 0.25);
  transform: scale(1.05);
}

/* Footer links hover */
.footer-grid a {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-grid a:hover {
  color: var(--text);
  transform: translateX(4px);
}

/* Compare Section Icons & Hide Old Pseudo-element */
.compare-side li::before {
  display: none !important;
}
.compare-side li {
  padding-left: 0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-muted-icon {
  color: #64748b;
  font-size: 1.2rem;
}
.text-active-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Improve Steps Cards */
.step {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.8), rgba(9, 13, 22, 0.95)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.2) !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease !important;
  z-index: 1;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.2), transparent 50%, rgba(98, 224, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step:hover::before {
  opacity: 1;
}
.step:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: transparent !important;
  box-shadow: 0 20px 40px rgba(124, 140, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.1) !important;
  background: linear-gradient(180deg, rgba(20, 30, 48, 0.9), rgba(12, 18, 30, 0.95)) !important;
}
.step-num {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, color 0.3s ease;
}
.step:hover .step-num {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.4), rgba(98, 224, 255, 0.4));
  color: #fff;
  border-color: rgba(124, 140, 255, 0.6);
}
.step-line {
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.step:hover .step-line {
  width: 80px;
  background: linear-gradient(90deg, rgba(124, 140, 255, 0), rgba(124, 140, 255, 1));
}

/* Pricing Section Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.78), rgba(9, 13, 22, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(137, 176, 255, 0.36);
  box-shadow: 0 18px 40px rgba(8, 15, 24, 0.54);
}
.pricing-card.highlight {
  border-color: rgba(124, 140, 255, 0.35);
  background: linear-gradient(180deg, rgba(18, 26, 44, 0.9), rgba(11, 15, 26, 0.96));
  box-shadow: 0 20px 50px rgba(124, 140, 255, 0.12);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #000;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.pricing-card .price {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-card .price strong {
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1;
}
.pricing-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
  min-height: 48px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
  flex: 1;
}
.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(237, 242, 255, 0.85);
}
.pricing-card .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

/* Fix Mobile Nav Menu */
.menu-toggle.active i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active i:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex !important; }
  .nav-links {
    display: flex !important;
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(9, 13, 21, 0.95);
    box-shadow: 0 28px 50px rgba(2, 6, 23, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .nav-links.open { 
    opacity: 1; 
    pointer-events: auto; 
    transform: translateY(0);
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}
@media (max-width: 760px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/* FIX HORIZONTAL SCROLL AND MOBILE MENU */
html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
}

@media (max-width: 980px) {
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 76px !important;
    right: 24px !important;
    left: 24px !important;
    z-index: 999 !important;
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-20px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
  }
  .nav-links.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* iOS AND WEBKIT SPECIFIC FIXES FOR HORIZONTAL SCROLL AND MENU */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

body {
  /* This prevents absolute children from blowing up the width on iOS Safari */
  contain: paint; 
}

@media (max-width: 980px) {
  /* Hide the giant ambient glowing orbs on mobile to guarantee no overflow */
  .ambient {
    display: none !important;
  }
  
  /* Ensure steps don't overflow */
  .step-line {
    right: 0 !important;
    width: 0 !important; /* Hide line overflowing on mobile */
  }

  /* Hamburger Menu iOS Fixes */
  .nav-links {
    /* Safe Area Insets for modern iPhones */
    padding-left: max(18px, env(safe-area-inset-left)) !important;
    padding-right: max(18px, env(safe-area-inset-right)) !important;
    
    /* Ensure WebKit treats this as a separate compositing layer for animations */
    -webkit-transform: translate3d(0, -20px, 0) !important;
    transform: translate3d(0, -20px, 0) !important;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease, visibility 0.3s !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
  }
  
  .nav-links.open {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }
}
