: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 {
  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;
}

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(5, 6, 7, 0.4);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 6, 7, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.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;
}

.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:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  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;
}

.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: var(--glow);
  position: relative;
  overflow: hidden;
}

.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;
}

.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);
}

.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: 85vh;
  display: grid;
  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-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: contrast(1.15) saturate(1.2);
  transform: scale(1.08);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 28px 120px;
}

.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);
  margin: 0 0 16px;
}

.hero-title {
  color: #ffffff;
}

.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);
}

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

h3 {
  margin: 0 0 12px;
}

.subhead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 560px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 18px;
}

.cta-benefit {
  color: rgba(161, 176, 178, 0.8);
  margin: 0 0 18px;
  font-size: 1rem;
}

.hero-highlight {
  margin: 18px 0 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: rgba(230, 240, 239, 0.95);
  display: inline-block;
  max-width: 560px;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.12);
}

.hero-highlight-note {
  color: rgba(161, 176, 178, 0.8);
  margin: 0 0 12px;
  font-size: 0.95rem;
}

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

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

.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(-6px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), var(--glow);
  }
}

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

.card h3 {
  font-weight: 700;
}

.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, 136, 0.12), rgba(0, 8, 6, 0.05) 50%, transparent 72%),
    linear-gradient(180deg, transparent 0%, transparent 70%, rgba(5, 6, 7, 0.2) 100%);
  filter: blur(16px);
  opacity: 0.52;
  z-index: 0;
}

.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;
}

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

.phone-mockup img {
  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 {
    max-height: 640px;
    width: auto;
  }

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

@media (hover: hover) {
  .phone-mockup img: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 .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-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 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.preview-tab {
  background: rgba(8, 12, 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;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.preview-tab.active {
  color: var(--text);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.18);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.preview-tab.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.5);
  transition: opacity 0.2s 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::after {
  background: rgba(0, 255, 136, 0.36);
}

.preview-phone {
  margin: 0 auto;
}

.preview-phone::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.07), transparent 65%);
  filter: blur(16px);
  opacity: 0.7;
  z-index: 0;
}

.preview-phone img {
  max-width: 350px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.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-caption {
  margin-top: 12px;
}

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

.preview-cta {
  display: inline-block;
  margin-top: 18px;
  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-phone {
    margin-top: -20px;
  }

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

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

.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;
}

.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;
}

.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;
}

.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);
}
.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) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(6, 9, 11, 0.95);
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    display: none;
    min-width: 220px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    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) {
  .hero {
    min-height: 70vh;
  }

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

  .hero-video,
  .vpn-video {
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
  }

  .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.85;
    filter: contrast(1.1) saturate(1.15);
  }
}

@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;
  }
}
