/* === CamGuard — Surveillance Monitor Design === */
/* Design: Dark theme, green/cyan accents, monitor grid layout, scanning-line effect */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --p: #1e40af;
  --pg: #06d6a0;     /* surveillance green */
  --a: #fbbf24;
  --bg: #080c10;
  --bg2: #0f1620;
  --bg3: #141e2a;
  --tx: #e8ecf0;
  --tx2: #7a8a9a;
  --bd: #1c2735;
  --su: #06d6a0;
  --r: 6px;
  --r-lg: 12px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif; color: var(--tx);
  background: var(--bg); line-height: 1.65;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER — Minimal top bar, monospace logo
   ============================================ */
.site-header {
  background: rgba(8,12,16,.95); backdrop-filter: blur(10px);
  border-bottom: 2px solid #06d6a033; position: sticky; top:0; z-index:100;
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
}
.site-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem; font-weight:700; color: var(--pg);
  text-decoration: none; letter-spacing: .5px;
  text-transform: uppercase;
}
.site-nav { display:flex; align-items:center; gap: 22px; }
.site-nav a { color: var(--tx2); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .2s; font-family: 'JetBrains Mono', monospace; }
.site-nav a:hover { color: var(--pg); }

/* ============================================
   HERO — Split with scanning line effect
   ============================================ */
.hero-section {
  background: var(--bg);
  padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.hero-section::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: linear-gradient(90deg, transparent, rgba(6,214,160,.2), transparent);
  animation: scan 4s ease-in-out infinite; pointer-events: none;
}
@keyframes scan { 0%,100% { top: 30%; } 50% { top: 70%; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.hero-left h1 {
  font-size: 2.8rem; font-weight: 700; line-height: 1.12;
  margin-bottom: 18px; letter-spacing: -.8px;
}
.hero-left h1 .hlt {
  color: var(--pg); text-shadow: 0 0 20px rgba(6,214,160,.3);
}
.hero-desc { font-size: 1.05rem; color: var(--tx2); max-width: 500px; margin-bottom: 28px; line-height: 1.7; }
.hero-stats { display: flex; gap: 32px; }
.stat-item {
  background: var(--bg2); padding: 16px 20px; border-radius: var(--r);
  border: 1px solid var(--bd); text-align: center; min-width: 100px;
}
.stat-num { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight:700; color: var(--pg); display: block; }
.stat-label { font-size: .75rem; color: var(--tx2); display: block; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* Lead Card — terminal style */
.lead-card {
  background: var(--bg2); color: var(--tx); padding: 28px 24px;
  border-radius: var(--r); border: 1px solid var(--bd);
  position: relative;
}
.lead-card::before {
  content: '● ● ●'; color: var(--pg); font-size: .7rem;
  display: block; margin-bottom: 16px; letter-spacing: 4px;
}
.lead-badge {
  display: inline-block; background: rgba(6,214,160,.1); color: var(--pg);
  padding: 4px 12px; border-radius: 3px; font-size: .72rem; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(6,214,160,.2);
}
.lead-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.lead-sub { color: var(--tx2); font-size: .84rem; margin-bottom: 20px; }
.field-group { margin-bottom: 10px; }
.field-group input, .field-group textarea {
  width: 100%; padding: 10px 14px;
  background: var(--bg3); border: 1px solid var(--bd);
  border-radius: 4px; font-size: .88rem; font-family: inherit;
  color: var(--tx); transition: border .2s;
}
.field-group input::placeholder, .field-group textarea::placeholder { color: #445566; }
.field-group input:focus, .field-group textarea:focus {
  outline: none; border-color: var(--pg);
  box-shadow: 0 0 0 3px rgba(6,214,160,.1);
}
.btn-main {
  width: 100%; padding: 12px;
  background: var(--pg); color: #080c10;
  border: none; border-radius: 4px; font-size: .95rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
  text-transform: uppercase; letter-spacing: .5px;
}
.btn-main:hover { background: #05c090; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,214,160,.25); }
.btn-lg { width: auto; padding: 15px 40px; font-size: 1.05rem; display: inline-block; text-decoration: none; }
.success-card { text-align:center; padding:18px; background:rgba(6,214,160,.08); border:1px solid rgba(6,214,160,.25); border-radius:4px; }
.success-card h3 { color: var(--su); margin-bottom: 4px; font-size: .95rem; }

/* Bottom CTA button fix */
.cta-section .btn-main,
.cta-section .btn-lg,
.cta-section .btn-large {
  width: auto !important; display: inline-block !important;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90vw;
}

/* ============================================
   FEATURES — Monitor grid (2x3)
   ============================================ */
.features-section { padding: 70px 0; background: var(--bg2); }
.features-section .section-header { margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--tx); }
.section-header h2::before { content: '▸ '; color: var(--pg); }
.section-header p { color: var(--tx2); margin-top: 6px; font-size: .95rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fet-card {
  background: var(--bg3); padding: 26px 22px;
  border-radius: var(--r); border: 1px solid var(--bd);
  transition: all .25s; position: relative; overflow: hidden;
}
.fet-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--pg); transform: scaleX(0); transition: transform .25s;
}
.fet-card:hover::after { transform: scaleX(1); }
.fet-card:hover { border-color: var(--pg); box-shadow: 0 8px 30px rgba(6,214,160,.06); }
.fet-icon { font-size: 1.8rem; margin-bottom: 10px; }
.fet-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.fet-card p { color: var(--tx2); font-size: .8rem; }

/* ============================================
   BRANDS — Dashboard-style cards
   ============================================ */
.browse-section { padding: 70px 0; }
.browse-section .section-header { margin-bottom: 36px; }
.browse-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.browse-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px; background: var(--bg2);
  border: 1px solid var(--bd); border-radius: var(--r);
  text-decoration: none; color: var(--tx); font-weight: 600;
  font-size: .9rem; transition: all .25s; text-align: center;
}
.browse-card::before {
  content: '⬤'; color: var(--pg); font-size: 1.4rem;
}
.browse-card:hover { border-color: var(--pg); background: var(--bg3); transform: translateY(-3px); }

/* ============================================
   ISSUES — Monospace tag list
   ============================================ */
.browse-section.alt { background: var(--bg2); }
.browse-section.alt .browse-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.browse-section.alt .browse-card {
  flex-direction: row; padding: 10px 18px;
  font-family: 'JetBrains Mono', monospace; font-size: .78rem; font-weight: 500;
  border-radius: 3px; min-width: auto;
}
.browse-section.alt .browse-card::before { content: '#'; font-size: .85rem; }

/* ============================================
   TESTIMONIALS — Side-by-side with status dots
   ============================================ */
.testimonials-section { padding: 70px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.test-card {
  background: var(--bg2); padding: 28px; border-radius: var(--r);
  border: 1px solid var(--bd);
}
.test-card::before {
  content: '⬤ ONLINE'; color: var(--pg); font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; display: block; margin-bottom: 12px;
  letter-spacing: 1px;
}
.test-quote { font-size: .98rem; line-height: 1.7; color: var(--tx); margin-bottom: 12px; }
.test-author { color: var(--pg); font-weight: 600; font-size: .85rem; }

/* ============================================
   CTA — Terminal prompt style
   ============================================ */
.cta-section {
  background: var(--bg3); color: #fff; padding: 80px 0; text-align: center;
  border-top: 2px solid var(--pg); border-bottom: 2px solid var(--pg);
  position: relative;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 1.05rem; opacity: .8; max-width: 520px; margin: 0 auto 28px; color: var(--tx2); }
.cta-section .btn-main { background: var(--pg); color: #080c10; width: auto; display: inline-block; }
.cta-section .btn-main:hover { box-shadow: 0 8px 30px rgba(6,214,160,.3); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #040608; color: #556270; padding: 50px 0 24px; border-top: 1px solid var(--bd); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-bottom: 32px; }
.footer-col h4 { color: var(--tx); margin-bottom: 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'JetBrains Mono', monospace; }
.footer-col a { display: block; color: #556270; text-decoration: none; font-size: .82rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--pg); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.footer-brands a { background: var(--bg2); color: var(--tx2); padding: 3px 10px; border-radius: 3px; font-size: .75rem; text-decoration: none; border: 1px solid var(--bd); font-family: 'JetBrains Mono', monospace; }
.footer-brands a:hover { color: var(--pg); border-color: var(--pg); }
.footer-bottom { border-top: 1px solid var(--bd); padding-top: 20px; text-align: center; font-size: .76rem; color: #3a4550; font-family: 'JetBrains Mono', monospace; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.content-page h1 { font-size: 2rem; color: var(--pg); margin-bottom: 8px; font-weight: 700; }
.content-page .breadcrumb { color: var(--tx2); font-size: .8rem; margin-bottom: 24px; padding: 10px 0; font-family: 'JetBrains Mono', monospace; }
.content-page .breadcrumb a { color: var(--pg); text-decoration: none; }
.content-page h2 { font-size: 1.4rem; margin: 36px 0 14px; font-weight: 700; }
.content-page h3 { font-size: 1.1rem; margin: 24px 0 8px; font-weight: 700; }
.content-page p { margin-bottom: 16px; line-height: 1.8; color: #b0bcc6; }
.content-page ul, .content-page ol { margin: 16px 0 16px 24px; color: #b0bcc6; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--pg); text-decoration: underline; text-underline-offset: 3px; }
.content-page .step {
  background: var(--bg2); padding: 18px 22px;
  border-left: 4px solid var(--pg); margin: 14px 0;
  border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 16px; align-items: flex-start;
}
.content-page .step-number {
  background: var(--pg); color: #080c10; min-width: 28px; height: 28px;
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0; font-family: 'JetBrains Mono', monospace;
}
.content-page .step-content { flex: 1; }
.content-page .step-content strong { display: block; margin-bottom: 4px; }
.content-page .warning {
  background: rgba(251,191,36,.06); border: 1px solid rgba(251,191,36,.25);
  padding: 16px 20px; border-radius: var(--r); margin: 20px 0;
  border-left: 4px solid var(--a);
}
.content-page .warning strong { display: block; margin-bottom: 4px; color: var(--a); }
.content-page .inline-cta {
  background: rgba(6,214,160,.06); padding: 28px; border-radius: var(--r);
  text-align: center; margin: 36px 0; border: 2px solid var(--pg);
}
.content-page .inline-cta h3 { margin-top: 0; color: var(--pg); font-size: 1.15rem; }
.content-page .inline-cta .btn-main { display: inline-block; width: auto; white-space: nowrap; text-decoration: none; font-size: .9rem; padding: 11px 28px; }
/* Universal inline-cta button fix — covers static, hub, about, contact pages */
.inline-cta .btn-main {
  display: inline-block !important; width: auto !important;
  white-space: nowrap; text-decoration: none;
}
.content-page .faq-section { margin: 40px 0; padding: 24px; background: var(--bg2); border-radius: var(--r); border: 1px solid var(--bd); }
.content-page .faq-section h2 { margin-top: 0; padding-bottom: 12px; border-bottom: 2px solid rgba(6,214,160,.15); }
.content-page .faq-item { padding: 14px 0; border-bottom: 1px solid var(--bd); }
.content-page .faq-item:last-child { border-bottom: none; }
.content-page .faq-item h3 { font-size: .95rem; color: var(--pg); }
.content-page .faq-item p { color: var(--tx2); font-size: .88rem; }
.content-page .related-issues {
  margin: 40px 0; padding: 24px; background: var(--bg2);
  border: 1px solid var(--bd); border-radius: var(--r);
}
.content-page .related-issues h2 { margin-top: 0; font-size: 1.1rem; }
.content-page .related-issues ul { list-style: none; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.content-page .related-issues a { color: var(--pg); text-decoration: none; font-weight: 600; font-size: .85rem; }
.content-page .related-issues a:hover { text-decoration: underline; }

/* ============================================
   STATIC & HUB
   ============================================ */
.static-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.static-page h1 { font-size: 2rem; color: var(--pg); margin-bottom: 20px; font-weight: 700; }
.static-page h2 { font-size: 1.4rem; margin: 30px 0 14px; font-weight: 700; }
.hub-page { padding: 60px 0; max-width: 1000px; margin: 0 auto; }
.hub-page h1 { font-size: 2rem; color: var(--pg); margin-bottom: 8px; font-weight: 700; }
.hub-page .hub-desc { color: var(--tx2); margin-bottom: 32px; font-size: 1.05rem; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.hub-link { display: block; padding: 14px 18px; background: var(--bg2); border-radius: 6px; color: var(--tx); text-decoration: none; font-size: .9rem; border: 1px solid var(--bd); transition: all .2s; }
.hub-link:hover { border-color: var(--pg); background: var(--bg3); transform: translateX(4px); }
.hub-link strong { color: var(--pg); }


/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-intro { color: var(--tx2); font-size: 1rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-size: 1.3rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bd); }
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { margin-bottom: 4px; }
.sitemap-list a { color: var(--p); text-decoration: none; font-size: .9rem; display: block; padding: 6px 10px; border-radius: 6px; transition: all .15s; }
.sitemap-list a:hover { background: var(--bg2); text-decoration: underline; }
.sitemap-main .sitemap-main-link { display: inline-block; margin-right: 16px; margin-bottom: 8px; }
.sitemap-main .sitemap-main-link a { font-weight: 700; font-size: .95rem; padding: 8px 16px; background: var(--bg2); border-radius: 8px; }
.sitemap-main .sitemap-main-link a:hover { background: var(--p); color: #fff; text-decoration: none; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .hero-right { max-width: 380px; margin: 0 auto; } }
@media (max-width: 768px) {
  .hero-left h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-page .related-issues ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-section { padding: 50px 0 60px; }
  .hero-left h1 { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .lead-card { padding: 20px 16px; }
  .container { padding: 0 14px; }
}

/* Aliases */
.breadcrumb-item, .step-container, .support-content, .lsi, .current, .active, .-content, .-step-content, .-step-number { /* inherit */ }
.btn-primary, .btn-large { display: inline-block; width: auto; padding: 14px 32px; background: var(--pg); color: #080c10; border: none; border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .2s; text-transform: uppercase; letter-spacing: .5px; }
.btn-primary:hover { background: #05c090; }
.hero-right { min-width: 0; }
.hero-right .lead-card { height: 100%; }
.features-section, .testimonials-section, .cta-section { scroll-margin-top: 80px; }
