/*
Theme Name: AgentListIQ Neon
Theme URI: https://agentlistiq.com/
Author: EMO + ChatGPT
Description: A lightweight theme that mimics the AgentListIQ.com dark/neon, glass-panel aesthetic (top sticky nav, hero, feature cards, pricing cards, mobile dock + off-canvas menu).
Version: 1.0.0
License: GPLv2 or later
Text Domain: agentlistiq
*/

:root{
  --bg0:#081227;
  --bg1:#0b1b3a;
  --nav:rgba(7,16,34,.80);
  --panel:#0a1630;
  --line:rgba(255,255,255,.10);

  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);

  --brandA:#19b9ff;   /* bright blue */
  --brandB:#15ff00;   /* bright green */
  --brandC:#fff64a;   /* bright yellow */
  --accent:#ffd24a;   /* button yellow */
  --accent2:#ffe07a;

  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:28px;
  --wrap:1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(25,185,255,.18), transparent 60%),
    radial-gradient(1000px 500px at 85% 20%, rgba(21,255,0,.12), transparent 55%),
    radial-gradient(900px 500px at 40% 90%, rgba(255,246,74,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.wrap{ width:min(var(--wrap), calc(100% - 40px)); margin:0 auto; }

/* Subtle animated noise (optional) */
.bg-noise{
  pointer-events:none;
  position:fixed; inset:0;
  opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.2) blur(10px);
  background:linear-gradient(180deg, rgba(7,16,34,.88), rgba(7,16,34,.62));
  border-bottom:1px solid var(--line);
}
.navRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:180px;
}
.brandMark{
  width:38px; height:38px; border-radius:12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(25,185,255,.9), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(21,255,0,.65), transparent 60%),
    radial-gradient(circle at 45% 90%, rgba(255,246,74,.55), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.brandName{
  font-weight:800; letter-spacing:.2px; line-height:1.05;
}
.brandName .a{ color:var(--brandA); }
.brandName .l{ color:var(--brandB); }
.brandName .i{ color:var(--brandC); }

.navLinks{ display:flex; gap:18px; align-items:center; }
.navLinks a{
  color:var(--muted);
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}
.navLinks a:hover, .navLinks .current-menu-item > a{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.ctaRow{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.btnPrimary{
  color:#081227;
  background:linear-gradient(180deg, var(--accent), var(--accent2));
}
.btnGhost{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

/* Mobile hamburger */
.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
}

/* Hero */
.hero{ padding:46px 0 30px; }
.heroGrid{
  display:grid; grid-template-columns: 1.05fr .95fr;
  gap:26px; align-items:center;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:700;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.03;
  letter-spacing:-.6px;
}
.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.55;
}
.heroActions{ display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 0; }

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panelInner{ padding:18px; }
.mock{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,22,48,.5);
  overflow:hidden;
}

/* Sections */
.section{ padding:34px 0; }
.section h2{
  margin:0 0 12px;
  font-size:1.65rem;
  letter-spacing:-.3px;
}
.section .lead{ color:var(--muted); margin:0 0 18px; line-height:1.6; }

.grid3{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background:linear-gradient(180deg, rgba(10,22,48,.78), rgba(10,22,48,.50));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}
.card h3{ margin:0 0 6px; font-size:1.05rem; }
.card p{ margin:0; color:var(--muted); line-height:1.55; }
.card .more{ display:inline-flex; margin-top:10px; color:var(--brandA); font-weight:800; }

.pricingGrid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.price{
  font-size:2.0rem; font-weight:900; letter-spacing:-.5px;
}
.badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:800;
  color:var(--text);
}
ul.clean{ padding-left:18px; margin:12px 0 0; color:var(--muted); line-height:1.65; }
ul.clean li{ margin:6px 0; }

/* Footer */
.siteFooter{
  padding:26px 0 90px;
  border-top:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(7,16,34,.40), rgba(7,16,34,.70));
}
.footerGrid{
  display:grid; grid-template-columns: 1.2fr .8fr .8fr;
  gap:16px;
}
.small{ color:var(--muted); font-size:.95rem; line-height:1.6; }

/* Off-canvas menu */
.drawerOverlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  opacity:0; pointer-events:none;
  transition:opacity .15s ease;
  z-index:60;
}
.drawer{
  position:fixed; top:0; right:-360px; width:360px; max-width:92vw; height:100%;
  background:linear-gradient(180deg, rgba(7,16,34,.94), rgba(10,22,48,.92));
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  z-index:61;
  transition:right .18s ease;
  display:flex; flex-direction:column;
}
.drawerHeader{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.drawerClose{
  width:42px; height:42px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.drawerBody{ padding:14px; overflow:auto; }
.drawer h4{ margin:12px 0 8px; color:var(--muted); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; }
.drawer a{ display:block; padding:10px 10px; border-radius:12px; color:var(--text); }
.drawer a:hover{ background:rgba(255,255,255,.06); }
.drawer .cta{ margin-top:12px; }

/* Mobile dock */
.mobileDock{
  position:fixed; left:0; right:0; bottom:0;
  z-index:55;
  background:linear-gradient(180deg, rgba(7,16,34,.55), rgba(7,16,34,.92));
  border-top:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  padding:10px 10px env(safe-area-inset-bottom);
  display:none;
}
.mobileDock .dockRow{
  width:min(var(--wrap), calc(100% - 20px));
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:8px;
}
.dockBtn{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px;
  padding:9px 6px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:800;
  font-size:.72rem;
}
.dockBtn strong{ color:var(--text); font-size:.95rem; line-height:1; }
.dockBtn:hover{ color:var(--text); background:rgba(255,255,255,.07); }

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .pricingGrid{ grid-template-columns:1fr; }
  .footerGrid{ grid-template-columns:1fr; }
  .navLinks{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .mobileDock{ display:block; }
  .siteFooter{ padding-bottom:110px; }
}

body.drawerOpen{ overflow:hidden; }
body.drawerOpen .drawerOverlay{ opacity:1; pointer-events:auto; }
body.drawerOpen .drawer{ right:0; }
