/* -------------------------------------------------------------
   INTRUDEYE DESIGN SYSTEM & CUSTOM STYLES
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep: #050B1F; /* Deep navy cybersecurity blue */
  --bg-card: #09152E; /* Darker blue-gray panel color */
  --bg-card-hover: #0c1c3d;
  --border: rgba(255, 23, 68, 0.12); /* Subtle red accent border */
  --border-bright: rgba(255, 23, 68, 0.3);
  
  --accent-red: #FF1744; /* Vibrant security red */
  --accent-hover: #FF4569; /* Hover security red-pink */
  --accent-green: #00D26A; /* Active success green */
  --glow-red: rgba(255, 23, 68, 0.15);
  
  --text-primary: #FFFFFF;
  --text-secondary: #A8B3CF; /* Premium secondary slate-gray */
  --text-muted: rgba(168, 179, 207, 0.6);
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #050B1F 0%, #09152E 50%, #050B1F 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(255, 23, 68, 0.15); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

/* Background glows */
.aurora-container {
  position: fixed; inset: 0; z-index: -10;
  overflow: hidden; pointer-events: none;
  background: linear-gradient(180deg, #050B1F 0%, #09152E 50%, #050B1F 100%);
}
.aurora-container::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255, 23, 68, 0.002) 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 100% 4px;
  z-index: -8;
  pointer-events: none;
}
.scan-line {
  position: fixed;
  top: -10px; left: 0; width: 100%; height: 3px;
  background: linear-gradient(to bottom, transparent, rgba(255, 23, 68, 0.16) 50%, transparent);
  z-index: -7;
  pointer-events: none;
  animation: scan-vertical 15s linear infinite;
  opacity: 0.4;
}
@keyframes scan-vertical {
  0% { transform: translateY(-10vh); }
  100% { transform: translateY(110vh); }
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(140px); pointer-events: none;
  opacity: 0.12;
  animation: drift 12s ease-in-out infinite alternate;
  will-change: transform;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent-red); top: -250px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: var(--accent-hover); top: 20%; right: -200px; animation-delay: -3s; }
.orb-3 { width: 400px; height: 400px; background: var(--accent-red); bottom: -150px; left: 10%; animation-delay: -5s; opacity: 0.08; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-grid {
  position: absolute; inset: 0; z-index: -9;
  background-image:
    linear-gradient(rgba(255, 23, 68, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 23, 68, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 45% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 60% 45% at 50% 50%, black 30%, transparent 95%);
}

/* -------------------------------------------------------------
   GLASSMORPHIC NAVBAR
------------------------------------------------------------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  background: rgba(5, 11, 31, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
nav.scrolled {
  background: rgba(5, 11, 31, 0.85);
  border-bottom-color: rgba(255, 23, 68, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  height: 72px;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-decoration: none;
}
.logo-img {
  width: 53px; height: 53px;
  padding: 6px;
  object-fit: contain; border-radius: 10px;
  background: linear-gradient(135deg, rgba(9, 21, 46, 0.85) 0%, rgba(5, 11, 31, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.logo-container:hover .logo-img {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 0 6px 25px rgba(255, 23, 68, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  margin-top: -1px; /* Visual baseline offset correction */
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  color: var(--text-secondary);
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent-red);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 23, 68, 0.25);
  color: var(--text-primary); padding: 0.55rem 1.35rem;
  border-radius: 50px; font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition-fast); }

/* Mobile Drawer */
.mobile-menu {
  display: none;
}

/* -------------------------------------------------------------
   HERO SECTION (TWO COLUMN ENTERPRISE GRID)
------------------------------------------------------------- */
#hero {
  padding: 10rem 2rem 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 23, 68, 0.04);
  border: 1px solid rgba(255, 23, 68, 0.15);
  border-radius: 99px; padding: 6px 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-red);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse-dot-red 2s infinite alternate;
}
@keyframes pulse-dot-red { 0% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: white;
  text-align: left;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  margin-top: 1.5rem; font-weight: 400; line-height: 1.6;
  text-align: left;
  max-width: 620px;
}
.hero-buttons {
  display: flex; gap: 1rem; margin-top: 2rem;
  justify-content: flex-start; flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-hover) 100%);
  color: #fff; padding: 13px 26px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.2);
  transition: var(--transition-smooth);
  border: none; cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-red) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.45);
}
.btn-secondary {
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  color: var(--text-primary); padding: 13px 26px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255, 23, 68, 0.25);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}
.btn-secondary:hover {
  background: rgba(255, 23, 68, 0.06);
  border-color: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(255, 23, 68, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.hero-developed-by {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-weight: 500;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}
.trust-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(9, 21, 46, 0.5);
  border: 1px solid rgba(255, 23, 68, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}
.trust-tag:hover {
  border-color: rgba(255, 23, 68, 0.25);
  background: rgba(13, 27, 58, 0.85);
  color: var(--text-primary);
  transform: translateY(-1px);
}
.trust-tag .trust-icon {
  font-size: 1.1rem;
}

/* Hero Visual Showcase */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.phone-display-area {
  position: relative;
  width: 290px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  margin-left: 20px;
}
.security-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.32) 0%, rgba(255, 23, 68, 0.08) 50%, transparent 75%);
  z-index: 0; pointer-events: none;
  filter: blur(48px);
}
.radar-scanner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 23, 68, 0.16);
  border-radius: 50%;
}
.radar-ring.ring-1 { width: 160px; height: 160px; }
.radar-ring.ring-2 { width: 320px; height: 320px; }
.radar-ring.ring-3 {
  width: 480px; height: 480px;
  border-color: rgba(255, 23, 68, 0.08);
  animation: radar-pulse-glow 6s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
.radar-sweep {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: conic-gradient(from 0deg, rgba(255, 23, 68, 0.22) 0deg, transparent 90deg, transparent 360deg);
  border-radius: 50%;
  animation: radar-sweep-rotate 24s linear infinite;
  mask-image: radial-gradient(circle, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 85%);
}
@keyframes radar-sweep-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes radar-pulse-glow {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
}
.hero-phone-mockup {
  width: 240px; height: 490px;
  border: 8px solid #0b0f19; border-radius: 38px;
  background: #050508; position: relative;
  box-shadow: 
    0 25px 50px -15px rgba(0,0,0,0.85),
    0 0 45px rgba(255, 23, 68, 0.08),
    inset 0 0 0 1px rgba(255, 23, 68, 0.15);
  z-index: 3;
  animation: float-mockup 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes float-mockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 14px; background: #1c2237; border-radius: 10px; z-index: 5;
}
.hero-screen {
  width: 100%; height: 100%; border-radius: 30px;
  overflow: hidden; position: relative; z-index: 2;
}
.hero-screen img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-shine {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none; border-radius: 30px;
}

/* Windows Teaser Preview Card */
.desktop-teaser-card {
  position: absolute;
  right: 0;
  top: 18%;
  width: 270px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 23, 68, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(255, 23, 68, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  z-index: 3;
  transition: var(--transition-smooth);
  will-change: transform;
}
.desktop-teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(255, 23, 68, 0.15);
}
.teaser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}
.teaser-dots { display: flex; gap: 4px; }
.teaser-dots span {
  width: 6px; height: 6px; border-radius: 50%;
}
.teaser-dots span:nth-child(1) { background: #ff5f56; }
.teaser-dots span:nth-child(2) { background: #ffbd2e; }
.teaser-dots span:nth-child(3) { background: #27c93f; }
.teaser-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text-muted);
}
.coming-soon-badge {
  font-size: 0.62rem; font-weight: 800; color: var(--accent-red);
  background: rgba(255, 23, 68, 0.08); border: 1px solid rgba(255, 23, 68, 0.25);
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.06em;
  text-shadow: 0 0 4px rgba(255, 23, 68, 0.3);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.05);
}
.teaser-feature-list {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem;
}
.teaser-feat { display: flex; align-items: center; gap: 8px; }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted); }
.feat-dot.red {
  background: var(--accent-red);
  box-shadow: 0 0 5px var(--accent-red);
}
.feat-name { font-size: 0.78rem; font-weight: 500; color: var(--text-secondary); }
.teaser-footer {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px; padding: 0.55rem 0.75rem;
}
.preview-label { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.teaser-footer .status-indicator-green {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green);
  animation: pulse-dot-green 1.5s infinite alternate;
}
.text-red { color: var(--accent-red); text-shadow: 0 0 5px var(--accent-red); }

/* Floating Status Cards */
.floating-status-card {
  position: absolute;
  background: rgba(9, 21, 46, 0.75);
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 12px; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  z-index: 10;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  animation: float-card 8s ease-in-out infinite;
  transition: var(--transition-smooth);
}
.floating-status-card:hover {
  background: rgba(13, 27, 58, 0.85);
  border-color: rgba(255, 23, 68, 0.45);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 23, 68, 0.15);
}
.status-icon-glow { width: 8px; height: 8px; border-radius: 50%; display: block; }
.pulse-red {
  background: var(--accent-red); box-shadow: 0 0 8px var(--accent-red);
  animation: pulse-dot-red 1.5s infinite alternate;
}
.pulse-green {
  background: var(--accent-green); box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-dot-green 1.5s infinite alternate;
}
@keyframes pulse-dot-green { 0% { opacity: 0.4; } 100% { opacity: 1; } }

.status-content { display: flex; flex-direction: column; gap: 1px; }
.status-tag-title { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.05em; color: var(--text-primary); }
.status-tag-desc { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.card-intruder { top: 15%; left: -30px; border-color: rgba(255, 23, 68, 0.25); animation-delay: 0s; }
.card-location { bottom: 12%; left: 90px; animation-delay: -2s; }
.card-active { top: 6%; right: 30px; border-color: rgba(0, 210, 106, 0.25); animation-delay: -4s; }

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

/* -------------------------------------------------------------
   GENERAL SECTION HEADER
------------------------------------------------------------- */
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-red); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 45px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-sub {
  color: var(--text-secondary); font-size: 1.05rem;
  max-width: 580px; margin-top: 0.75rem; font-weight: 400;
  line-height: 1.6;
}
.divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--accent-red), transparent); margin: 1.5rem 0 3.5rem; }

/* Reveal scroll animations */
.reveal { opacity: 0; transform: translateY(15px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------
   FEATURE SECTION (3-COLUMN DYNAMIC CARDS)
------------------------------------------------------------- */
#features { background: var(--bg-deep); }

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.security-feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 23, 68, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-smooth);
  cursor: default;
}
.security-feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 23, 68, 0.08), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; z-index: 1; pointer-events: none;
}
.security-feature-card:hover::before { opacity: 1; }
.security-feature-card:hover {
  border-color: rgba(255, 23, 68, 0.35);
  transform: translateY(-4px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(255, 23, 68, 0.15);
  background: var(--bg-card-hover);
}
.feat-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 23, 68, 0.04); border: 1px solid rgba(255, 23, 68, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-red); transition: var(--transition-fast); z-index: 2;
}
.security-feature-card:hover .feat-card-icon {
  background: rgba(255, 23, 68, 0.12);
  border-color: var(--accent-red);
  box-shadow: 0 0 16px rgba(255, 23, 68, 0.4);
  transform: scale(1.08);
}
.feat-card-icon svg { width: 22px; height: 22px; stroke-width: 2; fill: none; stroke: currentColor; }

.security-feature-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: white; z-index: 2;
}
.security-feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; z-index: 2; }

/* -------------------------------------------------------------
   SCREENSHOT SHOWCASE SECTION (SIDE-BY-SIDE PANELS)
------------------------------------------------------------- */
#showcase { background: var(--bg-card); }

.showcase-grid-new {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  margin-top: 3rem;
  align-items: stretch;
}
.mobile-mockup-showcase {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}
.showcase-phone-wrapper {
  width: 175px; height: 355px;
  border: 6px solid #1f2740; border-radius: 28px;
  background: #050508; position: relative;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(255, 23, 68, 0.03);
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  cursor: pointer;
}
.showcase-phone-wrapper:hover {
  border-color: #2e3b5e;
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(255, 23, 68, 0.15);
}
.showcase-phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 10px; background-color: #1f2740; border-radius: 8px; z-index: 5;
}
.showcase-phone-screen {
  width: 100%; height: 100%; border-radius: 22px; overflow: hidden; position: relative; z-index: 2;
}
.showcase-phone-screen img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-phone-wrapper:hover .showcase-phone-screen img { transform: scale(1.04); }

/* Realistic Desktop Console Mockup */
.desktop-mockup-wrapper {
  background: var(--bg-deep);
  border: 1px solid rgba(255, 23, 68, 0.15);
  border-radius: 16px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(255, 23, 68, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 355px;
  transition: var(--transition-smooth);
}
.desktop-mockup-wrapper:hover {
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(255, 23, 68, 0.2);
}
.desktop-mockup-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.window-controls { display: flex; gap: 6px; }
.window-controls span { width: 8px; height: 8px; border-radius: 50%; }
.window-controls span:nth-child(1) { background: #ff5f56; }
.window-controls span:nth-child(2) { background: #ffbd2e; }
.window-controls span:nth-child(3) { background: #27c93f; }
.window-title { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.03em; }
.window-status-pill {
  font-size: 0.65rem; font-weight: 800; color: var(--accent-green);
  background: rgba(0, 210, 106, 0.08); border: 1px solid rgba(0, 210, 106, 0.2);
  padding: 2px 8px; border-radius: 99px;
  display: flex; align-items: center; gap: 6px;
}
.status-indicator-green {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-green); box-shadow: 0 0 5px var(--accent-green);
}
.desktop-mockup-body {
  display: grid; grid-template-columns: 140px 1fr;
  flex-grow: 1; height: calc(100% - 39px);
}
.desktop-sidebar {
  background: rgba(0, 0, 0, 0.15); border-right: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.88rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.sidebar-item {
  font-size: 0.75rem; color: var(--text-secondary);
  padding: 0.5rem 0.75rem; border-radius: 8px;
  cursor: pointer; font-weight: 500; transition: var(--transition-fast);
}
.sidebar-item.active, .sidebar-item:hover {
  background: rgba(255, 23, 68, 0.08); color: white;
  border: 1px solid rgba(255, 23, 68, 0.15);
}
.desktop-main { padding: 1.25rem; background: rgba(0, 0, 0, 0.05); overflow-y: auto; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dash-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px; padding: 0.75rem 1rem; }
.dash-span-2 { grid-column: span 2; }
.dash-card-header { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.dash-status-big { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.dash-status-big.text-green { color: var(--accent-green); text-shadow: 0 0 5px rgba(0, 210, 106, 0.15); }
.dash-status-big.text-red { color: var(--accent-red); text-shadow: 0 0 5px rgba(255, 23, 68, 0.15); }
.dash-card-desc { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.event-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.event-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; border-bottom: 1px solid rgba(255, 255, 255, 0.02); padding-bottom: 0.25rem; }
.event-time { font-family: monospace; color: var(--text-muted); }
.event-text { color: var(--text-secondary); font-weight: 500; }
.event-badge { font-size: 0.55rem; font-weight: 800; padding: 1px 6px; border-radius: 4px; }
.event-badge.badge-err { color: var(--accent-red); background: rgba(255, 23, 68, 0.08); border: 1px solid rgba(255, 23, 68, 0.15); }
.event-badge.badge-ok { color: var(--accent-green); background: rgba(0, 210, 106, 0.08); border: 1px solid rgba(0, 210, 106, 0.15); }

/* -------------------------------------------------------------
   TECHNOLOGY STACK
------------------------------------------------------------- */
#technology { background: var(--bg-deep); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  transition: var(--transition-smooth);
}
.tech-card:hover {
  border-color: rgba(255, 23, 68, 0.25);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.tech-logo {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition-smooth);
}
.tech-card:hover .tech-logo {
  border-color: var(--accent-red); color: var(--accent-red);
  transform: scale(1.05); box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}
.tech-logo svg { width: 24px; height: 24px; stroke-width: 2; }
.tech-logo svg:not([fill]) { fill: none; }
.tech-logo svg:not([stroke]) { stroke: currentColor; }
.tech-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.tech-card p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; }

/* -------------------------------------------------------------
   CAPABILITIES / TRUST GRID SECTION
------------------------------------------------------------- */
#why { background: var(--bg-deep); }
.capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.capability-card {
  background: var(--bg-card); border: 1px solid rgba(255, 23, 68, 0.12);
  border-radius: var(--radius-md); padding: 24px;
  transition: var(--transition-smooth); display: flex; flex-direction: column; gap: 12px;
  backdrop-filter: blur(8px);
}
.capability-card:hover {
  border-color: rgba(255, 23, 68, 0.35);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 25px rgba(255, 23, 68, 0.12);
}
.capability-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(255, 23, 68, 0.04); border: 1px solid rgba(255, 23, 68, 0.15);
  display: flex; align-items: center; justify-content: center; color: var(--accent-red);
  margin-bottom: 4px; transition: var(--transition-fast);
}
.capability-card:hover .capability-icon {
  background: rgba(255, 23, 68, 0.12);
  border-color: var(--accent-red);
  box-shadow: 0 0 14px rgba(255, 23, 68, 0.35);
}
.capability-icon svg { width: 20px; height: 20px; }
.capability-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: white; }
.capability-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.5; }

/* -------------------------------------------------------------
   DOWNLOAD CENTER
------------------------------------------------------------- */
#download { background: var(--bg-card); }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 2rem; }
.download-platform-card {
  background: var(--bg-deep); border: 1px solid rgba(255, 23, 68, 0.12); border-radius: var(--radius-lg);
  padding: 3rem; text-align: left; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition-smooth); backdrop-filter: blur(8px);
}
.download-platform-card:hover {
  border-color: rgba(255, 23, 68, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 23, 68, 0.15);
  background: var(--bg-card-hover);
}
.platform-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.platform-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.platform-title svg { width: 28px; height: 28px; fill: currentColor; }
.release-badge {
  font-size: 0.68rem; font-weight: 700; color: var(--accent-red);
  background: rgba(255, 23, 68, 0.08); border: 1px solid rgba(255, 23, 68, 0.25);
  border-radius: 4px; padding: 2px 8px; text-transform: uppercase; letter-spacing: 0.05em;
}
.platform-details { margin-bottom: 2rem; }
.platform-details p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.meta-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.meta-list li { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.meta-list li span { color: var(--text-secondary); font-family: monospace; }
.btn-download-center {
  font-family: var(--font-body); display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: white; color: black; border: none; width: 100%; padding: 15px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: var(--transition-smooth); cursor: pointer;
}
.btn-download-center:hover {
  background: var(--accent-red); color: white;
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.35); transform: translateY(-2px);
}
.btn-download-center svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.btn-download-center svg.playstore-icon { fill: currentColor; stroke: none; }

/* -------------------------------------------------------------
   TRUST / SECURITY DETAILS
------------------------------------------------------------- */
#security { background: var(--bg-deep); }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.trust-card {
  background: var(--bg-card); border: 1px solid rgba(255, 23, 68, 0.12);
  border-radius: var(--radius-md); padding: 2rem; display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition-smooth); backdrop-filter: blur(8px);
}
.trust-card:hover {
  border-color: rgba(255, 23, 68, 0.35); background: var(--bg-card-hover);
  transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 25px rgba(255, 23, 68, 0.12);
}
.trust-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(255, 23, 68, 0.04); border: 1px solid rgba(255, 23, 68, 0.15);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  color: var(--accent-red); transition: var(--transition-fast);
}
.trust-card:hover .trust-icon { background: rgba(255, 23, 68, 0.12); border-color: var(--accent-red); box-shadow: 0 0 10px rgba(255, 23, 68, 0.2); }
.trust-text h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 5px; color: white; }
.trust-text p { color: var(--text-secondary); font-size: 13px; line-height: 1.55; }

/* -------------------------------------------------------------
   FAQ ACCORDIONS
------------------------------------------------------------- */
#faq { background: var(--bg-deep); }
.faq-list { max-width: 760px; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  gap: 16px; user-select: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-red); }
.faq-q:focus-visible { outline: 2.5px solid var(--accent-red); outline-offset: 4px; color: var(--accent-red); border-radius: 4px; }
.faq-chevron {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 12px; transition: var(--transition-smooth); color: var(--text-secondary);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--accent-red); color: var(--accent-red); }
.faq-a {
  color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* -------------------------------------------------------------
   PRIVACY & PERMISSIONS SECTION
------------------------------------------------------------- */
#privacy-permissions {
  background: var(--bg-deep);
  position: relative;
}

.privacy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.title-shield-icon {
  color: var(--accent-red);
  filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.4));
  flex-shrink: 0;
}

.privacy-content-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 23, 68, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.privacy-content-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 23, 68, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.privacy-content-card:hover::before {
  opacity: 1;
}

.privacy-content-card:hover {
  border-color: rgba(255, 23, 68, 0.35);
  transform: translateY(-4px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(255, 23, 68, 0.15);
  background: var(--bg-card-hover);
}

.privacy-intro-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.privacy-body-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.privacy-permissions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.75rem;
  padding-left: 0.5rem;
}

.privacy-permissions-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.privacy-permissions-list li span:last-child {
  line-height: 1.4;
}

.bullet-glow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 6px var(--accent-red);
  flex-shrink: 0;
}

.privacy-footer-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Trust Badge */
.privacy-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 23, 68, 0.04);
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.privacy-trust-badge:hover {
  background: rgba(255, 23, 68, 0.08);
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 
    0 12px 25px rgba(255, 23, 68, 0.1),
    0 0 15px rgba(255, 23, 68, 0.05);
}

.privacy-trust-badge .badge-icon {
  font-size: 22px;
  line-height: 1;
}

.privacy-trust-badge .badge-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.privacy-trust-badge .badge-content p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Permissions Used Card & Grid */
.card-title-small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 23, 68, 0.1);
  padding-bottom: 0.75rem;
}

.permissions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.permission-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(5, 11, 31, 0.4);
  border: 1px solid rgba(255, 23, 68, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.01);
}

.permission-item:hover {
  border-color: rgba(255, 23, 68, 0.3);
  background: rgba(13, 27, 58, 0.85);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(255, 23, 68, 0.08);
}

.permission-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 23, 68, 0.04);
  border: 1px solid rgba(255, 23, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.permission-item:hover .permission-icon-wrapper {
  background: rgba(255, 23, 68, 0.12);
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.permission-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.permission-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.permission-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

@media(max-width: 768px) {
  .privacy-content-card {
    padding: 2rem 1.5rem;
  }
  .privacy-intro-text {
    font-size: 1rem;
  }
  .privacy-body-text, .privacy-footer-text {
    font-size: 0.92rem;
  }
  .privacy-permissions-list li {
    font-size: 0.9rem;
  }
  .privacy-trust-badge {
    padding: 1.25rem 1rem;
    gap: 12px;
  }
  .privacy-trust-badge .badge-icon {
    font-size: 18px;
  }
}

@media(max-width: 640px) {
  .permissions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .permission-item {
    padding: 0.88rem 1rem;
    gap: 12px;
  }
}

/* -------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------- */
#contact { background: var(--bg-card); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px; padding: 13px 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: var(--transition-fast); resize: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(255, 23, 68, 0.45); background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}
.form-group textarea { min-height: 120px; }
#form-status {
  display: none; padding: 14px 16px; border-radius: 10px; font-size: 14px; text-align: center; margin-top: 16px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: status-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; will-change: transform, opacity;
}
@keyframes status-slide-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.contact-info p { color: var(--text-secondary); font-size: 1rem; line-height: 1.65; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-card {
  display: flex; align-items: center; gap: 14px; background: rgba(5, 11, 31, 0.4); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; transition: var(--transition-fast);
}
.contact-detail-card:hover { border-color: rgba(255, 255, 255, 0.15); background: var(--bg-card-hover); }
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255, 23, 68, 0.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--accent-red);
}
.contact-detail-content { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.contact-detail-value { font-weight: 600; font-size: 14px; color: var(--text-primary); text-decoration: none; transition: var(--transition-fast); }
a.contact-detail-value:hover { color: var(--accent-red); }

/* -------------------------------------------------------------
   FOOTER (CLEAN SIMPLIFIED)
------------------------------------------------------------- */
footer {
  background: #030816; border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-area { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.footer-logo-img {
  width: 32px; height: 32px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.footer-platform-desc { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }
.footer-credit { font-size: 0.8rem; color: var(--text-muted); }
.footer-links-area { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links-area a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: var(--transition-fast); }
.footer-links-area a:hover { color: var(--accent-red); }
.footer-bottom { display: flex; justify-content: center; align-items: center; padding-top: 2rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* Toast Notifications */
#download-toast { border-color: var(--accent-red) !important; box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2) !important; }

/* Spinner */
.loader-spinner {
  display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%;
  border-top-color: white; animation: spin 1s linear infinite; margin-right: 8px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------------- */
@media(max-width: 1100px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 950px) {
  .nav-inner { padding: 0 1.5rem; }
  .features-grid-new { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .download-grid { grid-template-columns: 1fr; }
  
  .showcase-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
    padding-top: 9rem;
  }
  .hero-content-col {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-headline {
    text-align: center;
    font-size: 46px;
  }
  .hero-sub {
    text-align: center;
    margin: 1.25rem auto 0 auto;
    max-width: 650px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust-grid {
    margin: 2.5rem auto 0 auto;
    max-width: 500px;
  }
  .hero-visual-container {
    justify-content: center;
    height: auto;
    padding: 2rem 0;
  }
  .desktop-teaser-card {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 20px;
  }
}

@media(max-width: 768px) {
  .nav-links { display: none; }
  
  html, body {
    overflow-x: hidden;
  }
  
  nav {
    padding: 0; height: 72px; display: flex; align-items: center;
    background: rgba(5, 11, 31, 0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 23, 68, 0.12);
  }
  nav.scrolled { background: rgba(5, 11, 31, 0.95); border-bottom-color: rgba(255, 23, 68, 0.25); }
  .nav-inner { padding: 0 16px; width: 100%; max-width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .logo-img { width: 42px; height: 42px; padding: 5px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 2px 10px rgba(255, 23, 68, 0.15); }
  .brand-name { font-size: 20px; font-weight: 700; }
  
  .hamburger {
    display: flex; position: relative; width: 40px; height: 40px; justify-content: center; align-items: center; cursor: pointer;
    border-radius: 50%; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.05); transition: var(--transition-smooth);
  }
  .hamburger:hover, .hamburger:active {
    background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 23, 68, 0.25);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.2); transform: scale(1.05);
  }
  .hamburger span { position: absolute; left: 10px; width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; }
  .hamburger span:nth-child(1) { transform: translateY(-5px); }
  .hamburger span:nth-child(2) { transform: translateY(0); }
  .hamburger span:nth-child(3) { transform: translateY(5px); }
  .hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

  /* Mobile Drawer */
  .mobile-menu {
    display: flex; position: fixed; top: 72px; left: 0; right: 0; bottom: auto; height: auto;
    background: rgba(5, 11, 31, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 23, 68, 0.12); z-index: 999; flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 0.75rem; padding: 20px 16px 28px 16px;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu a {
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; padding: 12px 16px; border-radius: 10px; transition: var(--transition-fast);
    display: flex; align-items: center; justify-content: space-between; border: 1px solid transparent;
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--text-primary); background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.05); }
  .mobile-menu .mobile-cta {
    margin-top: 8px; background: var(--accent-red); color: #fff; font-weight: 600; justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.2);
  }
  .mobile-menu .mobile-cta:hover, .mobile-menu .mobile-cta:active { box-shadow: 0 6px 20px rgba(255, 23, 68, 0.3); transform: translateY(-1px); color: #fff; }

  /* Hero Mobile Redesign */
  #hero {
    display: flex;
    flex-direction: column;
    padding: 7.5rem 1.25rem 4rem 1.25rem;
    gap: 3rem;
    text-align: center;
    align-items: center;
    overflow: hidden;
  }
  .hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-headline {
    text-align: center;
    font-size: clamp(28px, 6.5vw, 42px);
    line-height: 1.2;
  }
  .hero-sub {
    text-align: center;
    margin: 1.25rem auto 0 auto;
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
    width: 100%;
    gap: 0.8rem;
    margin-top: 1.75rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 420px;
    margin-top: 2rem;
    gap: 0.75rem;
  }
  .trust-tag {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  /* Device Showcase Mobile Fixes */
  .hero-visual-container {
    height: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
  }

  /* Mockup Centered Box */
  .phone-display-area {
    width: 220px;
    height: 420px;
    margin-left: 0;
  }
  .hero-phone-mockup {
    width: 180px;
    height: 370px;
    border-width: 6px;
    border-radius: 30px;
    box-shadow: 
      0 15px 30px rgba(0,0,0,0.85),
      0 0 20px rgba(255, 23, 68, 0.05);
  }
  .hero-screen { border-radius: 24px; }
  .hero-shine { border-radius: 24px; }
  .hero-notch { width: 50px; height: 10px; top: 8px; }

  /* Ambient Glow & Scanner mobile performance optimizations */
  .security-glow {
    width: 320px;
    height: 320px;
    filter: blur(28px);
    opacity: 0.22;
  }
  .radar-scanner {
    width: 300px;
    height: 300px;
  }
  .radar-ring.ring-1 { width: 100px; height: 100px; }
  .radar-ring.ring-2 { width: 200px; height: 200px; }
  .radar-ring.ring-3 { width: 300px; height: 300px; }
  
  .orb {
    filter: blur(60px); /* Lower CPU load */
  }

  /* Floating status cards scale down by 40% (scale 0.6) and perfect repositioning */
  .floating-status-card {
    padding: 0.45rem 0.75rem;
    gap: 6px;
    border-radius: 8px;
    transform: scale(0.6);
    transform-origin: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }
  .floating-status-card:hover {
    transform: scale(0.63) translateY(-2px);
  }
  .status-tag-title { font-size: 0.55rem; }
  .status-tag-desc { font-size: 0.65rem; }
  .status-icon-glow { width: 6px; height: 6px; }

  /* Align relative to the centered phone mockup to prevent overlapping or escaping viewports */
  .card-intruder {
    top: 6%;
    left: calc(50% - 145px);
  }
  .card-location {
    bottom: 8%;
    left: calc(50% - 75px);
  }
  .card-active {
    top: 25%;
    right: calc(50% - 150px);
  }

  /* Windows Coming Soon Card - Stacked cleanly below phone */
  .desktop-teaser-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 290px;
    margin: 1rem auto 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  .desktop-teaser-card:hover {
    transform: translateY(-3px);
  }

  .footer-top { flex-direction: column; }
  .footer-links-area { gap: 1rem; }
  section { padding: 4.5rem 1.25rem; }

  /* Showcase Section Mobile Responsiveness */

  .mobile-mockup-showcase {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0.5rem 1.25rem 1.75rem 1.25rem;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
  }
  .mobile-mockup-showcase::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .mobile-mockup-showcase .showcase-phone-wrapper {
    flex-shrink: 0;
    scroll-snap-align: center;
    width: 155px;
    height: 315px;
    margin-top: 0 !important; /* Reset desktop staggered layout */
  }

  .desktop-mockup-wrapper {
    height: auto;
    min-height: 355px;
  }

  .desktop-mockup-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .desktop-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    scrollbar-width: none;
  }
  .desktop-sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-item {
    white-space: nowrap;
    padding: 0.4rem 0.75rem;
  }

  .desktop-main {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dash-span-2 {
    grid-column: auto;
  }
}

@media(max-width: 580px) {
  .features-grid-new { grid-template-columns: 1fr; gap: 16px; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media(max-width: 480px) {
  .nav-inner { padding: 0 1rem; }
  .hero-headline { font-size: clamp(24px, 8.5vw, 36px); letter-spacing: -0.5px; }
  .hero-sub { font-size: 0.9rem; margin-top: 1rem; }
  .tech-grid { grid-template-columns: 1fr; gap: 16px; }
  .tech-card { padding: 1.5rem; }
  .download-platform-card { padding: 2rem 1.25rem; }
  .trust-card { padding: 1.25rem; }
  
  .hero-trust-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .trust-tag {
    justify-content: center;
  }
  
  /* Adjusted floating cards offsets for ultra narrow screens */
  .card-intruder {
    left: calc(50% - 135px);
  }
  .card-active {
    right: calc(50% - 140px);
  }
}
