/* Private Anonymous Security Theme v63 */
:root {
  --anon-bg: #090d18;
  --anon-surface: #111827;
  --anon-card: #1f2937;
  --anon-emerald: #10b981;
  --anon-cyan: #06b6d4;
  --anon-heading: #ffffff;
  --anon-text: #e5e7eb;
  --anon-muted: #9ca3af;
  --anon-border: rgba(16, 185, 129, 0.22);
  --anon-radius: 14px;
  --anon-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  --anon-glow: 0 0 30px rgba(16, 185, 129, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--anon-bg);
  color: var(--anon-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--anon-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--anon-heading);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--anon-emerald) 0%, var(--anon-cyan) 100%);
  color: #090d18;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--anon-muted);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--anon-heading);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--anon-emerald);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--anon-emerald);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--anon-emerald) 0%, var(--anon-cyan) 100%);
  color: #090d18;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--anon-heading);
  border: 1px solid var(--anon-border);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--anon-emerald);
  transform: translateY(-2px);
}

/* Hero Banner */
.hero {
  position: relative;
  padding: 80px 0 64px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.18) 0%, rgba(17, 24, 39, 0.8) 50%, rgba(9, 13, 24, 1) 90%);
  border-bottom: 1px solid var(--anon-border);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--anon-emerald);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 45px;
  font-weight: 900;
  color: var(--anon-heading);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--anon-emerald);
  text-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--anon-muted);
  max-width: 800px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.hero-card {
  background: var(--anon-surface);
  border: 1px solid var(--anon-border);
  border-radius: var(--anon-radius);
  padding: 12px;
  box-shadow: var(--anon-shadow);
  transition: all 0.25s ease;
  will-change: transform;
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: var(--anon-emerald);
  box-shadow: var(--anon-glow);
}

.hero-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  content-visibility: auto;
}

.hero-card-caption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--anon-heading);
}

/* Sections */
.section {
  padding: 68px 0;
  border-bottom: 1px solid var(--anon-border);
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.section-panel {
  background: var(--anon-surface);
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--anon-heading);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 15px;
  color: var(--anon-muted);
}

/* 3x3 Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--anon-card);
  border: 1px solid var(--anon-border);
  border-radius: var(--anon-radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--anon-emerald) 0%, var(--anon-cyan) 100%);
}

.feature-card:hover {
  border-color: var(--anon-emerald);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.18);
  transform: translateY(-4px);
}

.feature-num {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--anon-emerald);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--anon-heading);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--anon-muted);
  line-height: 1.6;
}

/* Blog / Articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--anon-card);
  border: 1px solid var(--anon-border);
  border-radius: var(--anon-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.blog-card:hover {
  border-color: var(--anon-emerald);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.blog-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--anon-emerald);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--anon-heading);
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: var(--anon-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--anon-emerald);
}

.blog-link:hover {
  text-decoration: underline;
}

.more-wrapper {
  text-align: center;
  margin-top: 36px;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--anon-card);
  border: 1px solid var(--anon-border);
  border-radius: var(--anon-radius);
  padding: 24px 28px;
}

.faq-question {
  font-size: 17px;
  font-weight: 800;
  color: var(--anon-heading);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: var(--anon-muted);
  line-height: 1.7;
}

/* Download Grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.download-card {
  background: var(--anon-card);
  border: 1px solid var(--anon-border);
  border-radius: var(--anon-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
}

.download-card:hover {
  border-color: var(--anon-emerald);
  box-shadow: var(--anon-glow);
  transform: translateY(-4px);
}

.download-card-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.download-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--anon-heading);
  margin-bottom: 10px;
}

.download-card p {
  font-size: 14px;
  color: var(--anon-muted);
  margin-bottom: 22px;
}

.download-web-banner {
  background: var(--anon-surface);
  border: 1px solid var(--anon-emerald);
  color: #ffffff;
  border-radius: var(--anon-radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download-web-banner h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 6px;
}

.download-web-banner p {
  color: var(--anon-muted);
  font-size: 14px;
}

/* Footer */
.footer {
  background: #050810;
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 3px solid var(--anon-emerald);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #94a3b8;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 992px) {
  .hero-showcase, .features-grid, .download-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .download-web-banner {
    flex-direction: column;
    text-align: center;
  }
}
