/* =========================================
   DEWAPG Dark Theme (Premium)
   File: assets/style-dewapg-dark.css
   ========================================= */

:root{
  --bg:#070a14;
  --panel:#0c1226;

  --text:#f3f6ff;
  --muted:rgba(195,204,255,.92);

  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);

  --brand:#bba6ff;
  --brand2:#4da3ff;

  --shadow:0 16px 36px rgba(0,0,0,.55);
  --radius:18px;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  line-height:1.6;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 5%, rgba(77,163,255,.18), transparent 60%),
    radial-gradient(900px 540px at 85% 15%, rgba(187,166,255,.18), transparent 60%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}
.container{max-width:1150px;margin:0 auto;padding:0 18px}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,10,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.logo{
  width:40px;
  height:40px;
  border-radius:14px;
  background: linear-gradient(135deg,var(--brand2),var(--brand));
  box-shadow: var(--shadow);
}

.menu{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.menu a{
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.05);
}
.menu a.active{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.06);
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:900;
  font-size:14px;
  white-space:nowrap;
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg,var(--brand2),var(--brand));
  box-shadow: var(--shadow);
}
.btn:hover{
  transform: translateY(-1px);
  transition: transform .15s ease;
}

/* Layout */
.hero{padding:56px 0 20px}
.section{padding:18px 0}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
}

.panel{
  background: rgba(12,18,38,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.side{align-self:start}

.kicker{
  font-size:12px;
  color:var(--muted);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}

h1{
  margin:6px 0 6px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.7px;
}
h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}
h3{
  margin:0 0 8px;
  font-size:16px;
}
p{
  margin:0 0 12px;
  color:rgba(243,246,255,.86);
}

.tagline{
  margin:0 0 10px;
  font-weight:800;
  color:rgba(243,246,255,.92);
}
.small{
  font-size:12px;
  color:var(--muted);
}

.hr{
  height:1px;
  background:var(--line);
  margin:16px 0;
}

/* Badges */
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.badge{
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background:rgba(255,255,255,.04);
}

/* Grid cards */
.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:12px;
}
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}

.list{
  margin:10px 0 0;
  padding:0 0 0 18px;
  color:rgba(243,246,255,.82);
}
.list li{margin:6px 0}

/* CTA Row + Callouts */
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.callout{
  background: rgba(255,255,255,.04);
  border:1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:14px;
}

.cta-panel{
  background: linear-gradient(135deg, rgba(77,163,255,.14), rgba(187,166,255,.14));
  border:1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding:16px;
}

/* Score */
.score-card{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.score-item{
  display:grid;
  gap:6px;
}
.score-label{
  font-size:12px;
  color:var(--muted);
  font-weight:900;
}
.score-bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  overflow:hidden;
}
.score-bar span{
  display:block;
  height:100%;
  background: linear-gradient(90deg,var(--brand2),var(--brand));
  border-radius:999px;
}

/* Footer */
.footer{
  padding:28px 0 42px;
  border-top:1px solid var(--line);
  margin-top:18px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
}
.footer-brand{
  font-weight:900;
  color:var(--text);
  margin-bottom:6px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.footer-links a{
  color:var(--muted);
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
}
.footer-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid,
  .grid3,
  .grid2,
  .footer-grid{
    grid-template-columns:1fr;
  }

  h1{font-size:36px}

  .actions{display:none}

  .footer-links{justify-content:flex-start}
}
