:root {
  --bg-0: #050607;
  --bg-1: #0b0f12;
  --bg-2: #11181d;
  --card: #121a20;
  --card-strong: #162129;
  --text: #e6f0ef;
  --muted: #a1b0b2;
  --accent: #00ff88;
  --accent-soft: rgba(0, 255, 136, 0.25);
  --teal: #1bb7a7;
  --purple: #6957d9;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --max-width: 1160px;
  --glow: 0 0 20px rgba(0, 255, 136, 0.3);
  --font-sans: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
}

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

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top, #0a1314 0%, #06090b 40%, #050607 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  /* Soften Core Protection header on mobile only */
  .onescan-group .group-title {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 0.75rem;
  }

  .onescan-group::before {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 0 16px;
    background: rgba(0, 255, 136, 0.35);
    border-radius: 999px;
  }

  /* Soften "Focused insights" transition header on mobile */
  .security-strip .section-header h2 {
    font-size: 1.4rem;
    line-height: 1.35;
    opacity: 0.9;
  }

  .security-strip h2 {
    font-size: 1.4rem;
    line-height: 1.35;
  }

  /* Reduce visual dominance of section headers on mobile */
  .security-strip .section-header {
    margin-bottom: 24px;
  }
}

@media (max-width: 390px) {
  .card {
    padding: 22px;
  }
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 14, 12, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,255,150,0.12);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 12, 0.92),
    rgba(6, 10, 12, 0.7)
  );
  backdrop-filter: blur(26px);
  border-bottom: 1px solid rgba(0,255,136,0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.navbar {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,150,0.15);
}

.nav::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 136, 0) 20%,
    rgba(0, 255, 136, 0.45) 50%,
    rgba(0, 255, 136, 0) 80%
  );
  background-size: 200% 100%;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.6;
  animation: tableGlow 10s ease-in-out infinite;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.site-header .logo-text {
  color: var(--text);
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo img {
    height: 32px;
  }
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
  padding: 6px 4px;
}

.nav-links a.active {
  color: #6affd6;
  text-shadow: 0 0 10px rgba(106, 255, 214, 0.6);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6affd6, transparent);
  box-shadow: 0 0 12px #6affd6;
  border-radius: 2px;
}

.onescan-btn {
  background: rgba(0,255,160,0.12);
  border: 1px solid rgba(0,255,160,0.35);
  padding: 8px 16px;
  border-radius: 999px;
  color: #9fffd2;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0,255,160,0.2);
  transition: all .25s ease;
}

.onescan-btn:hover {
  background: rgba(0,255,160,0.18);
  box-shadow: 0 0 20px rgba(0,255,160,0.35);
}

.nav-onescan {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0,255,150,0.08);
  border: 1px solid rgba(0,255,150,0.25);
  color: #a6ffd6;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 rgba(0,255,150,0);
  transition: all .25s ease;
}

.nav-links .nav-onescan:link,
.nav-links .nav-onescan:visited {
  color: #a6ffd6;
}

.nav-onescan:hover {
  background: rgba(0,255,150,0.18);
  box-shadow: 0 0 18px rgba(0,255,150,0.35);
}

.nav-onescan:focus {
  box-shadow: 0 0 18px rgba(0,255,150,0.35);
}

.nav-home {
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 5px 0;
  border-radius: 999px;
  transition: all .25s ease;
}

body.nav-open .nav-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

body.nav-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  color: #ffffff;
  cursor: pointer;
}

body.nav-open .nav-logo img {
  filter: drop-shadow(0 0 6px rgba(0,255,150,0.5));
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 999;
}

body.nav-open .nav-backdrop,
.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(0,255,150,0.2);
  border: 1px solid rgba(0,255,150,0.4);
  color: #a6ffd6;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: none;
  z-index: 1100;
}

.onescan-pill {
  background: linear-gradient(
    180deg,
    rgba(0,255,150,0.18),
    rgba(0,255,150,0.08)
  );
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  min-height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow:
    0 0 30px rgba(0,255,136,0.45),
    0 0 60px rgba(0,255,136,0.25);
  position: relative;
  overflow: hidden;
  animation: pulseCTA 3s ease-in-out infinite;
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.45);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

@keyframes pulseCTA {
  0%,100% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 35px rgba(0,255,136,0.7); }
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.2);
}

.secondary-cta {
  border: 1px solid rgba(46, 232, 143, 0.4);
}

.secondary-cta:hover {
  background: rgba(46, 232, 143, 0.08);
  box-shadow: 0 0 0 1px rgba(46, 232, 143, 0.6);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.policy-nav a:focus-visible,
.nav-toggle:focus-visible,
.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.22), transparent 60%);
  filter: blur(10px);
  top: -120px;
  right: -140px;
  opacity: 0.7;
  animation: glowFloat 18s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,255,136,0.04), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.97;
  filter: brightness(1.25) contrast(1.35) saturate(1.25);
  transform: scale(1.05);
  pointer-events: none;
  animation: heroZoom 12s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-video {
    transform: scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 45%,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.45) 70%
    );
  pointer-events: none;
  z-index: 1;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(70px, 16vh, 120px) 28px clamp(60px, 12vh, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
  text-shadow:
    0 0 20px rgba(0,255,136,0.25),
    0 0 40px rgba(0,255,136,0.1);
}

.hero-title {
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.2px;
  font-weight: 600;
  text-shadow:
    0 0 12px rgba(0,255,136,0.25),
    0 0 24px rgba(0,255,136,0.1);
}

.hero-title-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-title .hero-word,
.hero-title .hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  background-image:
    linear-gradient(110deg, #00ff88 0%, #6dffc2 45%, #00ff88 100%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  background-size: 200% 100%, 32% 100%;
  background-position: 0% 50%, -60% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 16px rgba(0, 255, 136, 0.45),
    0 0 32px rgba(0, 255, 136, 0.22);
  filter:
    drop-shadow(0 0 12px rgba(0, 255, 136, 0.35))
    drop-shadow(0 0 26px rgba(0, 255, 136, 0.18));
  animation: heroShimmer 10s ease-in-out infinite;
}

.hero-title .hero-word {
  font-weight: 800;
  background-image:
    linear-gradient(110deg, #00f07f 0%, #5fe6b3 45%, #00f07f 100%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
}

.hero-title .hero-tag {
  font-weight: 600;
  font-size: 0.78em;
  letter-spacing: 0.035em;
}

.hero-title .trademark {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
}

@keyframes heroShimmer {
  0% {
    background-position: 0% 50%, -60% 50%;
  }
  50% {
    background-position: 100% 50%, 120% 50%;
  }
  100% {
    background-position: 0% 50%, 260% 50%;
  }
}

.hero-title .accent {
  background: linear-gradient(180deg, #00ff88, #00c972);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.15);
}

.hero-title .vpn {
  letter-spacing: 0;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

h3 {
  margin: 0 0 12px;
}

.subhead {
  font-size: 1.25rem;
  color: rgba(230, 240, 239, 0.85);
  font-weight: 500;
  max-width: 560px;
  margin-bottom: 10px;
}

.hero-subhead-secondary {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-top: 12px;
}

.hero-feature-pill {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  color: #bfffe4;
  font-size: 0.9rem;
  margin: 16px 0;
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.hero-cta-note {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-content p {
  max-width: 90%;
}

.hero-proof {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9;
  color: rgba(255,255,255,0.82);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 12px;
}

.trust-microcopy {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

.feature-box {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.2);
  margin-top: 18px;
  margin-bottom: 18px;
}

.feature-box p {
  margin: 0;
}

.feature-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.feature-box li {
  margin-bottom: 6px;
  opacity: 0.9;
}

.support-text {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 6px 0;
}

.section {
  padding: 90px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-support-strip {
  position: relative;
  padding: 60px 28px 40px;
  overflow: hidden;
}

.hero-support-bg {
  display: none;
}

.hero-support-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  background: linear-gradient(
    160deg,
    rgba(12, 18, 22, 0.85),
    rgba(9, 14, 18, 0.65)
  );
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.hero-support-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at top,
    rgba(0,255,136,0.08),
    transparent 70%
  );
  pointer-events: none;
}

.hero-feature-pill {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.hero-support-inner p,
.hero-support-inner ul {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

@media (min-width: 769px) {
  .hero-support-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-support-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: brightness(0.9) contrast(1.08) saturate(1.08);
  }

  .hero-support-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 10, 12, 0.42), rgba(6, 10, 12, 0.78));
  }

  .hero-support-inner {
    position: relative;
  }
}

.urgency-strip {
  text-align: center;
  padding: 14px;
  background: rgba(0,255,136,0.08);
  border-top: 1px solid rgba(0,255,136,0.15);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  font-weight: 500;
  font-size: 1rem;
  color: #d8fff0;
}

.urgency-strip p {
  margin: 0;
}

.final-cta {
  text-align: center;
  padding: 60px 20px 40px;
}

.final-cta::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 0 auto 20px;
  background: rgba(0,255,136,0.35);
  border-radius: 999px;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta-note {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.75;
}

.final-cta .btn {
  margin-top: 10px;
  padding: 16px 28px;
  font-size: 1.05rem;
  box-shadow: 0 0 40px rgba(0,255,136,0.5);
}

.support-followup {
  padding-top: 20px;
}

.support-followup .support-grid {
  max-width: 720px;
  margin: 0 auto;
}

.mobile-cta,
.sticky-cta {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

section[id] {
  scroll-margin-top: 88px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.preview-helper {
  color: rgba(161, 176, 178, 0.7);
  margin-top: 8px;
  font-size: 0.95rem;
}

.proof-bar {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: linear-gradient(120deg, rgba(0, 255, 136, 0.08), rgba(0, 0, 0, 0.2));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 28px;
  font-weight: 500;
  box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.05);
  box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.05), inset 0 1px 0 rgba(0, 255, 136, 0.06);
}

.proof-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(0, 255, 136, 0.08),
    transparent 70%
  );
  animation: proofGlow 18s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}


.proof-item {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  animation: proofFadeIn 0.8s ease forwards;
}

.proof-item span {
  display: block;
}

.proof-item span:first-of-type {
  color: var(--text);
  font-weight: 600;
}

.proof-item:nth-child(1) { animation-delay: 0.1s; }
.proof-item:nth-child(2) { animation-delay: 0.2s; }
.proof-item:nth-child(3) { animation-delay: 0.3s; }
.proof-item:nth-child(4) { animation-delay: 0.4s; }

.proof-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--accent);
  opacity: 0.8;
}

.proof-item:hover svg {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.35));
}

.grid {
  display: grid;
  gap: 22px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }
}

.card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted);
}

.card h3 {
  font-weight: 700;
}


.card-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-title .title-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0.85;
}

.card-title .title-icon svg {
  width: 16px;
  height: 16px;
}
.card p {
  color: rgba(161, 176, 178, 0.85);
}

.card-subtitle {
  color: var(--accent);
  font-size: 0.9rem;
  margin: -4px 0 10px;
}

.card-subtitle + p {
  margin-bottom: 14px;
}

.card-micro {
  color: rgba(161, 176, 178, 0.7);
  font-size: 0.85rem;
  margin-top: 10px;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(0, 255, 136, 0.7);
  font-weight: 500;
}

.card-link:hover {
  color: var(--accent);
}

.score-tile {
  margin-top: 24px;
  max-width: 720px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  color: var(--accent);
  opacity: 0.8;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.step-card {
  background: var(--card-strong);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: left;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #04150d;
  background: linear-gradient(135deg, var(--accent), rgba(0, 255, 136, 0.5));
  margin-bottom: 16px;
}

.step-icon-green {
  background: linear-gradient(135deg, var(--accent), rgba(0, 255, 136, 0.5));
  color: #04150d;
}

.step-icon-blue {
  background: linear-gradient(135deg, rgba(64, 169, 255, 0.9), rgba(27, 183, 167, 0.85));
  color: #f4fbff;
}

.flow-label {
  margin: 12px 0 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(161, 176, 178, 0.8);
}

.flow-label-vpn {
  color: rgba(0, 255, 136, 0.75);
}

.flow-label-onescan {
  color: rgba(64, 169, 255, 0.75);
}

.flow-subhead {
  display: inline-block;
  margin: 8px 0 20px;
  padding: 6px 12px;
  font-size: 13px;
  color: #8af0c4;
  background: rgba(26, 255, 155, 0.08);
  border: 1px solid rgba(26, 255, 155, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.flow-cta {
  display: inline-block;
  margin-top: 16px;
  color: rgba(0, 255, 136, 0.7);
  font-weight: 500;
}

.flow-cta:hover {
  color: var(--accent);
}

.flow-divider {
  height: 2px;
  margin: 24px 0 16px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.45), rgba(0, 255, 136, 0.15));
  border-radius: 999px;
  opacity: 0.7;
  animation: flowShimmer 12s ease-in-out infinite;
}

@keyframes flowShimmer {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-divider {
    animation: none;
  }
}

.how-it-works {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .how-it-works {
    padding-top: 76px;
  }
}

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

.flow-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.flow-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: blur(2px) contrast(1.15) saturate(1.1);
}

.flow-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
}

.how-it-works .section-header,
.how-it-works .flow-label,
.how-it-works .grid {
  position: relative;
  z-index: 1;
}

.how-it-works .section-header::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.35), transparent);
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .flow-video__media {
    display: none;
  }
}

.secondary-steps .step-card {
  border-color: rgba(105, 87, 217, 0.25);
}

.secondary-steps .step-icon {
  background: linear-gradient(135deg, rgba(105, 87, 217, 0.9), rgba(27, 183, 167, 0.8));
  color: #f3f1ff;
}

.phone-card {
  background: var(--card);
  border-radius: 28px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.phone-card img {
  border-radius: 22px;
  background: linear-gradient(160deg, #0d151a, #101f24);
  padding: 16px;
  margin: 0 auto;
}

.lightbox-trigger {
  cursor: pointer;
}

.phone-card figcaption {
  margin-top: 16px;
  color: var(--muted);
}

.preview-subhead {
  margin-top: 8px;
  color: rgba(161, 176, 178, 0.7);
  font-size: 0.8rem;
}

.phone-card.status-card {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 255, 136, 0.18);
}

.onescan-layout {
  align-items: start;
  margin-top: -6px;
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .onescan-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .phone-mockup {
    margin-top: 4px;
  }
}

.phone-mockup {
  position: relative;
  text-align: center;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  background:
    radial-gradient(circle, rgba(0, 255, 160, 0.26) 0%, rgba(0, 40, 30, 0.14) 46%, transparent 72%);
  filter: blur(16px);
  opacity: 0.24;
  z-index: 0;
  pointer-events: none;
  animation: onescanPhoneGlow 7s ease-in-out infinite;
}

.phone-mockup::after {
  content: "";
  position: absolute;
  inset: -10px 6px -12px;
  border-radius: 36px;
  background: rgba(6, 10, 12, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0.52;
  z-index: 0;
  pointer-events: none;
}

.phone-mockup img,
.phone-mockup video,
.preview-image,
.phone-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
}

.phone-mockup img,
.phone-mockup video {
  max-width: 342px;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  transform: perspective(800px) translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .phone-mockup img,
  .phone-mockup video {
    max-height: 640px;
    width: auto;
  }

  .phone-mockup::before {
    width: 320px;
    height: 320px;
    opacity: 0.45;
  }
}

@media (max-width: 640px) {
  .phone-mockup img,
  .phone-mockup video {
    max-width: 292px;
    width: min(100%, 292px);
  }
}

@media (hover: hover) {
  .phone-mockup img:hover,
  .phone-mockup video:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
  }
}

.phone-mockup figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  position: relative;
  z-index: 1;
}

.caption-note {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: rgba(161, 176, 178, 0.7);
  text-align: center;
  position: relative;
  z-index: 1;
}

.onescan {
  background: radial-gradient(circle at 70% 20%, rgba(0, 255, 136, 0.06), transparent 55%);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.onescan .section-header {
  margin-bottom: 28px;
}

.onescan-subline {
  font-size: 1.05rem;
  color: rgba(230, 240, 239, 0.9);
  margin: -6px 0 14px;
}

.onescan .section-header h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.45), transparent);
  opacity: 0.7;
}

.onescan-note {
  color: rgba(161, 176, 178, 0.8);
  margin: 0 0 18px;
}

.onescan-layout {
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr;
}

.onescan-copy {
  order: 2;
}

.onescan-media {
  order: 1;
  margin-top: 0;
  position: relative;
  --parallax: 0px;
  --frame-offset: 0px;
}

.glass-card {
  background: linear-gradient(160deg, rgba(12, 18, 22, 0.9), rgba(9, 14, 18, 0.7));
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.onescan-step {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: rgba(0, 255, 136, 0.7);
  margin: 0 0 10px;
}

.onescan-benefits {
  list-style: none;
  padding: 0;
  margin: 18px 0 12px;
  display: grid;
  gap: 8px;
  color: rgba(230, 240, 239, 0.9);
}

.onescan-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.onescan-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.7);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.35);
}

.onescan-video-frame {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background: radial-gradient(circle at center, rgba(0,255,136,0.12), rgba(0,255,136,0.02));
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(0,255,136,0.12);
  overflow: hidden;
  transform: translate3d(0, calc(var(--parallax) + var(--frame-offset)), 0);
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: onescanFramePulse 7s ease-in-out infinite;
}

.onescan-video-frame::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(0,255,136,0.18), transparent 70%);
  filter: blur(26px);
  opacity: 0.45;
  z-index: 0;
  animation: onescanGlow 7s ease-in-out infinite;
  pointer-events: none;
}

.onescan-video-frame::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0,255,136,0.18), transparent 70%);
  filter: blur(30px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.video-phone-wrapper {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  z-index: 2;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 28px;
  transition: transform 200ms ease-out;
  transform-style: preserve-3d;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.22);
}

.video-phone-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  border-radius: 28px;
  z-index: 1;
  transition: transform 200ms ease;
}

.phone-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(130, 255, 225, 0.06) 46%,
    rgba(130, 255, 225, 0.12) 50%,
    rgba(130, 255, 225, 0.06) 54%,
    transparent 100%
  );
  opacity: 0.06;
  animation: onescanScanDrift 8s linear infinite;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: soft-light;
}

.scan-overlay {
  display: none;
}

.onescan-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.7), transparent);
  filter: blur(10px);
  opacity: 0.5;
}

.onescan-cta {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.onescan-cta-btn {
  animation: onescanCtaGlow 3.6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.onescan-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.45);
}

.onescan-cta-btn.is-looping {
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.55);
}

.cta-button {
  box-shadow: 0 0 0 rgba(0,255,160,0.0);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cta-button:hover {
  box-shadow: 0 0 18px rgba(0,255,160,0.45);
  transform: translateY(-2px) scale(1.02);
}

@keyframes onescanCtaGlow {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.25);
  }
  50% {
    box-shadow: 0 0 26px rgba(0, 255, 136, 0.45);
  }
}

@keyframes onescanGlow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes onescanFramePulse {
  0%,
  100% {
    box-shadow:
      0 40px 80px rgba(0,0,0,0.6),
      0 0 36px rgba(0,255,136,0.1);
  }
  50% {
    box-shadow:
      0 40px 80px rgba(0,0,0,0.6),
      0 0 50px rgba(0,255,136,0.2);
  }
}

@keyframes onescanPhoneGlow {
  0%,
  100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.32;
  }
}

@keyframes onescanScanDrift {
  0% {
    transform: translateY(-70%);
  }
  100% {
    transform: translateY(70%);
  }
}

.onescan-trustline {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: rgba(161, 176, 178, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .onescan-cta-btn {
    animation: none;
    transform: none;
  }

  .phone-mockup::before {
    animation: none;
    opacity: 0.24;
  }

  .onescan-video-frame::before,
  .phone-video-wrapper::after,
  .scan-overlay,
  .onescan-video-frame {
    animation: none;
  }

  .phone-video-wrapper::after {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .onescan-video-frame {
    margin-top: 10px;
  }

  .onescan-media {
    margin-top: 0;
  }

  .onescan-media .onescan-video-frame,
  .onescan-media .video-phone-wrapper,
  .onescan-media .phone-video-wrapper {
    overflow: visible;
    height: auto;
  }

  .onescan-media .video-phone-wrapper {
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .onescan-media .video-phone-wrapper video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transform: none;
  }

  .video-phone-wrapper {
    max-width: 260px;
  }

  .video-phone-wrapper video {
    object-fit: contain;
    background: #050b11;
  }

  .onescan .section-header {
    overflow: visible;
  }
}

@media (min-width: 900px) {
  .onescan-layout {
    grid-template-columns: 1.05fr 1.1fr;
    align-items: start;
  }

  .onescan-copy {
    order: 1;
  }

  .onescan-media {
    order: 2;
    margin-top: -16px;
    --frame-offset: -8px;
  }

  .onescan-video-frame {
    transform: translate3d(0, calc(var(--parallax) + var(--frame-offset)), 0);
  }
}

.onescan-guard {
  color: rgba(161, 176, 178, 0.8);
  margin-top: 10px;
  font-size: 0.95rem;
}

.score-disclaimer {
  color: rgba(161, 176, 178, 0.8);
  margin-top: 24px;
  font-size: 0.95rem;
}

.onescan-group {
  margin-top: 42px;
}

.section-anchor {
  max-width: var(--max-width);
  margin: 6px auto 18px;
  padding: 0 28px;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(0, 255, 136, 0.55);
}

.vpn-showcase {
  align-items: center;
  margin-bottom: 32px;
}

.vpn-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(16, 32, 24, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45), inset 0 0 24px rgba(0, 0, 0, 0.35);
  max-width: 400px;
  margin-left: auto;
}

.vpn-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.14), transparent 68%);
  opacity: 0.7;
  z-index: 0;
}

.vpn-media::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 34px;
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.18);
  opacity: 0.45;
  animation: vpnGlowPulse 7s ease-in-out infinite;
  z-index: 0;
}

.vpn-video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 26px;
}

@media (hover: hover) {
  .how-it-works .step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }

  .vpn-media {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  }

  .vpn-media:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vpn-media {
    transition: none;
  }

  .vpn-media:hover {
    transform: none;
  }

  .vpn-media::after {
    animation: none;
  }
}

@keyframes vpnGlowPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.55;
  }
}

.pricing .price-card {
  position: relative;
}

.pricing-note {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 680px;
}

.pricing-reassure {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.comparison-table {
  margin-top: 32px;
  position: relative;
}

.comparison-table h3 {
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
  position: relative;
}

.table-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 136, 0) 20%,
    rgba(0, 255, 136, 0.45) 50%,
    rgba(0, 255, 136, 0) 80%
  );
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  background-size: 200% 100%;
  animation: tableGlow 10s ease-in-out infinite;
}

@keyframes tableGlow {
  0% {
    background-position: 200% 0;
    opacity: 0.4;
  }
  50% {
    background-position: 0 0;
    opacity: 0.8;
  }
  100% {
    background-position: -200% 0;
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .table-wrap::before {
    animation: none;
  }

  .nav::after {
    animation: none;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  color: var(--muted);
  font-weight: 600;
  background: rgba(7, 10, 12, 0.6);
}

.security-strip .preview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.preview-strip figure {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-strip img {
  border-radius: 14px;
  background: #0c1418;
  padding: 10px;
}

.preview-strip figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.preview-left {
  display: flex;
  align-items: center;
}

.preview-tabs {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 6px;
  flex-wrap: wrap;
  --glass-angle: 120deg;
  overflow: hidden;
}

.preview-tabs::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(180%);
  background: linear-gradient(
    var(--glass-angle),
    rgba(255, 255, 255, 0.08),
    rgba(0, 255, 150, 0.06),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 40px rgba(0, 255, 150, 0.08),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
  z-index: 0;
  pointer-events: none;
}

.preview-tabs::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(0, 255, 180, 0.05) 45%,
    rgba(0, 255, 180, 0.12) 50%,
    rgba(0, 255, 180, 0.05) 55%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: neuralScan 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.preview-label-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.preview-tab {
  background: rgba(10, 18, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.preview-tab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 16px rgba(44, 255, 178, 0.35);
}

.preview-tab.active {
  color: var(--text);
  background: rgba(0, 255, 150, 0.08);
  border: 1px solid rgba(0, 255, 150, 0.4);
  box-shadow:
    0 0 20px rgba(0, 255, 150, 0.25),
    inset 0 0 12px rgba(0, 255, 150, 0.15);
  transform: scale(1.02);
  animation: previewTabActivate 0.4s ease;
}

.preview-tab.active::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.08), rgba(0, 255, 136, 0.44), rgba(0, 255, 136, 0.08));
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
  transition: opacity 0.24s ease;
}

.preview-tab.preview-tab-soft.active {
  border-color: rgba(0, 255, 136, 0.26);
  box-shadow: 0 0 9px rgba(0, 255, 136, 0.14);
}

.preview-tab.preview-tab-soft.active::before {
  background: rgba(0, 255, 136, 0.36);
}

.preview-tab.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 180, 0.2),
    transparent
  );
  animation: tabShimmer 3s infinite;
  pointer-events: none;
}

.preview-phone {
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  --preview-halo-rotate: 0deg;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --scroll-depth-y: 0px;
  --scroll-drift-y: 0px;
  --cursor-depth-y: 0px;
  --scroll-depth-scale: 1;
  --cursor-depth-scale: 1;
  --hover-depth-y: 0px;
  --hover-depth-scale: 1;
  --trust-hover-scale: 1;
  --cursor-x: 0;
  --cursor-y: 0;
  transform:
    translate(
      var(--magnetic-x),
      calc(
        var(--magnetic-y) +
        var(--scroll-depth-y) +
        var(--scroll-drift-y) +
        var(--cursor-depth-y) +
        var(--hover-depth-y)
      )
    )
    scale(calc(var(--scroll-depth-scale) * var(--cursor-depth-scale) * var(--hover-depth-scale) * var(--trust-hover-scale)));
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.25));
  transition: transform 0.6s ease, filter 0.5s ease, box-shadow 0.25s ease;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 255, 180, 0.12);
}

.preview-phone.depth-react {
  box-shadow:
    calc(var(--cursor-x, 0) * 1px) calc(var(--cursor-y, 0) * 1px) 90px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(0, 255, 180, 0.2);
}

.preview-phone:hover {
  --hover-depth-y: -6px;
  --hover-depth-scale: 1.02;
  filter: drop-shadow(0 40px 90px rgba(0, 255, 150, 0.25));
}

.preview-phone::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%) scale(1);
  background:
    radial-gradient(
      circle,
      rgba(121, 255, 187, 0.16) 0%,
      rgba(121, 255, 187, 0.07) 42%,
      transparent 70%
    );
  filter: blur(20px) hue-rotate(var(--preview-halo-rotate));
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.preview-phone::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 150, 0.18),
    transparent 70%
  );
  filter: blur(30px);
  opacity: 0.7;
  animation: phoneBreath 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.preview-phone img {
  max-width: 350px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.preview-image {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.preview-image.is-fading {
  opacity: 0;
}

.preview-caption {
  transition: opacity 0.3s ease;
}

.preview-caption.is-fading {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .preview-image {
    transition: none;
  }

  .preview-caption {
    transition: none;
  }

  .preview-phone::before,
  .preview-phone::after,
  .preview-tabs::after,
  .preview-tab.active,
  .preview-tab.active::after {
    animation: none;
  }

  .preview-tab {
    transition: none;
  }

  .preview-phone {
    transition: none;
    transform: none;
    filter: none;
  }

  .preview-trust,
  .preview-trust::after,
  .trust-item::before {
    animation: none;
  }
}

@keyframes neuralPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

@keyframes phoneBreath {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.05);
  }
}

@keyframes neuralLine {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes neuralScan {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes trustPulseSoft {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.trust-signals li::before,
.preview-trust-floating .trust-item::before {
  animation: statusPulse 2.8s infinite ease-in-out;
}

@keyframes statusPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

@keyframes neuralGlow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes trustBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
}

@keyframes trustFloat {
  0%,
  100% {
    transform:
      translateY(calc(var(--cursor-y, 0) * -0.15px + 0px))
      scale(calc(1 + var(--cursor-x, 0) * 0.002));
  }
  50% {
    transform:
      translateY(calc(var(--cursor-y, 0) * -0.15px - 6px))
      scale(calc(1 + var(--cursor-x, 0) * 0.002));
  }
}

.section-preview h2,
#preview h2 {
  text-shadow:
    0 0 20px rgba(0, 255, 150, 0.15),
    0 0 60px rgba(0, 255, 150, 0.05);
}

@keyframes previewTabActivate {
  0% {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 0 rgba(0, 255, 136, 0);
    transform: scale(1);
  }
  100% {
    border-color: rgba(0, 255, 136, 0.34);
    box-shadow: 0 0 14px rgba(0, 255, 136, 0.16);
    transform: scale(1.02);
  }
}

@keyframes tabShimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 0.4;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.preview-phone.pulse-ai::before {
  background: radial-gradient(circle, rgba(255, 0, 120, 0.25), transparent 70%);
}

.preview-phone.pulse-device::before {
  background: radial-gradient(circle, rgba(0, 255, 120, 0.25), transparent 70%);
}

.preview-phone.pulse-network::before {
  background: radial-gradient(circle, rgba(255, 120, 0, 0.25), transparent 70%);
}

.preview-phone.pulse-snapshot::before {
  background: radial-gradient(circle, rgba(255, 255, 80, 0.25), transparent 70%);
}

.preview-trust {
  position: relative;
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 255, 150, 0.08);
  box-shadow:
    inset 0 0 20px rgba(0, 255, 150, 0.03),
    0 0 20px rgba(0, 255, 150, 0.04);
  animation: trustBreathe 8s ease-in-out infinite;
}

.preview-trust::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(44, 255, 178, 0.15), transparent 70%);
  filter: blur(24px);
  opacity: 0.6;
  animation: neuralGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(200, 255, 230, 0.85);
  letter-spacing: 0.2px;
}

.preview-trust-floating .trust-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2cffb2;
  box-shadow:
    0 0 6px #2cffb2,
    0 0 12px rgba(44, 255, 178, 0.6);
  display: inline-block;
  margin-right: 8px;
  animation: trustPulseSoft 2.6s infinite ease-in-out;
}

.trust-dot {
  display: none;
}

.preview-layout:has(.preview-trust:hover) .preview-phone {
  --trust-hover-scale: 1.02;
}

.preview-caption {
  margin-top: 12px;
}

.preview-label {
  margin-top: 4px;
}

.preview-cta {
  display: inline-block;
  margin-top: 24px;
  color: rgba(0, 255, 136, 0.7);
  font-weight: 500;
}

.preview-cta:hover {
  color: var(--accent);
  text-decoration: underline;
}

.preview-note {
  margin-top: 22px;
  color: rgba(161, 176, 178, 0.7);
  font-size: 0.9rem;
  padding-left: 12px;
  opacity: 0.9;
}

.preview-note p {
  margin: 4px 0 0;
}

@media (min-width: 900px) {
  .preview-left {
    position: relative;
  }

  .preview-trust-floating {
    position: absolute;
    top: -72px;
    left: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(0, 255, 150, 0.08);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.35),
      inset 0 0 24px rgba(0, 255, 150, 0.03);
    transform:
      translateY(calc(var(--cursor-y, 0) * -0.15px))
      scale(calc(1 + var(--cursor-x, 0) * 0.002));
    transition: transform 0.4s ease;
    animation: trustFloat 7s cubic-bezier(.4,0,.2,1) infinite;
  }

  .preview-trust-floating::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 20px;
    background:
      radial-gradient(circle at center, rgba(44, 255, 178, 0.12), transparent 70%),
      linear-gradient(
        110deg,
        transparent 0%,
        rgba(0, 255, 180, 0.08) 45%,
        rgba(0, 255, 180, 0.18) 50%,
        rgba(0, 255, 180, 0.08) 55%,
        transparent 100%
      );
    filter: blur(18px);
    opacity: 0.6;
    animation: neuralGlow 6s ease-in-out infinite, neuralScan 9s ease-in-out infinite;
    pointer-events: none;
  }

  .preview-phone {
    margin-top: -20px;
  }

  .preview-phone img {
    max-width: 385px;
  }

  .preview-tabs {
    flex-wrap: nowrap;
  }
}

.preview-layout:has(.preview-trust-floating:hover) .preview-tab.active {
  box-shadow:
    0 0 24px rgba(0, 255, 150, 0.35),
    inset 0 0 12px rgba(0, 255, 150, 0.2);
}

@media (max-width: 899px) {
  .preview-trust-floating {
    position: static;
    margin-top: 14px;
    animation: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 7, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(900px, 92vw);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #0c1418;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.price {
  font-size: 2.2rem;
  margin: 10px 0;
}

.price-subtext {
  color: rgba(161, 176, 178, 0.75);
  font-size: 0.9rem;
  margin: 4px 0;
}

.plan-detail {
  color: var(--muted);
}

.featured {
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: var(--glow);
  animation: glowPulse 6s ease-in-out infinite;
}

.pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.badge {
  background: rgba(105, 87, 217, 0.25);
  color: #c7c0ff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-left: 6px;
}

.data-grid {
  display: grid;
  gap: 16px;
}

.data-column {
  background: rgba(5, 6, 7, 0.4);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-column h4 {
  margin-top: 0;
}

.data-column li {
  overflow-wrap: anywhere;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--accent);
  opacity: 0.7;
  font-size: 0.8rem;
}

.disclaimer-icon {
  display: none;
}

.trust-link {
  display: inline-block;
  margin-top: 32px;
  color: rgba(0, 255, 136, 0.7);
  font-weight: 500;
}

.trust-link:hover {
  color: var(--accent);
}

.trust-reassure {
  color: rgba(161, 176, 178, 0.7);
  margin-top: 10px;
}

.faq-list details {
  margin-bottom: 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  display: block;
  width: 100%;
  padding: 6px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer {
  padding: 34px 28px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: hidden;
  width: 100%;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.65;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 32px;
}

.policy-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.policy-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.policy-nav a:hover {
  color: var(--text);
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-section h2 {
  margin: 0 0 10px;
}

.policy-section ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.policy-callout {
  margin-top: 10px;
}

.guard-intro {
  background: rgba(8, 12, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.trust-strip {
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.trust-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 15px;
  color: rgba(230, 240, 239, 0.85);
  line-height: 1.4;
}

.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  flex-shrink: 0;
}

.guard-intro.featured {
  border: 1px solid rgba(0, 255, 136, 0.25);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.08);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.03), rgba(0, 0, 0, 0));
}

.guard-note {
  color: rgba(161, 176, 178, 0.8);
  font-size: 0.95rem;
  margin-top: 10px;
}

.guard-badge {
  display: inline-block;
  margin-top: 8px;
  color: rgba(0, 255, 136, 0.75);
  font-weight: 600;
  font-size: 0.85rem;
}

.section-group {
  margin-bottom: 32px;
}

.differentiation {
  margin-top: 60px;
}

.section-divider {
  height: 1px;
  margin: 50px 0;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0) 0%, rgba(0, 255, 136, 0.2) 50%, rgba(0, 255, 136, 0) 100%);
  opacity: 0.6;
}

.group-title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  color: var(--text);
}

.core-group .card {
  border-color: rgba(0, 255, 136, 0.14);
}

#network-score {
  padding: 28px;
}

.core-group {
  background: linear-gradient(120deg, rgba(0, 255, 136, 0.06), rgba(0, 0, 0, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 24px;
}

.section-group:not(.core-group) .card {
  border-color: rgba(255, 255, 255, 0.04);
}

.section-group:not(.core-group) .card h2 {
  color: rgba(230, 240, 239, 0.92);
}

.differentiation-group .accent-card {
  border-color: rgba(0, 255, 136, 0.24);
  background: linear-gradient(140deg, rgba(0, 255, 136, 0.08), rgba(8, 12, 14, 0.92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 255, 136, 0.12);
}

.differentiation-group .accent-card h3 {
  margin-top: 0;
}

.guard-activity-card {
  position: relative;
  border-color: rgba(0, 255, 136, 0.26);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 16px rgba(0, 255, 136, 0.1);
}

.guard-activity-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.95), rgba(0, 255, 136, 0.25));
}

.guard-activity-tag {
  display: inline-block;
  margin: -2px 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.1);
  color: rgba(190, 255, 220, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.card.limits {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.25);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 255, 136, 0.45);
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-30px, 20px, 0);
  }
}

@keyframes ambientShift {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

@keyframes proofGlow {
  0% {
    transform: translateX(-40%);
    opacity: 0.4;
  }
  50% {
    transform: translateX(40%);
    opacity: 0.8;
  }
  100% {
    transform: translateX(120%);
    opacity: 0.4;
  }
}

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

@media (max-width: 900px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    padding-top: env(safe-area-inset-top);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    opacity: 0;
    height: 100vh;
    height: 100dvh;
    width: 80%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 28px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    gap: 20px;
    background: rgba(6,10,12,0.85);
    backdrop-filter: blur(22px);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transition: transform 0.35s cubic-bezier(.32,1,.23,1), opacity 0.25s ease;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav {
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.32,1,.23,1);
  }

  body.nav-open .mobile-nav {
    transform: translateX(0);
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    backdrop-filter: blur(25px);
    background: rgba(6, 20, 14, 0.88);
    box-shadow:
      -20px 0 60px rgba(0,0,0,0.55),
      inset 1px 0 rgba(0,255,150,0.18);
  }

  .nav-links.open a {
    padding: 14px 8px;
    font-size: 18px;
  }

  .nav-links .btn-primary {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    font-size: 17px;
  }

  .mobile-nav a {
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-nav a:hover {
    opacity: 1;
    transform: translateX(4px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-close {
    display: block;
  }

  .hero-content {
    padding: 120px 20px 100px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .vpn-showcase {
    grid-template-columns: 1fr;
  }

  .vpn-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 18px 20px;
  }

  .trust-strip li {
    font-size: 14px;
  }
}

/* Make the UI the Hero */
.onescan-ui {
  margin-bottom: 28px;
  position: relative;
}

/* Floating App Feel */
.onescan-ui img {
  max-width: 260px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 255, 136, 0.25);
  transform: perspective(900px) rotateX(4deg);
  transition: all 0.3s ease;
}

/* Hover = Alive */
.onescan-ui img:hover {
  transform: perspective(900px) rotateX(0deg) scale(1.03);
}

/* AI Glow Behind UI */
.onescan-ui::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  z-index: -1;
}

.premium-title {
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.45);
}

.premium-ui {
  position: relative;
  margin: 30px auto;
  max-width: 280px;
}

.premium-ui img {
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 255, 136, 0.25);
  transform: perspective(900px) rotateX(4deg);
  transition: all 0.3s ease;
}

.premium-ui img:hover {
  transform: perspective(900px) rotateX(0deg) scale(1.03);
}

.premium-ui::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  z-index: -1;
}

.premium-ui::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 136, 0.12) 50%,
    transparent 100%
  );
  animation: uiScanPulse 6s linear infinite;
  pointer-events: none;
}

@keyframes uiScanPulse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Premium Hero */
.onescan-hero.premium {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Background Glow */
.premium-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

/* Title Upgrade */
.premium-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff, #8affc6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.25);
  margin-bottom: 12px;
}

/* Subtext */
.premium-sub {
  color: rgba(230, 240, 239, 0.8);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.premium-sub span {
  color: var(--accent);
}

/* Glass Card */
.onescan-card {
  background: linear-gradient(
    160deg,
    rgba(20, 30, 32, 0.9),
    rgba(10, 18, 20, 0.7)
  );
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 28px;
  padding: 40px 28px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 255, 136, 0.1);
}

/* Floating Phone */
.onescan-phone img {
  max-width: 260px;
  margin: 0 auto 40px;
  border-radius: 28px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 255, 136, 0.18);
  transform: perspective(900px) rotateX(4deg);
  transition: transform 0.3s ease;
}

.onescan-phone img:hover {
  transform: perspective(900px) rotateX(0deg) scale(1.02);
}

/* Premium Benefits */
.onescan-benefits {
  display: grid;
  gap: 14px;
  max-width: 280px;
  margin: 0 auto;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(230, 240, 239, 0.9);
  font-size: 0.95rem;
  justify-content: center;
}

.benefit .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.7);
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 52px;
  }

  .hero::before {
    opacity: 0.4;
  }

  .hero-title {
    font-size: 2.05rem;
    line-height: 1.2;
  }

  .hero-title .hero-tag {
    display: inline;
    margin-top: 0;
    font-size: 0.85em;
  }

  .hero-title .hero-title-wrap {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25em;
    white-space: nowrap;
  }

  .hero-title .hero-word,
  .hero-title .hero-tag {
    text-shadow:
      0 0 10px rgba(0, 255, 136, 0.3),
      0 0 18px rgba(0, 255, 136, 0.16);
    filter:
      drop-shadow(0 0 8px rgba(0, 255, 136, 0.24))
      drop-shadow(0 0 16px rgba(0, 255, 136, 0.12));
  }

  .hero-highlight {
    opacity: 0.85;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.08);
  }

  .hero-highlight-note,
  .trust-microcopy {
    display: none;
  }

  .cta-benefit {
    display: block;
    margin: 12px 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
  }

  .how-it-works .section-header h2 {
    font-size: 1.5rem;
    opacity: 0.9;
  }

  .vpn .section-header h2 {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.35;
  }

  .vpn-features-label {
    margin: 6px 0 8px;
    color: rgba(161, 176, 178, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .vpn .grid.three-col {
    row-gap: 16px;
  }

  .risk-score-card p {
    opacity: 0.78;
  }

  .how-it-works .section-header::before {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 0 16px;
    background: linear-gradient(
      90deg,
      rgba(0, 255, 136, 0),
      rgba(0, 255, 136, 0.35),
      rgba(0, 255, 136, 0)
    );
    border-radius: 999px;
  }

  .vpn-mobile-cta {
    display: inline-block;
    margin-top: 24px;
    color: rgba(0, 255, 136, 0.8);
    font-weight: 600;
  }

  .how-it-works .grid.three-col {
    gap: 12px;
  }

  .how-it-works .step-card {
    cursor: pointer;
  }

  .how-it-works .step-card p {
    display: none;
  }

  .how-it-works .step-card.is-open p {
    display: block;
  }

  .preview-tabs {
    gap: 8px;
  }

  .preview-tab {
    font-size: 0.85rem;
    opacity: 0.75;
  }

  .preview-tab.active {
    opacity: 1;
    font-weight: 600;
  }

  .preview-tab.preview-tab-soft {
    opacity: 0.55;
    font-size: 0.82rem;
  }

  .preview-layout {
    display: flex;
    flex-direction: column;
  }

  .preview-tabs-wrap,
  .preview-left {
    display: flex;
    flex-direction: column;
  }

  .trust-signals,
  .preview-trust-floating {
    order: 1;
    margin-bottom: 16px;
    align-self: flex-start;
    max-width: 260px;
  }

  .preview-tabs {
    order: 2;
    margin-top: 6px;
  }

  .preview-trust {
    order: 2;
    margin-top: 12px;
    margin-bottom: 16px;
    width: 100%;
    justify-content: space-around;
  }

  .preview-phone {
    order: 3;
  }

  .preview-tabs {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(0, 255, 150, 0.06);
  }

  .preview-tabs::before {
    display: none;
  }

  .preview-trust {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 16px;
    justify-content: space-around;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 255, 150, 0.08);
  }

  .trust-item {
    font-size: 13px;
    gap: 6px;
    flex: 1;
    justify-content: center;
  }

  .trust-signals,
  .preview-trust-floating {
    order: 1;
    max-width: 85%;
    margin: 0 auto 10px auto;
    padding: 8px 14px;
    border-radius: 16px;
    backdrop-filter: blur(18px);
    background: rgba(10, 30, 25, 0.35);
    border: 1px solid rgba(0, 255, 160, 0.08);
    align-self: center;
    font-size: 13px;
  }

  .preview-phone::after {
    opacity: 0.35;
    filter: blur(18px);
  }

  .preview-tabs {
    margin-top: 8px;
  }

  .preview-tab.active {
    box-shadow:
      0 0 18px rgba(0, 255, 150, 0.35),
      inset 0 0 8px rgba(0, 255, 150, 0.25);
  }

  .security-strip .section-header p {
    margin-bottom: 14px;
  }

  .preview-note p {
    font-size: 0.82rem;
    margin: 2px 0;
  }

  .pricing-label {
    margin: 10px 0 6px;
    color: rgba(161, 176, 178, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .pricing .price-card.featured {
    border: 1px solid rgba(0, 255, 136, 0.45);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 255, 136, 0.18);
  }

  .pricing .price-card.featured .price {
    font-size: 2.35rem;
  }

  .pricing .price-card.featured .btn {
    padding: 14px 22px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4), 0 0 14px rgba(0, 255, 136, 0.22);
  }

  .price-popular {
    color: rgba(161, 176, 178, 0.7);
    font-size: 0.85rem;
  }

  .pricing .price-card:not(.featured):not(.monthly) {
    opacity: 0.92;
  }

  .pricing .price-card:not(.featured):not(.monthly) .btn {
    opacity: 0.85;
  }

  .pricing .price-card ul {
    margin-top: 12px;
  }

  .pricing .price-card ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .price-card.monthly ul li:nth-child(n + 6) {
    display: none;
  }

  .price-card.monthly.is-expanded ul li:nth-child(n + 6) {
    display: list-item;
    opacity: 0.75;
  }

  .price-card.monthly .btn {
    opacity: 0.75;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(230, 240, 239, 0.85);
  }

  .price-card.monthly {
    margin-bottom: -6px;
  }

  .monthly-toggle {
    margin-top: 8px;
    background: rgba(8, 12, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
  }

  .comparison-hidden-mobile {
    display: none;
  }

  .comparison-table.is-expanded .comparison-hidden-mobile {
    display: table-row;
  }

  .comparison-table::before {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin: 8px 0 14px;
    background: linear-gradient(
      90deg,
      rgba(0, 255, 136, 0),
      rgba(0, 255, 136, 0.35),
      rgba(0, 255, 136, 0)
    );
    border-radius: 999px;
    opacity: 0.6;
  }

  .comparison-hint {
    margin: 0 0 12px;
    color: rgba(161, 176, 178, 0.7);
    font-size: 0.82rem;
  }

  .trust-micro {
    margin: 0 0 12px;
    color: rgba(161, 176, 178, 0.7);
    font-size: 0.85rem;
  }

  .score-page .section-header h1 {
    margin-bottom: 10px;
  }

  .score-page .section-header p {
    margin-bottom: 12px;
  }

  .score-page .section-header p:nth-of-type(2) {
    opacity: 0.8;
  }

  .score-page .grid.two-col {
    grid-template-columns: 1fr;
  }

  .score-page .card {
    padding: 22px;
  }

  .score-page .card p {
    line-height: 1.65;
  }

  .score-page .score-back {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 12, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .score-page .score-disclaimer {
    margin-top: 16px;
  }

  .policy-nav {
    display: none;
  }

  .privacy-hero .section-header h1 {
    margin-bottom: 12px;
  }

  .privacy-hero .section-header p {
    margin-bottom: 16px;
  }

.policy-trust {
  margin-top: 6px;
  color: rgba(161, 176, 178, 0.75);
  font-size: 0.85rem;
}

@media (min-width: 769px) {
  .policy-page .nav-links .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 220px;
    padding: 12px 18px;
  }
}

.policy-sticky {
  position: sticky;
    top: 64px;
    z-index: 20;
    margin: 0 20px 12px;
    padding: 8px 12px;
    background: rgba(8, 12, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.82rem;
    color: rgba(230, 240, 239, 0.85);
    text-align: center;
    backdrop-filter: blur(6px);
  }

  .nav-links a {
    transition: opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
  }

  .nav-links a:active {
    opacity: 0.7;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.35);
  }

  .nav-links a.is-active {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.25);
  }

  .site-header {
    transition: transform 0.25s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    will-change: transform;
  }

  .site-header.is-hidden {
    transform: translateY(calc(-100% - env(safe-area-inset-top, 0px)));
  }

  .policy-intro,
  .policy-intro-card {
    margin: 0 0 14px;
    color: rgba(161, 176, 178, 0.8);
    font-size: 0.9rem;
  }

  .policy-intro-card {
    padding: 12px 14px;
    background: rgba(8, 12, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .policy-jump {
    margin: 0 0 18px;
  }

  .policy-jump label {
    display: grid;
    gap: 8px;
    color: rgba(161, 176, 178, 0.75);
    font-size: 0.85rem;
  }

  .policy-jump select {
    width: 100%;
    background: rgba(8, 12, 14, 0.7);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .terms-page .section-header h1 {
    margin-bottom: 10px;
  }

  .terms-page .policy-content p {
    max-width: 38ch;
  }

  .terms-page .policy-section {
    margin-bottom: 26px;
  }

  .why-page .comparison-intro {
    margin: 0 0 16px;
    color: rgba(161, 176, 178, 0.8);
    font-size: 0.9rem;
  }

  .why-page .accent-card {
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 14px rgba(0, 255, 136, 0.14);
  }

  .why-page ul li {
    margin-bottom: 8px;
  }

  .security-disclaimer-page .policy-section {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
  }

  .security-disclaimer-page .policy-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
  }

  .disclaimer-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(230, 240, 239, 0.85);
  }

  .disclaimer-icon-warning {
    background: rgba(255, 186, 0, 0.18);
    color: rgba(255, 220, 150, 0.95);
  }

  .disclaimer-icon-info {
    background: rgba(64, 169, 255, 0.18);
    color: rgba(170, 220, 255, 0.95);
  }

  .disclaimer-icon-shield {
    background: rgba(0, 255, 136, 0.18);
    color: rgba(190, 255, 220, 0.95);
  }

  .trust .card {
    padding: 22px;
  }

  .trust .card ul {
    margin-top: 12px;
  }

  .trust-heading {
    font-weight: 700;
    position: relative;
    padding-left: 12px;
  }

  .trust-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 14px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.5);
  }

  .data-column {
    padding: 14px;
  }

  .faq-list details.card {
    padding: 16px;
    margin-bottom: 12px;
  }

  .faq-list summary {
    position: relative;
    padding-right: 24px;
  }

  .faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
  }

  .faq-list details[open] summary::after {
    content: "–";
    opacity: 0.75;
  }

  .support::before {
    content: "";
    display: block;
    width: 36%;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(
      90deg,
      rgba(0, 255, 136, 0),
      rgba(0, 255, 136, 0.35),
      rgba(0, 255, 136, 0)
    );
    opacity: 0.5;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    text-align: left;
  }

  .footer-links a {
    font-size: 0.9rem;
    opacity: 0.85;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    opacity: 1;
  }

  .footer-brand::before {
    content: "";
    display: block;
    width: 36%;
    height: 1px;
    margin: 0 auto 14px;
    background: linear-gradient(
      90deg,
      rgba(0, 255, 136, 0),
      rgba(0, 255, 136, 0.3),
      rgba(0, 255, 136, 0)
    );
    opacity: 0.45;
  }

  .footer-brand {
    text-align: center;
    padding-top: 8px;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .comparison-toggle {
    margin-top: 12px;
    background: rgba(8, 12, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .preview-grid {
    row-gap: 16px;
  }

  .preview-hidden-mobile {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease, padding 0.25s ease;
  }

  .preview-collapsible.is-expanded .preview-hidden-mobile {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    padding: 22px;
    pointer-events: auto;
  }

  .preview-toggle {
    margin-top: 14px;
    background: rgba(8, 12, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .score-tile h3 {
    font-size: 1rem;
    opacity: 0.85;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section.onescan {
    padding-top: 3rem;
  }

  .section.onescan p {
    margin-bottom: 0.75rem;
  }

  .security-strip {
    padding-top: 40px;
  }

  .security-strip h2 {
    font-size: 2rem;
  }

  .security-strip .eyebrow {
    display: none;
  }

  .features-mobile {
    display: grid;
    gap: 12px;
  }

  .features-mobile details {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
  }

  .features-mobile summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 4px;
    font-weight: 600;
    color: var(--text);
  }

  .features-mobile summary::-webkit-details-marker {
    display: none;
  }

  .features-mobile summary::after {
    content: "+";
    margin-left: auto;
    color: rgba(0, 255, 136, 0.7);
    font-size: 1rem;
  }

  .features-mobile details[open] summary::after {
    content: "–";
    color: rgba(0, 255, 136, 0.9);
  }

  .features-mobile details[open] {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 14px rgba(0, 255, 136, 0.18);
  }

  .features-mobile div {
    padding: 0 4px 12px;
    color: rgba(161, 176, 178, 0.85);
    font-size: 0.95rem;
  }

  .phone-mockup::before {
    width: 280px;
    height: 280px;
  }

  .phone-mockup img {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero {
    min-height: 100svh;
  }

  .phone-mockup img,
  .preview-image {
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-video,
  .vpn-video {
    max-height: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero {
    overflow-x: hidden;
  }

  footer nav a,
  .footer-links a {
    white-space: normal;
    margin: 6px 10px;
  }
}

@media (max-width: 1100px) {
  .three-col {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 820px) {
  .three-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-bar {
    padding: 18px 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .section {
    padding: 70px 20px;
  }

  .hero-video {
    opacity: 0.7;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
  }

  .vpn-video {
    filter: contrast(1.15) saturate(1.25);
  }

  .flow-video__media {
    opacity: 0.45;
    filter: blur(2px) contrast(1.2) saturate(1.3);
  }

  .preview-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    backdrop-filter: blur(18px);
    background: rgba(0, 255, 170, 0.05);
    border-radius: 20px;
    padding: 8px;
  }

  .preview-tab {
    flex: 0 0 calc(50% - 10px);
    text-align: center;
    white-space: nowrap;
  }

  .preview-tab:nth-child(1) {
    order: 1;
  }
  .preview-tab:nth-child(2) {
    order: 2;
  }
  .preview-tab:nth-child(3) {
    order: 3;
  }
  .preview-tab:nth-child(4) {
    order: 4;
  }
}

.onescan-page {
  background: #050b0c;
  color: white;
  font-family: sans-serif;
}

.onescan-hero {
  text-align: center;
  padding: 80px 20px;
}

.onescan-image img {
  max-width: 280px;
  margin: 40px auto;
  display: block;
}

.onescan-points {
  margin-top: 30px;
}

.onescan-points .point {
  margin: 12px 0;
  color: #00ffaa;
  opacity: 0.9;
}

.back-btn {
  position: fixed;
  top: 20px;
  left: 16px;
  color: #00ffa3;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .hero-title .accent {
    text-shadow:
      0 0 12px rgba(0, 255, 136, 0.18),
      0 0 24px rgba(0, 255, 136, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-bar::before {
    animation: none;
  }

  .proof-bar::after {
    animation: none;
  }


  .proof-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-video {
    opacity: 0.7;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.85)
    );
  }

  .hero-content {
    padding: clamp(80px, 18vh, 140px) 28px clamp(60px, 12vh, 120px);
  }

  .subhead {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .hero-highlight {
    font-size: 0.95rem;
  }

  .cta-group .btn-primary {
    min-height: 52px;
    font-size: 1.05rem;
    box-shadow: 0 0 22px rgba(0, 255, 136, 0.35);
  }

  .site-header {
    background: rgba(5, 6, 7, 0.75);
    backdrop-filter: blur(10px);
  }

  .nav::after {
    opacity: 0.4;
  }

  .nav-toggle .bar {
    background: #ffffff;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-bar .proof-item:not(:first-child) {
    display: none;
  }
}

/* Mobile / Desktop visibility helpers */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none;
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }

  .features-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-desktop {
    display: none;
  }
}

/* ============================
   MOBILE-ONLY OVERRIDES
   ============================ */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .onescan-mobile-preview {
    padding: 20px 20px 10px;
  }

  .onescan-mobile-preview .container {
    padding: 24px 18px 18px;
  }

  .onescan-mobile-preview h2 {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  main > section {
    order: 10;
  }

  #product {
    order: 1;
  }

  .onescan {
    display: contents;
  }

  .onescan .section-header {
    order: 2;
  }

  .onescan-note,
  .onescan-trust {
    order: 3;
  }

  .proof-bar {
    order: 4;
  }

  .onescan-layout {
    order: 5;
  }

  .features-desktop,
  .features-mobile {
    order: 6;
  }

  .onescan .section-header,
  .onescan-note,
  .onescan-trust,
  .onescan-layout,
  .features-desktop,
  .features-mobile {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid,
  .grid.two-col,
  .grid.three-col {
    display: block;
  }

  .card {
    margin-bottom: 16px;
  }

  .onescan-features,
  .feature-list,
  .feature-bullets {
    display: none;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .card p {
    max-width: 42ch;
  }

  .eyebrow,
  .score-disclaimer,
  .security-disclaimer {
    display: none;
  }

  .onescan {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .onescan .section-header {
    margin-bottom: 16px;
  }

  .onescan-note {
    margin: 0 0 8px;
  }

  .onescan-trust {
    margin: 0 0 12px;
  }

  .trust-strip {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .onescan-layout {
    margin-top: 0;
    margin-bottom: 10px;
    gap: 8px;
  }

  .onescan-layout > div {
    margin-bottom: 0;
  }

  .phone-mockup {
    margin: 4px auto 6px;
  }

  .phone-mockup::before {
    width: 220px;
    height: 220px;
    transform: translate(-50%, -52%);
  }

  .phone-mockup::after {
    inset: -6px 10px -8px;
    opacity: 0.4;
  }

  .phone-mockup figcaption {
    margin-top: 8px;
  }

  .caption-note {
    margin-top: 4px;
  }

  .features-desktop {
    display: block;
  }

  .features-mobile {
    display: none;
  }

  .onescan .onescan-group .grid > .card:nth-child(n + 3) {
    display: none;
  }

  .onescan .onescan-group:nth-of-type(2) .group-title,
  .onescan .onescan-group:nth-of-type(3) .group-title,
  .features-mobile .group-title {
    display: none;
  }

  .proof-bar {
    display: block;
    padding: 12px 20px;
    margin-top: 12px;
    margin-bottom: 24px;
    border-top: 0;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(
      180deg,
      rgba(10, 18, 20, 0.9) 0%,
      rgba(10, 18, 20, 0.65) 45%,
      rgba(8, 12, 14, 0.4) 100%
    );
  }

  .proof-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 255, 136, 0.08);
  }

  .proof-item:last-child {
    margin-bottom: 0;
  }

  .proof-item svg {
    grid-row: 1 / span 2;
  }

  .proof-item span {
    grid-column: 2;
  }

  .proof-item span + span {
    color: rgba(161, 176, 178, 0.85);
    font-size: 0.9rem;
  }

  .proof-item span:first-of-type {
    margin-bottom: 2px;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    line-height: 1.8;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: clamp(80px, 18vh, 140px) 28px clamp(60px, 12vh, 120px);
  }

  .cta-group {
    margin-bottom: 12px;
  }

  .cta-group .btn:not(.btn-primary) {
    display: none;
  }

  .hero-video {
    filter: brightness(1.12) contrast(1.12) saturate(1.25);
    object-position: center 35%;
  }

  .hero::before {
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 0;
    background: radial-gradient(
      70% 60% at 50% 35%,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.75)
    );
    filter: none;
    opacity: 1;
    animation: none;
  }
}




@media (max-width: 768px) {
  .trust-strip {
    padding: 18px 20px;
  }

  .trust-strip li {
    font-size: 14px;
  }
}



/* Glass Card */
.scan-glass-card {
  margin: 30px auto;
  padding: 18px 22px;
  width: 90%;
  border-radius: 20px;
  background: rgba(0, 255, 170, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 35px rgba(0, 255, 170, 0.15);
  position: relative;
}

/* Section Title */
.scan-section-title {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #00ffa6;
}

/* Scan List */
.scan-checks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Scan Item (Glass Row) */
.scan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 255, 170, 0.05);
  border: 1px solid rgba(0, 255, 170, 0.15);
  padding: 14px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* Icon */
.scan-icon {
  font-size: 22px;
  margin-right: 12px;
}

/* Status Pulse */
.scan-status {
  width: 10px;
  height: 10px;
  background: #00ffa6;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffa6;
  animation: scanPulse 2.5s infinite;
}

@keyframes scanPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* Scan Shimmer */
.scan-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0, 255, 170, 0.15), transparent);
  animation: scanShimmer 6s infinite;
}

@keyframes scanShimmer {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .scan-checks {
    padding: 0 12px;
  }

  .scan-item {
    flex-direction: row;
    align-items: center;
  }
}

/* Back button premium */
.scan-back {
  color: #00ffa6;
  font-size: 16px;
  text-decoration: none;
  margin: 15px;
  display: inline-block;
}

/* Premium scan grouping */
.scan-group {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg,
    rgba(0,255,150,0.05),
    rgba(0,0,0,0.25)
  );
  border: 1px solid rgba(0,255,150,0.15);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 30px rgba(0,255,150,0.05),
    inset 0 0 20px rgba(255,255,255,0.02);
}

/* Section titles */
.scan-group-title {
  font-size: 0.9rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(0,255,150,0.7);
  margin-bottom: 12px;
  position: relative;
}

.scan-group-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg,
    rgba(0,255,150,0.6),
    transparent
  );
}

/* Premium Scan Items */
.scan-item.premium {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.scan-item.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,150,0.15);
}

/* AI layer glow */
.scan-item.ai {
  background: linear-gradient(
    120deg,
    rgba(100,80,255,0.05),
    rgba(0,255,150,0.04)
  );
  border: 1px solid rgba(120,160,255,0.18);
}

/* Live Status Pulse */
.scan-status.live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff99;
  box-shadow:
    0 0 8px #00ff99,
    0 0 16px rgba(0,255,150,0.6);
  animation: scanLivePulse 2.4s infinite ease-in-out;
}

@keyframes scanLivePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

/* Neural Scan Shimmer */
.scan-item::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(0,255,150,0.08) 45%,
    rgba(0,255,150,0.18) 50%,
    rgba(0,255,150,0.08) 55%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: scanSweep 6s infinite;
  pointer-events: none;
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .scan-checks {
    padding: 0 12px;
  }

  .scan-item {
    flex-direction: row;
    align-items: center;
  }
}

.onescan-page .onescan-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}

.onescan-page .onescan-media {
  display: flex;
  justify-content: center;
  transform: translateY(var(--parallax, 0px));
  transition: transform 0.3s ease-out;
}

.onescan-page .onescan-value {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.onescan-page .scan-glass-card {
  background: rgba(0, 255, 170, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 170, 0.15);
  padding: 28px 32px;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(0, 255, 170, 0.08);
  position: relative;
}

.onescan-page .scan-glass-card p {
  margin: 10px 0;
  color: #b7f7df;
  font-size: 15px;
}

.onescan-page .onescan-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.onescan-page .benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d6fff2;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.onescan-page .benefit-dot {
  width: 8px;
  height: 8px;
  background: #00ffaa;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ffaa;
  animation: pulse 2s infinite ease-in-out;
}

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

@media (max-width: 900px) {
  .onescan-page .onescan-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .onescan-page .onescan-value {
    align-items: center;
  }

  .onescan-page .onescan-benefits {
    grid-template-columns: 1fr;
  }
}

.onescan-page .onescan-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.15), transparent);
  filter: blur(80px);
  z-index: 0;
}

.onescan-mobile-preview {
  padding: 40px 20px 60px;
  text-align: center;
}

.onescan-mobile-preview .container {
  max-width: 460px;
  margin: 0 auto;
  padding: 28px 24px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 10, 12, 0.96) 0%, rgba(7, 16, 15, 0.92) 100%);
  border: 1px solid rgba(0, 255, 170, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32), 0 0 32px rgba(0, 255, 140, 0.08);
}

.onescan-mobile-preview .preview-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #00ff9c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onescan-mobile-preview h2 {
  margin: 0 0 10px;
}

.onescan-mobile-preview p {
  margin: 0;
  color: rgba(214, 255, 242, 0.82);
}

.onescan-mobile-preview .preview-note {
  display: block;
  margin-top: 14px;
  color: rgba(139, 255, 209, 0.72);
  opacity: 0.7;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.phone-demo {
  max-width: 360px;
  margin: 40px auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 140, 0.25);
}

.phone-demo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(0, 255, 140, 0.25), transparent 40%);
  pointer-events: none;
}

.phone-demo::after {
  content: "";
  position: absolute;
  inset: 10px 28%;
  height: 18px;
  border-radius: 999px;
  background: rgba(4, 10, 9, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.onescan-video {
  width: 100%;
  height: auto;
  display: block;
  background: #030807;
  object-fit: cover;
}

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

@media (prefers-reduced-motion: reduce) {
  .phone-demo {
    animation: none;
  }
}

.scan-intelligence {
  margin-top: 80px;
  text-align: center;
}

.scan-intelligence h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.scan-sub {
  color: #9edfc6;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

.scan-check {
  background: rgba(0,255,170,0.03);
  border: 1px solid rgba(0,255,170,0.15);
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.scan-check:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,170,0.15);
}

.scan-check h3 {
  margin-bottom: 8px;
  color: #00ffaa;
}

.scan-check p {
  font-size: 14px;
  color: #c8fff0;
}

@media (max-width: 900px) {
  .scan-grid {
    grid-template-columns: 1fr;
  }
}

.scan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

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

.scan-left h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.scan-sub {
  color: #9edfc6;
  margin-bottom: 30px;
}

.scan-benefits {
  list-style: none;
  padding: 0;
}

.scan-benefits li {
  margin-bottom: 12px;
  color: #00ffaa;
  position: relative;
  padding-left: 24px;
}

.scan-benefits li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #00ffaa;
}

.scan-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.scan-check {
  background: rgba(0,255,170,0.03);
  border: 1px solid rgba(0,255,170,0.15);
  padding: 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.scan-check:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0,255,170,0.15);
}

.scan-check h3 {
  margin-bottom: 6px;
  color: #00ffaa;
}

.scan-check p {
  font-size: 14px;
  color: #c8fff0;
}

@media (max-width: 900px) {
  .scan-layout {
    grid-template-columns: 1fr;
  }

  .scan-right {
    grid-template-columns: 1fr;
  }

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

/* Trust Strip */
.scan-trust {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.scan-trust-card {
  display: flex;
  gap: 30px;
  padding: 18px 40px;
  border-radius: 20px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.2);
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #a6ffd5;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
}

/* Scan Flow */
.scan-flow {
  margin-top: 90px;
  text-align: center;
}

.scan-flow-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flow-step {
  padding: 20px;
  border-radius: 16px;
  background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.12);
}

/* Why Section */
.scan-why {
  margin-top: 100px;
  text-align: center;
}

.scan-why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.12);
}

/* Timeline */
.scan-timeline {
  margin-top: 80px;
  text-align: center;
}

.timeline {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-step span {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ff88;
  margin-bottom: 10px;
}

/* Neural Pulse */
.neural-layer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pulse {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,255,136,0.2), transparent);
  border-radius: 50%;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* AI Neural Glow Behind Checks */
.neural-glow {
  position: relative;
}

.neural-glow::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0,255,136,0.15), transparent);
  filter: blur(60px);
  z-index: -1;
}

/* Animated Scan Wave */
.scan-wave {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 300px;
  background: radial-gradient(circle at center, rgba(0,255,150,0.15), transparent 70%);
  animation: scanWave 6s ease-in-out infinite;
  pointer-events: none;
}

/* AI Thinking Shimmer */
.ai-thinking {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,150,0.08),
    transparent
  );
  animation: aiShimmer 4s linear infinite;
  pointer-events: none;
}

@keyframes aiShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Live Risk Model Indicator */
.live-risk-model {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 40px;
  font-size: 14px;
  color: #7dffd6;
}

.risk-pulse {
  width: 10px;
  height: 10px;
  background: #00ffa2;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffa2;
  animation: riskPulse 2s infinite;
}

@keyframes riskPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Neural Pulse Rings */
.pulse-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,255,150,0.15), transparent 70%);
  border-radius: 50%;
  animation: pulseRing 4s infinite ease-out;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* Alignment Fix */
.scan-layout {
  align-items: start;
  gap: 60px;
}

.scan-left {
  max-width: 520px;
}

.scan-right {
  position: relative;
}

@keyframes gridMove {
0% { background-position:0 0;}
100% { background-position:100% 100%;}
}

.scan-wave {
position:absolute;
width:100%;
height:200px;
background:linear-gradient(90deg, transparent, rgba(0,255,150,0.15), transparent);
animation: scanWave 4s infinite linear;
top:50%;
transform:translateY(-50%);
}

@keyframes scanWave {
0% { transform:translateX(-100%) translateY(-50%);}
100% { transform:translateX(100%) translateY(-50%);}
}

.live-risk-model {
margin-top:20px;
color:#00ffa6;
display:flex;
align-items:center;
gap:10px;
font-size:14px;
}

.pulse-dot {
width:10px;
height:10px;
background:#00ffa6;
border-radius:50%;
animation:pulse 2s infinite;
}

@keyframes pulse {
0% {box-shadow:0 0 0 0 rgba(0,255,150,0.7);}
70% {box-shadow:0 0 0 10px rgba(0,255,150,0);}
100% {box-shadow:0 0 0 0 rgba(0,255,150,0);}
}

.timeline {
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
flex-wrap:wrap;
}

.step {
color:#b6ffe2;
font-size:14px;
text-align:center;
}

.step span {
display:block;
width:10px;
height:10px;
background:#00ffa6;
margin:0 auto 10px;
border-radius:50%;
animation:pulse 2s infinite;
}

.score-meter {
width:300px;
height:20px;
border:1px solid rgba(0,255,150,0.4);
border-radius:20px;
margin:20px auto;
position:relative;
overflow:hidden;
}

.score-fill {
height:100%;
width:65%;
background:linear-gradient(90deg, #00ffa6, #00ffcc);
animation:scoreGrow 3s ease forwards;
}

@keyframes scoreGrow {
from {width:0;}
to {width:65%;}
}

.score-value {
display:block;
text-align:center;
margin-top:10px;
color:#00ffa6;
}

.ai-thinking {
position:relative;
}

.ai-thinking::before {
content:'';
position:absolute;
top:0;
left:-100%;
width:200%;
height:100%;
background:linear-gradient(90deg, transparent, rgba(0,255,150,0.2), transparent);
animation: shimmer 5s infinite;
}

@keyframes shimmer {
0% {left:-100%;}
100% {left:100%;}
}

.scan-complete {
animation:completePulse 1s ease-in-out;
}

@keyframes completePulse {
0% {transform:scale(1);}
50% {transform:scale(1.05);}
100% {transform:scale(1);}
}

/* OneScan premium overrides */
.onescan-page {
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.neural-grid {
  position: fixed;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0, 255, 136, 0.08), transparent 50%),
    radial-gradient(circle at 30% 20%, rgba(0,255,170,.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0,255,170,.1), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,255,170,.12), transparent 40%);
  background-size: 200% 200%;
  animation: neuralMove 18s ease-in-out infinite, gridMove 20s infinite linear;
}

@keyframes neuralMove {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.onescan-page .premium-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 110px 20px 84px;
  overflow: hidden;
}

.onescan-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.onescan-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.04);
}

.onescan-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.9) 70%
    );
}

.onescan-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 160px;
  padding-bottom: 120px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
}

.ai-label {
  color: rgba(0, 255, 136, 0.7);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.7;
}

.ai-label-mark {
  font-size: 0.72em;
  vertical-align: super;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.18), transparent 60%);
  filter: blur(50px);
  animation: heroPulse 12s infinite ease-in-out;
  z-index: -1;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.ai-title {
  font-size: clamp(3.4rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: #00ffcc;
  background: linear-gradient(90deg, #00ff88, #5fffc6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(0,255,136,0.25),
    0 0 24px rgba(0,255,136,0.1);
}

.ai-subtitle {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.ai-subtitle span {
  display: block;
  color: #9efed0;
}

.ai-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(4, 16, 13, 0.72);
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.live-risk-model {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0,255,136,0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0,255,136,0.6);
  }
}

.hero-micro {
  color: rgba(181, 255, 226, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline .step span {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  box-shadow: 0 0 12px #00ff88;
  animation: onescanDotPulse 2.5s infinite;
}

@keyframes onescanDotPulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.scan-right {
  display: block;
  position: relative;
}

.ai-thinking {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  isolation: isolate;
}

.ai-thinking::before {
  display: none;
}

.ai-thinking::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 255, 136, 0.08), transparent);
  animation: thinking 6s infinite;
  pointer-events: none;
  z-index: 0;
}

.ai-thinking > * {
  position: relative;
  z-index: 1;
}

@keyframes thinking {
  0% { opacity: 0.1; }
  50% { opacity: 0.6; }
  100% { opacity: 0.1; }
}

.scan-check {
  background: rgba(20, 40, 35, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.35s ease;
}

.scan-check:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 136, 0.35);
}

.ai-exposure-sim {
  margin-top: 48px;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 18, 17, 0.92), rgba(6, 13, 12, 0.78));
  border: 1px solid rgba(0, 255, 136, 0.14);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28), 0 0 40px rgba(0, 255, 136, 0.08);
}

.ai-exposure-sim .sim-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.ai-exposure-sim .sim-copy p {
  color: rgba(214, 255, 242, 0.78);
}

.sim-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.signal-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(12, 26, 23, 0.75);
  border: 1px solid rgba(0, 255, 136, 0.12);
  color: #d8fff3;
  text-align: center;
  font-size: 0.95rem;
}

.signal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}

.phone-demo {
  max-width: 360px;
  margin: 40px auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 140, 0.25);
}

.phone-demo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(0, 255, 140, 0.25), transparent 40%);
  pointer-events: none;
}

.phone-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 255, 136, 0.12), transparent);
  animation: scanBeam 4s linear infinite;
  pointer-events: none;
}

.phone-demo-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 18px;
  border-radius: 999px;
  background: rgba(4, 10, 9, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

@keyframes scanBeam {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.onescan-finale {
  margin: 72px auto 0;
  padding: 44px 32px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 18, 16, 0.92), rgba(5, 11, 10, 0.88));
  border: 1px solid rgba(0, 255, 136, 0.14);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.08);
}

.onescan-finale h2 {
  margin-bottom: 14px;
}

.onescan-finale p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(214, 255, 242, 0.8);
}

.final-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.final-badges div {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(13, 25, 22, 0.84);
  border: 1px solid rgba(0, 255, 136, 0.14);
  color: #d6fff2;
}

@media (max-width: 900px) {
  .ai-thinking {
    grid-template-columns: 1fr;
  }

  .sim-signals,
  .final-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-title {
    font-size: 3rem;
  }

  .onescan-page .premium-hero {
    min-height: 62vh;
    padding-top: 96px;
    padding-bottom: 68px;
  }

  .hero-glow {
    width: 420px;
    height: 420px;
  }

  .ai-exposure-sim,
  .onescan-finale {
    padding: 28px 20px;
  }

  .sim-signals,
  .final-badges {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neural-grid,
  .hero-glow,
  .phone-demo,
  .phone-demo::after,
  .timeline .step span,
  .ai-thinking::after {
    animation: none;
  }
}

.onescan-page .onescan-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.16), transparent 38%),
    linear-gradient(180deg, #03110d 0%, #020806 100%);
}

.onescan-showcase {
  padding: 40px 20px 90px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.showcase-header {
  margin-bottom: 30px;
}

.showcase-header p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(230, 240, 239, 0.78);
}

.showcase-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-phone::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.18), transparent 65%);
  filter: blur(24px);
  opacity: 0.9;
  z-index: 0;
}

.phone-frame {
position: relative;
z-index: 1;
width: min(100%, 360px);
border-radius:32px;
padding: 12px;
background: linear-gradient(180deg, #0b1512, #050a08);
overflow:hidden;
border:1px solid rgba(0,255,170,.25);
box-shadow:
0 20px 60px rgba(0,0,0,.6),
0 0 40px rgba(0,255,170,.15);
animation: phoneFloat 6s ease-in-out infinite;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 255, 136, 0.08), transparent);
  animation: scanBeam 4.5s linear infinite;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 22px;
  border-radius: 999px;
  background: black;
  z-index: 3;
}

.onescan-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #000;
}

.showcase-note {
  margin-top: 16px;
  color: rgba(230, 240, 239, 0.7);
  font-size: 13px;
}

.hero-scan-lines {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin: 22px auto 0;
  min-height: 84px;
  text-align: left;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.hero-scan-lines span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(194, 255, 230, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  will-change: opacity, transform;
  animation: onescanScanText 6s infinite;
}

.hero-scan-lines span:nth-child(1) { animation-delay: 0s; }
.hero-scan-lines span:nth-child(2) { animation-delay: 2s; }
.hero-scan-lines span:nth-child(3) { animation-delay: 4s; }

@keyframes onescanScanText {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; }
  40% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .onescan-page .onescan-hero {
    min-height: 62vh;
  }

  .onescan-showcase {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .showcase-phone::before {
    width: 320px;
    height: 320px;
  }

  .hero-scan-lines span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame,
  .phone-frame::after,
  .hero-scan-lines span {
    animation: none;
  }

  .hero-scan-lines span {
    opacity: 1;
    transform: none;
  }
}

.onescan-page .premium-hero,
.onescan-page .onescan-hero {
  min-height: 80vh;
  padding-bottom: 80px;
  overflow: visible;
  isolation: isolate;
}

.onescan-demo {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 20px 90px;
}

.demo-wrapper {
  position: relative;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.demo-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,140,0.3), transparent 70%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.demo-video {
  width: 100%;
  display: block;
  transform: scale(1.02);
  border-radius: 24px;
  box-shadow:
    0 0 60px rgba(0,255,150,0.2),
    0 20px 60px rgba(0,0,0,0.6);
  animation: videoZoom 6s ease-in-out infinite;
}

@keyframes videoZoom {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.demo-caption {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.7;
}

.onescan-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
}

.demo-wrapper {
  width: min(420px, 100%);
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(3, 10, 8, 0.96), rgba(0, 0, 0, 0.9));
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(0,255,150,0.15);
  margin-bottom: 0;
  padding: 0 0 20px;
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  body.onescan-page .onescan-demo,
  body.onescan-page .onescan-demo.reveal,
  body.onescan-page .onescan-demo.reveal.in-view {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
    padding: 60px 20px;
    min-height: 60vh;
  }

  body.onescan-page #onescan-demo {
    scroll-margin-top: 100px;
  }

  .onescan-demo {
    margin-top: 88px;
    padding-bottom: 72px;
  }

  .demo-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.ai-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #00ffae, #3cffd0, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0,255,170,.3);
}

.scan-wave {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffae, transparent);
  animation: scanMove 6s linear infinite;
  opacity: .3;
}

@keyframes scanMove {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.score-meter {
  position: relative;
  height: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.score-fill {
  position: absolute;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #00ffae, #00ffd0);
  animation: scorePulse 4s infinite;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.onescan-demo {
  position: relative;
  padding: 96px 20px 40px;
  transform: translateZ(0);
  will-change: transform;
  background: radial-gradient(circle at center, rgba(0,255,170,.08), transparent 60%);
}

body.onescan-page .onescan-demo.active {
  opacity: 1;
  transform: translateY(0);
}

.video-phone-wrapper {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #020404, #050b11);
  padding: 6px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.6),
    0 0 30px rgba(0,255,136,0.2);
  transform: perspective(1200px) rotateX(5deg) scale(1.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatPhone 6s ease-in-out infinite;
}

.video-overlay-text {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  pointer-events: none;
}

.demo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px 22px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 28%, rgba(1, 8, 6, 0.88) 100%);
  color: #effff7;
  text-align: left;
  cursor: pointer;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.video-phone-wrapper.is-playing .demo-fallback {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-fallback-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(6, 22, 17, 0.78);
  border: 1px solid rgba(0, 255, 170, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4), 0 0 28px rgba(0, 255, 170, 0.18);
  position: relative;
}

.demo-fallback-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #59ffd1;
}

.demo-fallback-copy {
  display: grid;
  gap: 6px;
}

.demo-fallback-copy strong {
  font-size: 1rem;
  font-weight: 600;
}

.demo-fallback-copy span {
  color: rgba(224, 255, 244, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (hover: hover) {
  .video-phone-wrapper:hover {
    transform: perspective(1200px) rotateX(0deg) scale(1.03);
    box-shadow:
      0 60px 120px rgba(0,0,0,0.7),
      0 0 40px rgba(0, 255, 136, 0.25);
  }
}

.video-phone-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: 0 0 30px rgba(0,255,136,0.25);
  opacity: 0.4;
  animation: scanPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.video-phone-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.3), transparent);
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes scanPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes deviceGlow {
  0%,100% {
    opacity:.4;
    transform:scale(1);
  }
  50% {
    opacity:.9;
    transform:scale(1.2);
  }
}

@keyframes floatPhone {
  0%,100% {
    transform:perspective(1200px) rotateX(5deg) translateY(0);
  }
  50% {
    transform:perspective(1200px) rotateX(5deg) translateY(-12px);
  }
}

.demo-caption {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  opacity: 0.95;
}

.onescan-demo:hover .video-phone-wrapper {
  transform: perspective(1000px) rotateX(0deg) scale(1.05);
}

.video-phone-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@keyframes neuralMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

.video-phone-wrapper::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,170,.25), transparent);
  animation: scanSweep 4s infinite;
  pointer-events: none;
}

@keyframes scanSweep {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(60%); }
}

.score-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#00ffa6,#00ff88);
  animation: scoreBuild 3s ease forwards;
}

@keyframes scoreBuild {
  from { width: 0; }
  to { width: 72%; }
}

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

.scan-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
}

.scan-highlights::before {
  content: "";
  position: absolute;
  inset: -48px -20px;
  background: radial-gradient(circle at center, rgba(0,255,170,.12), transparent 65%);
  filter: blur(52px);
  pointer-events: none;
  z-index: -1;
}

.onescan-marketing {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.marketing-header {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.marketing-header h2 {
  margin: 10px 0 12px;
}

.marketing-header p {
  margin: 0;
  color: rgba(214, 255, 242, 0.78);
  line-height: 1.65;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.marketing-card {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(0,255,150,0.18);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.marketing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0,255,160,0.25);
}

.marketing-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.marketing-caption {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  text-align: center;
}

.highlight {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,255,150,0.15);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.32), 0 0 30px rgba(0,255,170,.16);
  border-color: rgba(0,255,170,.3);
}

.highlight h3 {
  color: #39f7c8;
  margin-bottom: 8px;
}

.highlight p {
  opacity: 0.8;
  font-size: 14px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,160,0.12), transparent 65%);
  filter: blur(40px);
  animation: titlePulse 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes titlePulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.65; transform: translateX(-50%) scale(1.12); }
}

.demo-stat {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  opacity: 0.9;
}

.demo-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0,255,136,0.25), rgba(0,255,136,0.08));
  border: 1px solid rgba(0,255,136,0.4);
  box-shadow:
    0 0 25px rgba(0,255,136,0.35),
    0 0 50px rgba(0,255,136,0.2);
  animation: ctaPulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .demo-cta {
    width: min(100%, 280px);
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  .sticky-cta {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 340px;
    z-index: 1200;
    text-align: center;
  }

  .sticky-cta a {
    display: block;
    padding: 16px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(0,255,136,0.3), rgba(0,255,136,0.1));
    border: 1px solid rgba(0,255,136,0.5);
    color: #eafff7;
    font-weight: 600;
    box-shadow:
      0 0 30px rgba(0,255,136,0.4),
      0 0 60px rgba(0,255,136,0.2);
  }
}

.fade-divider {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(5,7,8,0),
    rgba(5,7,8,1)
  );
}

.scan-highlights {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  justify-content: center;
}

.scan-highlights .highlight:last-child {
  grid-column: 1 / -1;
  max-width: 320px;
  margin: 0 auto;
}

.onescan-checks {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 20px;
}

body.onescan-page .onescan-marketing,
body.onescan-page .scan-highlights,
body.onescan-page .onescan-checks {
  display: none;
}

body.onescan-page .footer {
  margin-top: 24px;
  background: #000;
}

.checks-copy {
  background: linear-gradient(180deg, rgba(0,32,28,.6), rgba(0,10,12,.9));
  border: 1px solid rgba(0,255,170,.12);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.checks-grid {
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0,255,170,.12);
  color: rgba(226,255,245,.88);
  font-size: 0.98rem;
  text-align: left;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 1px solid rgba(57,247,200,.55);
  box-shadow: 0 0 14px rgba(57,247,200,.2);
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #39f7c8;
  box-shadow: 0 0 10px rgba(57,247,200,.45);
}

.onescan-close {
  max-width: 760px;
  margin: 56px auto 96px;
  padding: 0 20px;
  text-align: center;
}

.onescan-close h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  color: rgba(236,255,248,.96);
}

.onescan-close p {
  margin: 0 auto 8px;
  max-width: 620px;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.6;
  color: rgba(223,243,237,.78);
}

.onescan-close p:last-of-type {
  color: rgba(187,255,227,.88);
}

.hero-actions {
  margin-top: 28px;
}

.btn-primary {
  box-shadow: 0 0 30px rgba(0,255,150,0.5);
}

.onescan-primary-cta,
.onescan-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00ffae, #53ffd5);
  color: #02110c;
  font-weight: 700;
  text-decoration: none;
  animation: onescanCtaGlow 3.6s ease-in-out infinite;
}

.onescan-primary-cta {
  box-shadow: 0 0 35px rgba(0,255,136,0.5);
  transform: translateY(0);
  transition: all 0.25s ease;
  animation: ctaPulse 3s ease-in-out infinite;
}

.onescan-primary-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 18px rgba(0,255,136,0.3);
  }
  50% {
    box-shadow: 0 0 32px rgba(0,255,136,0.6);
  }
}

.onescan-footer-cta {
  margin-top: 22px;
}

@media (max-width: 768px) {
  .final-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .mobile-cta,
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 9999;
  }

  .mobile-cta .btn,
  .sticky-cta .btn,
  .sticky-cta .sticky-btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      radial-gradient(
        circle at 30% 45%,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.42) 70%
      );
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .subhead {
    font-size: 1.05rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }

  .scan-highlights {
    grid-template-columns: 1fr;
  }

  .scan-highlights .highlight:last-child {
    grid-column: auto;
    max-width: none;
  }

  .checks-copy {
    padding: 30px 24px;
  }

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

  .onescan-close {
    margin-bottom: 88px;
  }

  .marketing-caption {
    font-size: 16px;
  }

  .demo-fallback {
    padding: 18px;
  }
}

.demo-video {
  width: 100%;
  border-radius: 30px;
  animation: phoneFloat 8s ease-in-out infinite;
}

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

.section-divider {
  height: 1px;
  width: 70%;
  margin: 120px auto;
  background: linear-gradient(90deg, transparent, rgba(0,255,170,.4), transparent);
}

.scan-section-bg {
  background: linear-gradient(180deg, rgba(0,40,30,.6), rgba(0,10,10,.9));
  border-radius: 24px;
  padding: 60px;
  margin: 100px auto;
  max-width: 1100px;
  border: 1px solid rgba(0,255,170,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.scan-intelligence,
.scan-trust,
.scan-flow,
.scan-why {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .section-divider {
    width: 82%;
    margin: 72px auto;
  }

  .scan-section-bg {
    padding: 32px 22px;
    margin: 72px auto;
  }

  .scan-intelligence,
  .scan-trust,
  .scan-flow,
  .scan-why {
    margin-top: 72px;
  }

  body.onescan-page .hero-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
  }
}

.app-store-badge-wrap {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.app-store-badge {
  height: 42px;
  width: auto;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
  opacity: 1;
}

.ios-availability {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .app-store-badge-wrap {
    align-items: center;
    text-align: center;
  }
}

.hero-content p {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
  }

  .cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 16px;
    padding: 14px 18px;
  }

  .app-store-badge-wrap {
    margin-top: 8px;
    align-items: center;
  }

  .app-store-badge {
    margin-top: 6px;
    height: 38px;
  }

  .hero-content h1 {
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .ios-availability {
    font-size: 0.75rem;
    opacity: 0.7;
  }
}

body {
  padding-bottom: 80px;
}

.hero-content {
  max-width: 420px;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-subtext {
  margin-bottom: 18px;
}

.seo-section {
  display: flex;
  justify-content: center;
  padding: 0 20px 12px;
}

.seo-hidden {
  opacity: 0.6;
  font-size: 14px;
  max-width: 500px;
  margin: 10px auto 0;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transform: none;
}

.sticky-btn {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  color: #000;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0,255,150,0.4);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-subhead {
    font-size: 16px;
  }
}
