/* ============================================================
   DocInspector — WOW Redesign
   Cyan-dominant · Atmospheric · Scroll-alive
   ============================================================ */

/* Fonts loaded via <link> in HTML */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cyan:        #06b6d4;
  --cyan-light:  #22d3ee;
  --cyan-glow:   #67e8f9;
  --cyan-dim:    rgba(6,182,212,0.12);
  --cyan-border: rgba(6,182,212,0.25);
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --bg:          #0a1628;
  --bg-deep:     #060e1a;
  --bg-card:     rgba(6,182,212,0.04);
  --bg-glass:    rgba(6,182,212,0.06);
  --border:      rgba(6,182,212,0.12);
  --border-glow: rgba(6,182,212,0.3);
  --text:        #e2e8f0;
  --text-white:  #f8fafc;
  --text-muted:  #94a3b8;
  --text-dim:    #64748b;
  --font:        'Inter', system-ui, sans-serif;
  --font-head:   'Outfit', 'Inter', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-cyan: 0 0 60px rgba(6,182,212,0.15);
  --shadow-lg:   0 25px 50px -12px rgba(0,0,0,0.5);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── PROGRESS BAR ────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light), #fff);
  z-index: 10000;
  transition: width 0.08s linear;
  box-shadow: 0 0 20px var(--cyan), 0 0 5px var(--cyan-light);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.page { min-height: 100vh; position: relative; display: flex; flex-direction: column; }
.page > main, .page > section, .page > .section { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-gap { padding: 6rem 0; }

/* ── SUBPAGE SECTION FIX — prevent header overlap ───────── */
.section, .pricing-section, .download-section, .guide-section,
.legal-section, .reports-section, .contact-section, .thanks-section {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

/* ── AMBIENT BACKGROUND EFFECTS ──────────────────────────── */
.page::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 20%, rgba(6,182,212,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 80%, rgba(37,99,235,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(6,182,212,0.03) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.page > * { position: relative; z-index: 1; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(16, 32, 58, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6,182,212,0.3);
  transition: all var(--transition);
}
.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(14, 28, 52, 0.95);
  border-bottom: 1px solid rgba(6,182,212,0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.brand-logo img { width: 38px; height: 38px; filter: drop-shadow(0 0 8px rgba(6,182,212,0.4)); }
.brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--cyan-light); display: block; line-height: 1.0; margin-bottom: 0px; }
.brand-subtitle { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.02em; max-width: 220px; line-height: 1.1; display: block; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--text-white); background: rgba(6,182,212,0.08); }
.nav-links a.active { color: var(--cyan-light); background: rgba(6,182,212,0.1); }
.nav-links a.btn {
  padding: 0.7rem 1.6rem !important;
  transition: all var(--transition);
}
.nav-links a.btn-sm {
  padding: 0.45rem 1rem !important;
}
.nav-links a.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%) !important;
  color: #0a1628 !important;
}
.nav-links a.btn-primary:hover {
  color: #0a1628 !important;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%) !important;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.5), 0 8px 25px rgba(6, 182, 212, 0.3) !important;
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: none; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
  color: #0a1628; font-weight: 700;
  box-shadow: 0 0 20px rgba(6,182,212,0.3), 0 4px 12px rgba(6,182,212,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(6,182,212,0.5), 0 8px 25px rgba(6,182,212,0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cyan-border);
  color: var(--cyan-light);
}
.btn-outline:hover {
  background: rgba(6,182,212,0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.15);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(6,182,212,0.08); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.4rem 0.7rem;
  cursor: pointer; color: var(--text-muted); font-size: 0.85rem;
  transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--cyan-border); color: var(--cyan-light); }
.lang-pill { font-weight: 700; letter-spacing: 0.05em; }
.chev { font-size: 0.65em; }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: rgba(10,22,40,0.95); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.4rem;
  min-width: 80px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all 0.25s ease;
  backdrop-filter: blur(16px);
}
.lang-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-item {
  display: block; width: 100%; text-align: left;
  padding: 0.4rem 0.7rem; border-radius: 6px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.lang-item:hover, .lang-item.active { background: rgba(6,182,212,0.1); color: var(--cyan-light); }
.mobile-only { display: none; }
.desktop-only { display: block; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px; width: 28px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 0 5px rgba(6,182,212,0.3);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Ambient orbs */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
  animation: orb-float 15s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
  animation: orb-float 20s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(6,182,212,0.1);
  border: 1px solid var(--cyan-border);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--cyan-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-eyebrow .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--cyan); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--cyan); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg,
    var(--cyan) 0%, var(--cyan-light) 15%, #fff 30%,
    var(--cyan-glow) 45%, var(--cyan-light) 60%, #fff 75%,
    var(--cyan) 90%, var(--cyan-light) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cyan-flow 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(6,182,212,.3));
}
.hero-title .highlight {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, var(--cyan-light), #fff, var(--cyan-glow));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: cyan-flow 4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(6,182,212,.55)) drop-shadow(0 0 40px rgba(6,182,212,.25));
  position: relative;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-dim);
}
.hero-meta .sep { opacity: 0.3; }
.hero-meta svg { width: 14px; height: 14px; opacity: 0.6; }

/* Hero app showcase */
.hero-visual {
  position: relative;
  perspective: 1200px;
}
.hero-app-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(6,182,212,0.08), rgba(6,182,212,0.02));
  border: 1px solid var(--cyan-border);
  box-shadow:
    0 0 80px rgba(6,182,212,0.18),
    0 0 120px rgba(6,182,212,0.08),
    0 25px 60px rgba(0,0,0,0.4);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-app-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}
.hero-app-frame img {
  width: 100%;
  display: block;
}
/* Shine effect on screenshot */
.hero-app-frame::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(6,182,212,0.10) 43%,
    rgba(255,255,255,0.06) 50%,
    rgba(6,182,212,0.06) 55%,
    transparent 60%
  );
  animation: shine-sweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine-sweep {
  0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(0deg); }
  50% { transform: translateX(30%) translateY(30%) rotate(0deg); }
}

/* Floating badge decorations around hero screenshot */
.hero-badge {
  position: absolute;
  background: rgba(10,22,40,0.9);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-light);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 20px rgba(6,182,212,0.08);
  display: flex; align-items: center; gap: 0.5rem;
  animation: badge-float 5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 5;
}
.hero-badge:nth-child(2) { animation-delay: -1.5s; }
.hero-badge:nth-child(3) { animation-delay: -3s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge .badge-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}

/* ── DOCUMENT RAIN (CSS particles) ───────────────────────── */
.doc-rain {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.doc-rain .raindrop {
  position: absolute;
  width: 22px; height: auto;
  opacity: 0.06;
  animation: rain-fall linear infinite;
  filter: drop-shadow(0 1px 4px rgba(6,182,212,0.06));
}
.doc-rain .raindrop svg { width: 100%; height: auto; display: block; }

@keyframes rain-fall {
  0% { transform: translateY(-60px) rotate(-3deg); opacity: 0; }
  8% { opacity: var(--rain-opacity, 0.1); }
  88% { opacity: var(--rain-opacity, 0.1); }
  100% { transform: translateY(calc(100vh + 60px)) rotate(8deg); opacity: 0; }
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(6,182,212,0.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 900; color: var(--cyan-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(6,182,212,0.3);
}
.stat-label {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 0.5rem; font-weight: 500;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--cyan-border);
  border-radius: 50px;
  background: rgba(6,182,212,0.06);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--text-white);
  line-height: 1.15; margin-bottom: 1rem;
}
.text-gradient {
  background: linear-gradient(90deg,
    var(--cyan) 0%, var(--cyan-light) 15%, #fff 30%,
    var(--cyan-glow) 45%, var(--cyan-light) 60%, #fff 75%,
    var(--cyan) 90%, var(--cyan-light) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cyan-flow 6s ease-in-out infinite;
}
@keyframes cyan-flow {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.section-subtitle {
  font-size: 1.08rem; color: var(--text-muted);
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}

/* ── ANIMATED WORKFLOW PIPELINE ──────────────────────────── */
.workflow-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* Connecting line behind steps */
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 48px; left: 12%; right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.workflow-line-fill {
  position: absolute;
  top: 48px; left: 12%;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  box-shadow: 0 0 12px var(--cyan);
  z-index: 1;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.workflow-steps.visible .workflow-line-fill { width: 76%; }

.workflow-step {
  text-align: center; position: relative; z-index: 2;
}
.step-icon {
  width: 96px; height: 96px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: all 0.6s ease;
  position: relative;
}
.workflow-steps.visible .step-icon {
  border-color: var(--cyan-border);
  background: rgba(6,182,212,0.08);
  box-shadow: 0 0 30px rgba(6,182,212,0.15), 0 0 60px rgba(6,182,212,0.08);
  animation: step-glow 3s ease-in-out infinite;
}
@keyframes step-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(6,182,212,0.15), 0 0 60px rgba(6,182,212,0.08); }
  50% { box-shadow: 0 0 40px rgba(6,182,212,0.25), 0 0 80px rgba(6,182,212,0.12); }
}
.step-icon::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.6s ease;
}
.workflow-steps.visible .step-icon::after {
  border-color: rgba(6,182,212,0.2);
}

.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan); color: var(--bg);
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all 0.4s ease;
}
.workflow-steps.visible .step-num { opacity: 1; transform: scale(1); }
.workflow-steps.visible .workflow-step:nth-child(1) .step-num { transition-delay: 0.2s; }
.workflow-steps.visible .workflow-step:nth-child(2) .step-num { transition-delay: 0.5s; }
.workflow-steps.visible .workflow-step:nth-child(3) .step-num { transition-delay: 0.8s; }
.workflow-steps.visible .workflow-step:nth-child(4) .step-num { transition-delay: 1.1s; }

.step-title { font-weight: 700; color: var(--text-white); margin-bottom: 0.4rem; font-size: 1rem; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── PRIVACY / TRUST SECTION ─────────────────────────────── */
.trust-section { padding: 6rem 0; }
.trust-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.trust-visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* Animated shield */
.shield-wrap {
  width: 200px; height: 240px;
  position: relative;
}
.shield-svg {
  width: 100%; height: 100%;
}
.shield-svg .shield-body {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s ease;
  filter: drop-shadow(0 0 20px rgba(6,182,212,0.4)) drop-shadow(0 0 40px rgba(6,182,212,0.15));
}
.shield-wrap.visible .shield-body {
  stroke-dashoffset: 0;
}
.shield-svg .shield-fill {
  fill: rgba(6,182,212,0.06);
  opacity: 0;
  transition: opacity 1s ease 1s;
}
.shield-wrap.visible .shield-fill { opacity: 1; }
.shield-svg .shield-check {
  stroke: var(--cyan-light);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.6s ease 1.5s;
}
.shield-wrap.visible .shield-check { stroke-dashoffset: 0; }

/* Orbiting dots around shield — multi-ring system */
.shield-orbit {
  position: absolute; inset: -30px;
  animation: orbit-spin 10s linear infinite;
}
.shield-orbit .orbit-dot {
  position: absolute;
  background: var(--cyan); border-radius: 50%;
}
.shield-orbit .orbit-dot:nth-child(1) {
  width: 7px; height: 7px;
  top: 0; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px var(--cyan), 0 0 28px rgba(6,182,212,0.4), 0 0 60px rgba(6,182,212,0.15);
}
.shield-orbit .orbit-dot:nth-child(2) {
  width: 5px; height: 5px;
  bottom: 8%; left: 12%;
  background: var(--cyan-light);
  box-shadow: 0 0 10px var(--cyan-light), 0 0 24px rgba(34,211,238,0.35);
}
.shield-orbit .orbit-dot:nth-child(3) {
  width: 6px; height: 6px;
  top: 40%; right: 0;
  box-shadow: 0 0 10px var(--cyan), 0 0 22px rgba(6,182,212,0.3);
}
/* Second orbit ring — counter-rotating, larger radius */
.shield-orbit-2 {
  position: absolute; inset: -50px;
  animation: orbit-spin-reverse 16s linear infinite;
}
.shield-orbit-2 .orbit-dot {
  position: absolute;
  border-radius: 50%;
}
.shield-orbit-2 .orbit-dot:nth-child(1) {
  width: 4px; height: 4px;
  top: 10%; right: 5%;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow), 0 0 20px rgba(103,232,249,0.3);
}
.shield-orbit-2 .orbit-dot:nth-child(2) {
  width: 3px; height: 3px;
  bottom: 15%; left: 8%;
  background: rgba(6,182,212,0.8);
  box-shadow: 0 0 6px var(--cyan), 0 0 16px rgba(6,182,212,0.25);
}
/* Pulsing ring around shield */
.shield-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 260px;
  border: 1px solid rgba(6,182,212,0.12);
  border-radius: 50%;
  animation: shield-ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
.shield-pulse-ring:nth-child(2) {
  width: 280px; height: 320px;
  border-color: rgba(6,182,212,0.06);
  animation-delay: -1s;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes shield-ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.4; }
}

.trust-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trust-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.trust-card:hover {
  border-color: var(--cyan-border);
  background: rgba(6,182,212,0.08);
  box-shadow: 0 0 30px rgba(6,182,212,0.08);
  transform: translateY(-3px);
}
.trust-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.trust-title { font-weight: 700; color: var(--cyan-light); margin-bottom: 0.4rem; font-size: 0.95rem; }
.trust-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ── FEATURE SHOWCASE (3D card hover) ────────────────────── */
.features-section { padding: 6rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(6,182,212,0.1) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 50px rgba(6,182,212,0.15), 0 0 100px rgba(6,182,212,0.05);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(6,182,212,0.1);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(6,182,212,0.1);
}
.feature-title {
  font-family: var(--font-head); font-size: 1.2rem;
  font-weight: 800; color: var(--text-white);
  margin-bottom: 0.7rem;
}
.feature-desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 1.5rem;
}
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text);
}
.feature-list li .check-icon { color: var(--cyan); font-size: 0.9rem; flex-shrink: 0; }
.feature-card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--cyan); font-weight: 600; font-size: 0.88rem;
  margin-top: 1.2rem;
  transition: gap 0.3s;
}
.feature-card .card-link:hover { gap: 0.7rem; }

/* ── SCREENSHOT SHOWCASE (parallax) ──────────────────────── */
.showcase-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.showcase-container { position: relative; }
.showcase-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.showcase-tab {
  padding: 0.55rem 1.3rem; border-radius: 50px;
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.showcase-tab:hover { border-color: var(--cyan-border); color: var(--text); }
.showcase-tab.active {
  background: rgba(6,182,212,0.15); border-color: var(--cyan);
  color: var(--cyan-light); box-shadow: 0 0 20px rgba(6,182,212,0.15);
}

.showcase-frame {
  max-width: 900px; margin: 0 auto;
  perspective: 1200px;
}
.showcase-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--cyan-border);
  background: rgba(6,182,212,0.04);
  box-shadow: var(--shadow-cyan), var(--shadow-lg);
  transition: transform 0.6s ease;
  position: relative;
}
.showcase-img-wrap img { width: 100%; display: block; }
/* Glow bottom reflection */
.showcase-img-wrap::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%; right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.showcase-panel { display: none; }
.showcase-panel.active { display: block; }

/* Slide dots */
.slide-dots { display: flex; gap: 8px; justify-content: center; margin-top: 2rem; }
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  width: 28px; border-radius: 5px;
}

/* ── WHY DOCINSPECTOR GRID ───────────────────────────────── */
.hscroll-section { padding: 4rem 0; overflow: hidden; }
.hscroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
}

.hscroll-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
}
.hscroll-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(6,182,212,0.08);
}
.hscroll-icon { font-size: 2rem; margin-bottom: 1rem; }
.hscroll-title { font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.hscroll-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 900px) {
  .hscroll-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .hscroll-track { grid-template-columns: 1fr; }
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.1) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--text-white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { padding-top: 10rem; padding-bottom: 6rem; }
.billing-toggle-wrap { display: flex; justify-content: center; margin-top: 2rem; }
.billing-toggle {
  display: inline-flex; background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 4px; gap: 4px;
}
.billing-toggle button {
  background: transparent; border: none; color: var(--text-muted);
  padding: 0.55rem 1.6rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s;
}
.billing-toggle button.active {
  background: var(--cyan); color: var(--bg);
  box-shadow: 0 0 20px rgba(6,182,212,0.4);
}
.savings-badge {
  display: inline-block;
  background: rgba(6,182,212,0.15); color: var(--cyan-light);
  border: 1px solid var(--cyan-border); border-radius: 50px;
  padding: 0.2rem 0.7rem; font-size: 0.75rem; font-weight: 700;
  margin-left: 0.5rem; vertical-align: middle;
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 860px; margin: 3rem auto 0;
}
.price-card {
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem 2rem;
  position: relative; transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--cyan-border);
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(6,182,212,0.03));
  box-shadow: 0 0 40px rgba(6,182,212,0.12);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  color: var(--bg); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; padding: 0.35rem 1.2rem;
  border-radius: 50px; white-space: nowrap;
}
.plan-name { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.4rem; }
.price-card .plan-name {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card.featured .plan-name {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-tag { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.6rem; }
.plan-price-row { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.3rem; }
.plan-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-muted); }
.plan-amount { font-size: 3.2rem; font-weight: 800; line-height: 1; color: var(--cyan-light); }
.plan-period { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.plan-disclaimer { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.8rem; }
hr.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.6rem 0; }
.fg-group-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.8rem; margin-top: 1.4rem;
}
.fg-group-label:first-child { margin-top: 0; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.4; }
.plan-features li.dim { color: var(--text-dim); }
.f-check { color: var(--cyan); font-size: 1rem; flex-shrink: 0; }
.f-dash { color: var(--text-dim); font-size: 1rem; flex-shrink: 0; }
.li-dim { color: var(--text-muted); font-size: 0.85em; }
.highlight-box {
  background: rgba(255,153,0,0.08); border: 1px solid rgba(255,153,0,0.25);
  border-radius: var(--radius); padding: 1rem 1.2rem; font-size: 0.88rem;
  margin-bottom: 1.8rem; display: flex; align-items: flex-start; gap: 0.6rem;
}
.highlight-box .hl-star { color: #f90; flex-shrink: 0; font-size: 1.1rem; }
.plan-cta { text-align: center; }
.plan-cta .btn { width: 100%; justify-content: center; }
.win-hint {
  display: flex; justify-content: center; align-items: center;
  gap: 0.4rem; margin-top: 0.9rem; opacity: 0.5; font-size: 0.8rem;
}
.win-hint img { width: 11px; height: 11px; filter: brightness(0) invert(1); opacity: 0.7; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 900px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font); font-size: 0.92rem;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.info-card {
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.info-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.info-title { font-weight: 700; color: var(--cyan-light); margin-bottom: 0.3rem; }
.info-text { font-size: 0.88rem; color: var(--text-muted); }

/* ── DOWNLOAD PAGE ───────────────────────────────────────── */
.download-section { padding: 8rem 0 5rem; }
.download-hero {
  text-align: center; max-width: 640px; margin: 0 auto 4rem;
}
.version-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(6,182,212,0.08);
  border: 1px solid var(--cyan-border);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--cyan-light);
  margin-bottom: 1.5rem;
}
.changelog { max-width: 700px; margin: 0 auto; }
.changelog-entry {
  position: relative; padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.changelog-entry::before {
  content: '';
  position: absolute; top: 8px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.changelog-entry::after {
  content: '';
  position: absolute; top: 24px; left: 4px;
  width: 2px; bottom: -1.5rem;
  background: var(--border);
}
.changelog-entry:last-child::after { display: none; }
.changelog-version {
  font-weight: 800; color: var(--cyan-light); font-size: 1.1rem;
}
.changelog-date { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 0.6rem; }
.changelog-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.changelog-body ul { margin: 0.5rem 0; padding-left: 1.2rem; }
.changelog-body li { margin-bottom: 0.3rem; }

/* System requirements */
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.req-card {
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
}
.req-icon { width: 18px; height: 18px; opacity: 0.6; margin: 0 auto 0.5rem; }
.req-label { font-size: 0.8rem; color: var(--text-dim); }
.req-value { font-size: 0.95rem; font-weight: 700; color: var(--text-white); }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-section { padding: 8rem 0 5rem; }
.legal-content {
  max-width: 780px; margin: 0 auto;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.8;
}
.legal-content h1, .legal-content h2 {
  font-family: var(--font-head); color: var(--text-white);
  margin: 2.5rem 0 1rem;
}
.legal-content h1 { font-size: 2.2rem; }
.legal-content h2 { font-size: 1.4rem; color: var(--cyan-light); }
.legal-content h3 { color: var(--text); margin: 1.5rem 0 0.5rem; font-size: 1.05rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--cyan); text-decoration: underline; }
.legal-content strong { color: var(--text); }

/* ── USER GUIDE PAGE ─────────────────────────────────────── */
.guide-section { padding: 8rem 0 5rem; }
.guide-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.guide-card {
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition);
}
.guide-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(6,182,212,0.08);
}
.guide-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.guide-card-body { padding: 1.5rem; }
.guide-card-title { font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.guide-card-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── REPORTS / FEEDBACK ──────────────────────────────────── */
.reports-section { padding: 8rem 0 5rem; }

/* ── THANKS PAGE ─────────────────────────────────────────── */
.thanks-section {
  padding: 8rem 0 5rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 70vh; text-align: center;
}
.thanks-icon { font-size: 4rem; margin-bottom: 1.5rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(6,182,212,0.02);
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--text-dim);
}
.footer-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan-light); }
.tiktok-link svg { transition: transform 0.3s; }
.tiktok-link:hover svg { transform: scale(1.15); color: var(--cyan); }

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.36s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.48s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.60s; }

/* Scale-up reveal */
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 2rem auto 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .trust-layout { grid-template-columns: 1fr; text-align: center; }
  .trust-visual { order: -1; margin-bottom: 2rem; }
  .trust-cards { max-width: 500px; margin: 0 auto; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps::before { display: none; }
  .workflow-line-fill { display: none; }
}

@media (max-width: 1024px) {
  .nav-links { 
    display: none; flex-direction: column; 
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,0.98); 
    backdrop-filter: blur(20px);
    padding: 1rem; gap: 0.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; z-index: 1001; }
  .nav-toggle { display: flex; z-index: 1002; }
  
  .navbar { gap: 0.5rem; }
  .brand { gap: 0.5rem; }
  
  /* Landscape fix for small screens */
  @media (max-height: 500px) and (orientation: landscape) {
    .nav-links { 
      display: none; 
      flex-direction: row; 
      flex-wrap: wrap; 
      justify-content: center;
      position: fixed;
      top: 0; height: 100vh;
      background: rgba(10,22,40,0.98);
      padding: 4rem 1rem 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
  }
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-app-frame { transform: none; }
  .hero-badge { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; gap: 2rem; }
  .section-gap { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .brand-subtitle { display: none; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* ── HIGHLIGHT TEXT (alias for .text-gradient) ───────────── */
.hl {
  background: linear-gradient(135deg, var(--cyan-light) 0%, #fff 50%, var(--cyan-glow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FORM CARD (glass card for forms) ────────────────────── */
.form-card {
  background: rgba(6,182,212,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

/* ── DOWNLOAD CARD ───────────────────────────────────────── */
.download-card {
  background: rgba(6,182,212,0.04);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(6,182,212,0.08);
}
.download-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.version-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(6,182,212,0.12);
  border: 1px solid var(--cyan-border);
  border-radius: 50px; padding: 0.45rem 1.2rem;
  font-size: 0.9rem; font-weight: 700; color: var(--cyan-light);
}
.update-info {
  display: block; margin-top: 0.6rem;
  font-size: 0.82rem; color: var(--text-dim);
}
.trial-message {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 1rem;
}
.req-list { margin-top: 1rem; }
.req-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-dim);
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--cyan-border);
  border-radius: 50px;
  background: rgba(6,182,212,0.06);
}
.changelog-list {
  list-style: disc; padding-left: 1.2rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
}
.changelog-list li { margin-bottom: 0.3rem; }

/* ── DOWNLOAD STEPS GRID ─────────────────────────────────── */
.install-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: center;
}
@media (max-width: 600px) {
  .install-steps { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
}
.install-step {
  padding: 2rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.install-step:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(6,182,212,0.08);
}
.install-step .step-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.install-step .step-label { font-weight: 700; color: var(--text-white); }

/* ── USER GUIDE DETAIL PAGES ─────────────────────────────── */
.detailed-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.guide-card-v2 {
  background: rgba(6,182,212,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.guide-card-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--cyan));
  opacity: 0;
  transition: opacity 0.4s;
}
.guide-card-v2:hover::before { opacity: 1; }
.guide-card-v2:hover {
  border-color: var(--cyan-border);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(6,182,212,0.1);
}
.guide-card-header {
  padding: 2rem 2rem 0;
  display: flex; align-items: center; gap: 1rem;
}
.g-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 16px;
  background: rgba(6,182,212,0.1);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(6,182,212,0.1);
}
.guide-card-header h2 {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text-white);
}
.guide-card-content {
  padding: 1.5rem 2rem 2rem;
}
.guide-card-content p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 0.8rem;
}
.guide-card-content strong {
  color: var(--cyan-light);
}
.guide-card-content ul {
  list-style: none; padding: 0; margin: 0.8rem 0 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.guide-card-content li {
  font-size: 0.85rem; color: var(--text);
  padding-left: 1.3rem; position: relative;
  line-height: 1.5;
}
.guide-card-content li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--cyan); font-weight: 800; font-size: 1rem;
}
.guide-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(6,182,212,0.1);
  border: 1px solid var(--cyan-border);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--cyan-light);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── 3D SUBPAGE HERO ANIMATIONS ──────────────────────────── */

/* Morphing background mesh — cyan geometric grid */
.cyber-grid {
  position: absolute; top: 0; left: 0; right: 0; height: 700px;
  overflow: hidden; pointer-events: none; z-index: 0;
  perspective: 800px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}
.cyber-grid::before {
  content: '';
  position: absolute;
  top: -80%; left: -80%; width: 260%; height: 260%;
  background:
    repeating-linear-gradient(90deg, rgba(6,182,212,0.09) 0px, transparent 1px, transparent 50px),
    repeating-linear-gradient(0deg, rgba(6,182,212,0.09) 0px, transparent 1px, transparent 50px);
  transform: rotateX(50deg);
  animation: grid-scroll 18s linear infinite;
}
@keyframes grid-scroll {
  0% { transform: rotateX(50deg) translateY(0); }
  100% { transform: rotateX(50deg) translateY(50px); }
}

/* Floating hex particles */
.hex-particles {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.hex-particle {
  position: absolute;
  width: 20px; height: 23px;
  opacity: 0;
  animation: hex-drift linear infinite;
}
.hex-particle svg { width: 100%; height: 100%; }
@keyframes hex-drift {
  0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.12; }
  100% { transform: translateY(-100px) rotate(180deg) scale(1.2); opacity: 0; }
}

/* Pulsing ring behind section headers */
.pulse-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.08);
  animation: ring-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.pulse-ring:nth-child(2) { width: 500px; height: 500px; animation-delay: -1.3s; border-color: rgba(6,182,212,0.05); }
.pulse-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: -2.6s; border-color: rgba(6,182,212,0.03); }
@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.5; }
}

/* 3D tilt card on mouse */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.tilt-card:hover { transform: perspective(800px) rotateY(var(--rx, 0deg)) rotateX(var(--ry, 0deg)); }

/* Glowing scan line sweeping down a section */
.scan-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--cyan) 30%, var(--cyan-light) 50%, var(--cyan) 70%, transparent 95%);
  box-shadow: 0 0 25px var(--cyan), 0 0 80px rgba(6,182,212,0.35), 0 2px 40px rgba(6,182,212,0.2);
  animation: scan-sweep 5s ease-in-out infinite;
  pointer-events: none; z-index: 2;
  opacity: 0.75;
}
@keyframes scan-sweep {
  0% { top: 0; opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Reveal with 3D flip-in */
.reveal-flip {
  opacity: 0;
  transform: perspective(600px) rotateX(-25deg) translateY(60px);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1.1s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal-flip.visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

/* Reveal with depth zoom */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.75) translateZ(-120px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal-zoom.visible { opacity: 1; transform: scale(1) translateZ(0); }

/* Glitch text effect on hover */
.glitch-hover {
  position: relative;
}
.glitch-hover:hover {
  animation: text-glitch 0.3s ease;
}
@keyframes text-glitch {
  0%, 100% { transform: none; filter: none; }
  20% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  40% { transform: translate(2px, -1px); filter: hue-rotate(-90deg); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); filter: hue-rotate(45deg); }
}

/* Neon border glow animation */
.neon-border {
  position: relative;
}
.neon-border::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent, var(--cyan-light), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(8px);
}
.neon-border:hover::after {
  opacity: 0.4;
  animation: neon-rotate 3s linear infinite;
}
@keyframes neon-rotate {
  to { background: conic-gradient(from 360deg, transparent, var(--cyan), transparent, var(--cyan-light), transparent); }
}

/* Stagger with 3D depth */
.stagger-3d > * {
  opacity: 0;
  transform: perspective(600px) rotateX(-18deg) translateY(50px) scale(0.92);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.stagger-3d.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger-3d.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.18s; }
.stagger-3d.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.36s; }
.stagger-3d.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.54s; }
.stagger-3d.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.72s; }

/* ── LIGHTBOX OVERLAY ────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(6,14,26,0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 85vh;
}
.lightbox-content img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cyan-border);
  box-shadow: 0 0 80px rgba(6,182,212,0.2), 0 40px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(10,22,40,0.8);
  border: 1px solid var(--border); border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white); font-size: 1.4rem; cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(6,182,212,0.2); border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.3);
}
.lightbox-close { top: -24px; right: -24px; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: -48px; right: 0; }
}

/* ── HEX FLOAT KEYFRAME ─────────────────────────────────── */
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  25% { transform: translateY(-20px) rotate(30deg); opacity: 0.14; }
  50% { transform: translateY(-8px) rotate(-15deg); opacity: 0.06; }
  75% { transform: translateY(-25px) rotate(20deg); opacity: 0.12; }
}

/* ── LIGHTBOX IMG ────────────────────────────────────────── */
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cyan-border);
  box-shadow: 0 0 80px rgba(6,182,212,0.2), 0 40px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}

/* ── Legal Pages Beautification ── */
.legal-page-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.legal-content {
  max-width: 800px;
  margin: 3rem auto 0;
  line-height: 1.8;
  color: var(--text-muted);
}
.legal-content section {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.legal-content section:hover {
  border-color: rgba(6,182,212,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,.08);
}
.legal-content section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--cyan), transparent);
  border-radius: 4px 0 0 4px;
}
.legal-content h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.legal-content p {
  font-size: .95rem;
}
.legal-back {
  margin-top: 4rem;
}

/* Legal section entrance animation */
.legal-content section {
  opacity: 0;
  transform: translateY(20px);
  animation: legalReveal .5s ease forwards;
}
.legal-content section:nth-child(1) { animation-delay: .1s; }
.legal-content section:nth-child(2) { animation-delay: .2s; }
.legal-content section:nth-child(3) { animation-delay: .3s; }
.legal-content section:nth-child(4) { animation-delay: .4s; }
.legal-content section:nth-child(5) { animation-delay: .5s; }
.legal-content section:nth-child(6) { animation-delay: .6s; }

@keyframes legalReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile fixes for legal pages */
@media (max-width: 480px) {
  .legal-content section {
    padding: 1.4rem 1.2rem;
    border-radius: 12px;
  }
  .legal-content h2 {
    font-size: 1rem;
  }
  .legal-content p {
    font-size: .88rem;
  }
}

/* Price card mobile polish */
@media (max-width: 480px) {
  .price-card {
    padding: 1.8rem 1.4rem;
  }
  .plan-amount {
    font-size: 2.5rem;
  }
}

/* Fix footer wrapping on small screens */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: .6rem;
    align-items: center;
  }
}
. b l o g - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;   b o r d e r - c o l o r :   v a r ( - - c y a n )   ! i m p o r t a n t ;   }  

/* Article body links styling to stand out contextually */
.article-body a {
  color: #06b6d4 !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}
.article-body a:hover {
  color: #22d3ee !important;
}