/* =====================================================
   DAIC — Domain Abuse Intelligence Center
   OSINT / Intelligence Visual Theme
   ===================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --bg-main: #070b14;
  --bg-panel: rgba(15, 25, 50, 0.7);
  --bg-panel-soft: rgba(15, 25, 50, 0.45);
  --accent: #4da3ff;
  --accent-soft: #2b6bff;
  --text-main: #dbe4ff;
  --text-muted: #9fb3d9;
  --border-soft: rgba(255, 255, 255, 0.08);
}

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

/* ---------- BODY ---------- */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #0c1530, var(--bg-main));
  color: var(--text-main);
  line-height: 1.75;
}

/* ---------- LINKS ---------- */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================================================
   HEADER / TOPBAR
   ===================================================== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-shield img {
  width: 40px;
  height: 40px;
}

.title strong {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.title span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

nav a {
  margin-left: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.report-mail {
  color: var(--accent);
  font-weight: 600;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  padding: 160px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  display: flex;
  justify-content: center;
}

.hero-left img {
  width: 280px;
  opacity: 0.9;
}

.hero-right h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-right p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}

.report-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-weight: 600;
}

/* =====================================================
   SECTION BASE
   ===================================================== */
section {
  padding: 100px 40px;
}

/* =====================================================
   STATS
   ===================================================== */
.stats-box {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

.stat h3 {
  font-size: 28px;
  color: var(--accent);
}

/* =====================================================
   SERVICE & PROCESS
   ===================================================== */
.service-grid,
.process-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-box,
.process-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 30px;
}

.service-box h4,
.process-box h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* =====================================================
   DISCLAIMER
   ===================================================== */
.disclaimer-section {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  background: var(--bg-panel-soft);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================
   VISION & MISSION
   ===================================================== */
.vm-box {
  max-width: 1000px;
  margin: auto;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 50px;
}

.vm-box h3 {
  color: var(--accent);
  margin-top: 30px;
}

.vm-box ul {
  margin-top: 15px;
  padding-left: 20px;
}

.vm-box li {
  margin-bottom: 10px;
}

/* =====================================================
   LEGAL PAGES (PRIVACY / TERMS / RESPONSIBLE)
   ===================================================== */
.legal-page {
  max-width: 900px;
  margin: 140px auto 100px;
  padding: 50px;
  background: var(--bg-panel-soft);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.legal-page h2 {
  margin-top: 40px;
  color: var(--accent);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px;
  background: rgba(5, 8, 15, 0.9);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-box,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}


.nav-links a.active{
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}