/*
Theme Name: QCN SaaS Stripe Enhanced
Theme URI: https://qcnwealth.ca
Author: QCNWEALTH
Description: Stripe-style SaaS marketing theme for QCN ERP with wallet connect, dropdown ERP links, and admin-editable ERP URL.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: qcn-saas-stripe-enhanced
*/

:root{
  --bg:#020617;
  --panel:#0f172a;
  --card:#111827;
  --border:rgba(255,255,255,.08);
  --text:#e2e8f0;
  --muted:#94a3b8;
  --green:#22c55e;
  --blue:#38bdf8;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:
    radial-gradient(circle at 10% 0%, #22c55e22, transparent 28%),
    radial-gradient(circle at 90% 10%, #38bdf822, transparent 28%),
    #020617;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

a{color:#86efac;text-decoration:none}

.qcn-header{
  backdrop-filter:blur(16px);
  background:rgba(2,6,23,.86);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
}

.qcn-nav{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  gap:20px;
}

.qcn-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:22px;
  letter-spacing:-.03em;
}

.qcn-logo-mark{
  width:38px;
  height:38px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--green),var(--blue));
  display:grid;
  place-items:center;
  color:#020617;
  font-weight:900;
}

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

.qcn-menu a,
.qcn-dropbtn{
  color:#dbeafe;
  background:transparent;
  border:0;
  font-weight:700;
  cursor:pointer;
  padding:10px 12px;
  border-radius:12px;
}

.qcn-menu a:hover,
.qcn-dropbtn:hover{
  background:rgba(255,255,255,.06);
}

.qcn-dropdown{
  position:relative;
}

.qcn-dropdown-content{
  display:none;
  position:absolute;
  right:0;
  top:42px;
  background:#111827;
  min-width:230px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 24px 80px rgba(0,0,0,.45);
}

.qcn-dropdown:hover .qcn-dropdown-content{
  display:block;
}

.qcn-dropdown-content a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#dbeafe;
}

.qcn-dropdown-content a:hover{
  background:rgba(34,197,94,.12);
}

.qcn-btn{
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
  display:inline-block;
  border:1px solid var(--border);
  cursor:pointer;
}

.qcn-btn.primary{
  background:linear-gradient(135deg,var(--green),#4ade80);
  color:#020617;
  border:0;
}

.qcn-btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 50px #22c55e55;
}

.qcn-btn.secondary{
  background:rgba(15,23,42,.8);
  color:#e2e8f0;
}

.qcn-hero{
  max-width:1180px;
  margin:auto;
  padding:110px 20px 70px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.qcn-eyebrow{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.25);
  color:#bbf7d0;
  font-size:13px;
  font-weight:900;
  margin-bottom:18px;
}

.qcn-hero h1{
  font-size:clamp(44px,6vw,78px);
  line-height:.95;
  letter-spacing:-.07em;
  margin:0;
}

.qcn-hero p{
  color:var(--muted);
  max-width:680px;
  font-size:19px;
  line-height:1.65;
}

.qcn-cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.qcn-visual{
  min-height:430px;
  border-radius:34px;
  border:1px solid var(--border);
  background:
    linear-gradient(135deg,rgba(34,197,94,.15),rgba(56,189,248,.12)),
    #0f172a;
  box-shadow:0 40px 120px rgba(0,0,0,.45);
  position:relative;
  overflow:hidden;
}

.qcn-dashboard-mock{
  position:absolute;
  inset:40px;
  background:rgba(2,6,23,.72);
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  padding:22px;
  backdrop-filter:blur(18px);
}

.qcn-mock-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.qcn-mock-card{
  background:#111827;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}

.qcn-mock-label{color:var(--muted);font-size:12px}
.qcn-mock-value{font-size:25px;font-weight:900;margin-top:8px}

.qcn-section{
  max-width:1180px;
  margin:auto;
  padding:60px 20px;
}

.qcn-section h2{
  font-size:38px;
  margin:0 0 16px;
  letter-spacing:-.04em;
}

.qcn-section .lead{
  color:var(--muted);
  max-width:780px;
  line-height:1.65;
  font-size:17px;
}

.qcn-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(255px,1fr));
  gap:18px;
  margin-top:24px;
}

.qcn-card{
  background:linear-gradient(180deg,#111827,#0f172a);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  transition:.3s;
  min-height:155px;
}

.qcn-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(34,197,94,.15);
  border-color:rgba(34,197,94,.35);
}

.qcn-card h3{
  margin:0 0 10px;
  font-size:21px;
}

.qcn-card p{
  margin:0;
  color:#cbd5e1;
  line-height:1.55;
}

.qcn-band{
  margin:40px 0;
  background:linear-gradient(90deg,rgba(34,197,94,.1),rgba(56,189,248,.09));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.qcn-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.qcn-footer{
  padding:40px 20px;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--border);
}

@media(max-width:900px){
  .qcn-hero{grid-template-columns:1fr;padding-top:60px}
  .qcn-visual{min-height:330px}
  .qcn-two{grid-template-columns:1fr}
  .qcn-menu{flex-wrap:wrap;justify-content:flex-end}
}
