/* AGX OSINT - Static site styles (no dependencies) */
:root{
  --bg:#070b14;
  --panel:rgba(255,255,255,.045);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --brand:#00c2ff;
  --brand2:#ff2b7a;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(0,194,255,.13), transparent),
              radial-gradient(900px 600px at 80% 10%, rgba(255,43,122,.10), transparent),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,.58);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.logo{width:40px; height:40px; object-fit:contain}
.logo.small{width:32px; height:32px}
.brand-text{font-weight:800; letter-spacing:.4px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{opacity:.86; text-decoration:none; font-weight:600}
.nav a:hover{opacity:1}
.nav-cta{
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.menu-btn{display:none; width:44px; height:38px; border-radius:12px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05)}
.menu-btn span{display:block; height:2px; width:18px; margin:5px auto; background:rgba(255,255,255,.9)}

.hero{position:relative; padding:72px 0 44px; overflow:hidden}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:center}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-weight:800; letter-spacing:.6px; font-size:.78rem;
}
.hero h1{font-size: clamp(2.0rem, 3.2vw, 3.1rem); margin:14px 0 10px; line-height:1.1}
.hero p{color:var(--muted); font-size:1.05rem; line-height:1.55; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; text-decoration:none; font-weight:800;
  background: linear-gradient(135deg, var(--brand), rgba(0,194,255,.75));
  color:#001018;
  border: 1px solid rgba(0,194,255,.35);
  box-shadow: 0 12px 30px rgba(0,194,255,.14);
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.hero-foot{margin-top:14px; color:rgba(255,255,255,.68); font-weight:650; font-size:.95rem}

.hero-media{display:flex; justify-content:flex-end}
.media-card{
  width:min(420px, 100%);
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.media-card img{width:100%; height:320px; object-fit:cover; display:block}
.media-caption{padding:14px 14px 16px}
.media-caption strong{display:block}
.media-caption span{display:block; color:rgba(255,255,255,.72); margin-top:4px}

.hero-glow{
  position:absolute; inset:-40% -30% auto -30%;
  height:420px;
  background: radial-gradient(closest-side, rgba(0,194,255,.25), transparent 70%);
  filter: blur(0px);
  animation: drift 10s ease-in-out infinite alternate;
  pointer-events:none;
  opacity:.9;
}
@keyframes drift{
  from{transform: translate3d(-10px,0,0)}
  to{transform: translate3d(26px,16px,0)}
}

.section{padding:64px 0}
.section-title{font-size:1.7rem; margin:0 0 10px}
.section-subtitle{margin:0 0 18px; color:var(--muted); line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 4;
  background: var(--panel);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,194,255,.25);
  background: rgba(255,255,255,.055);
}
.card h3{margin:0 0 8px; font-size:1.05rem}
.card p{margin:0; color:var(--muted); line-height:1.55}

.split-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:center;
}
.split-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.split-copy h2{margin:0 0 10px; font-size:1.65rem}
.split-copy p{margin:0 0 14px; color:var(--muted); line-height:1.6}
.list{margin:0; padding-left:18px; color:rgba(255,255,255,.82); line-height:1.8}
.callout{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
}

.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.contact{display:flex; justify-content:center}
.contact-card{
  width:min(780px, 100%);
  padding:26px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.contact-card h2{margin:0 0 10px}
.contact-card p{margin:0 0 16px; color:var(--muted); line-height:1.6}
.muted{color:rgba(255,255,255,.68); font-size:.95rem}

.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer-left{display:flex; align-items:center; gap:10px}
.footer-title{font-weight:850}
.footer-sub{color:rgba(255,255,255,.70); font-size:.95rem}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{opacity:.78; text-decoration:none}
.footer-links a:hover{opacity:1}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.is-visible{opacity:1; transform:none}

/* Legal pages */
.legal-hero{padding:70px 0 26px; border-bottom:1px solid rgba(255,255,255,.08)}
.backlink{display:inline-block; margin-bottom:10px; text-decoration:none; opacity:.82}
.backlink:hover{opacity:1}
.legal{padding:26px 0 60px}
.legal h1{margin:0 0 12px}
.legal h2{margin:22px 0 10px}
.legal p, .legal li{color:rgba(255,255,255,.80); line-height:1.7}
.legal ul{margin:0; padding-left:18px}

/* Mobile */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-media{justify-content:flex-start}
  .media-card img{height:260px}
  .cards .card{grid-column: span 6;}
  .split-grid{grid-template-columns: 1fr;}
  .split-media img{height:300px}
  .nav{position:fixed; top:62px; right:14px; left:14px; display:none; flex-direction:column; gap:10px;
       background: rgba(7,11,20,.92); border:1px solid rgba(255,255,255,.10); border-radius:18px; padding:14px;
       box-shadow: var(--shadow);}
  .nav.open{display:flex}
  .menu-btn{display:inline-block}
}
@media (max-width: 620px){
  .cards .card{grid-column: span 12;}
}
