/* WPAutoBlogs homepage template
   - Pure CSS (no build tools)
   - Mobile-first, responsive
*/

:root{
  --bg: #0b0e14;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --primary: #6ee7ff;
  --primary2: #a78bfa;
  --ok: #34d399;
  --warn: #fbbf24;
  --bad: #fb7185;
  --blue: #60a5fa;
  --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 700px at 20% 0%, rgba(110,231,255,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(167,139,250,.10), transparent 60%),
    radial-gradient(1000px 800px at 60% 100%, rgba(52,211,153,.08), transparent 60%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit}
.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background:#fff; color:#000; padding:8px 10px; border-radius:10px;
}
.skip-link:focus{left:10px; top:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,14,20,.65);
  border-bottom:1px solid var(--stroke);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand__logo{filter: drop-shadow(0 10px 18px rgba(0,0,0,.35))}
.brand__name{font-weight:700; letter-spacing:.2px}

.nav{display:none; gap:16px; align-items:center}
.nav__link{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,.05)}
.nav__link--cta{
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  font-weight:700;
}

.nav-toggle{
  width:44px; height:40px;
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  display:grid;
  place-content:center;
  gap:4px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background:rgba(255,255,255,.85);
  border-radius:999px;
}

.mobile-nav{
  border-top:1px solid var(--stroke);
  padding:10px 0 16px;
}
.mobile-nav__link{
  display:block;
  padding:10px 20px;
  text-decoration:none;
  color:var(--muted);
}
.mobile-nav__link:hover{color:var(--text); background:rgba(255,255,255,.04)}
.mobile-nav__link--cta{
  margin:8px 20px 0;
  border-radius:14px;
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  font-weight:800;
  text-align:center;
}

.hero{padding:56px 0 30px}
.hero__grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
  width:fit-content;
}

h1{font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); line-height:1.08; margin:14px 0 12px}
.lead{font-size:1.12rem; color:var(--muted); margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  text-decoration:none;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  box-shadow:none;
}
.btn:hover{border-color:var(--stroke2); background:rgba(255,255,255,.06)}
.btn--primary{
  border:0;
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}
.btn--ghost{background:transparent}
.btn--full{width:100%}

.trust{
  display:flex; flex-wrap:wrap; gap:14px;
  margin:18px 0 0;
}
.trust__item{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:10px 12px;
  min-width:160px;
}
.trust__kpi{display:block; font-weight:900}
.trust__label{display:block; color:var(--muted2); font-size:.92rem}

.fineprint{font-size:.9rem; color:var(--muted2); margin:12px 0 0}

.hero__visual{
  position:relative;
}
.hero__shadow{
  position:absolute; inset:auto 0 -14px 0; height:20px;
  filter: blur(22px);
  background: linear-gradient(90deg, rgba(110,231,255,.25), rgba(167,139,250,.18));
  opacity:.55;
  z-index:-1;
}

.card{
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
}
.card__header{
  display:flex; align-items:center; gap:8px;
  padding:12px 14px;
  border-bottom:1px solid var(--stroke);
  color:var(--muted);
  font-size:.92rem;
}
.card__title{margin-left:6px}
.dot{width:10px;height:10px;border-radius:999px;display:inline-block;opacity:.9}
.dot--g{background:#22c55e}
.dot--y{background:#f59e0b}
.dot--r{background:#ef4444}
.card__body{padding:14px}

.mock-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
.mock-pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  font-size:.92rem;
  color:var(--muted);
}
.mock-list{display:grid;gap:10px}
.mock-item{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.12);
  border-radius:16px;
  padding:10px 10px;
}
.mock-badge{
  font-size:.82rem;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(251,191,36,.12);
  border:1px solid rgba(251,191,36,.35);
  color:#fde68a;
  font-weight:800;
}
.mock-badge--green{
  background:rgba(52,211,153,.12);
  border-color:rgba(52,211,153,.35);
  color:#bbf7d0;
}
.mock-badge--blue{
  background:rgba(96,165,250,.12);
  border-color:rgba(96,165,250,.35);
  color:#bfdbfe;
}
.mock-text{color:var(--text); font-weight:700}
.mock-footer{display:flex;gap:10px;margin-top:16px}
.mock-spark{
  flex:1;
  height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(110,231,255,.18), rgba(167,139,250,.18));
  border:1px solid var(--stroke);
}

.logos{padding:18px 0 26px}
.logos__title{color:var(--muted); margin:0 0 12px}
.logos__row{display:flex;flex-wrap:wrap;gap:10px}
.logo-chip{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:650;
}

.section{padding:56px 0}
.section--alt{
  background: radial-gradient(1200px 700px at 30% 20%, rgba(255,255,255,.06), transparent 60%);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.2rem)}
.section__head p{margin:0; color:var(--muted)}

.steps{
  display:grid; gap:12px;
}
.step{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:16px 16px 14px;
}
.step__num{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-content:center;
  font-weight:900;
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

.cta-band{
  margin-top:18px;
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  padding:16px 16px;
  background: linear-gradient(180deg, rgba(110,231,255,.10), rgba(167,139,250,.06));
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.cta-band--tight{margin-top:22px}
.cta-band h3{margin:0 0 4px}
.cta-band p{margin:0; color:var(--muted)}

.grid{display:grid; gap:12px}
.feature{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:16px 16px;
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:var(--muted)}

.split{display:grid; gap:12px; margin-top:18px}
.split__left, .split__right{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:16px;
}

.checklist{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:18px; height:18px;
  display:grid; place-content:center;
  border-radius:6px;
  background:rgba(52,211,153,.12);
  border:1px solid rgba(52,211,153,.35);
  color:#bbf7d0;
  font-weight:900;
}
.checklist--compact{gap:8px; margin-top:10px}
.mini{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.mini-note{margin:10px 0 0; color:var(--muted2); font-size:.92rem}
.card--plain{box-shadow:none; background:rgba(255,255,255,.03)}
.card--plain h4{margin:0 0 6px}

.toggle{
  display:flex;
  gap:8px;
  width:fit-content;
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:6px;
  background:rgba(255,255,255,.03);
  margin:12px 0 18px;
}
.toggle__btn{
  border:0;
  background:transparent;
  color:var(--muted);
  font-weight:850;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
}
.toggle__btn.is-active{
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}
.badge{
  font-size:.75rem;
  padding:4px 8px;
  margin-left:8px;
  border-radius:999px;
  border:1px solid rgba(52,211,153,.35);
  background:rgba(52,211,153,.12);
  color:#bbf7d0;
}

.pricing{display:grid; gap:12px}
.price-card{
  position:relative;
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.03);
  padding:18px 16px 16px;
}
.price-card--featured{
  border-color: rgba(110,231,255,.28);
  background: linear-gradient(180deg, rgba(110,231,255,.08), rgba(167,139,250,.05));
}
.ribbon{
  position:absolute; top:14px; right:14px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:.82rem;
  color:rgba(0,0,0,.86);
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}
.price{margin:8px 0 0}
.price__amount{font-size:2rem; font-weight:950}
.price__period{color:var(--muted); margin-left:6px}
.muted{color:var(--muted); margin:6px 0 0}

.note{
  margin-top:16px;
  border:1px dashed var(--stroke2);
  border-radius:var(--radius);
  padding:12px 12px;
  color:var(--muted);
  background:rgba(0,0,0,.12);
}

.faq{display:grid; gap:10px}
.faq__item{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:12px 12px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:850;
}
.faq__content{margin-top:10px; color:var(--muted)}

.footer{
  padding:40px 0 26px;
  border-top:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.footer__grid{
  display:grid;
  gap:18px;
}
.footer__col h4{margin:0 0 10px}
.footer__col a{
  display:block;
  text-decoration:none;
  color:var(--muted);
  padding:6px 0;
}
.footer__col a:hover{color:var(--text)}
.footer__bottom{
  margin-top:20px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted2);
}
.brand--footer{opacity:.95}

.modal{
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:rgba(11,14,20,.90);
  color:var(--text);
  padding:0;
  width:min(520px, calc(100% - 28px));
  box-shadow: var(--shadow);
}
.modal::backdrop{background:rgba(0,0,0,.55)}
.modal__inner{padding:18px}
.field{display:grid; gap:6px; margin:12px 0}
.field input{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px 12px;
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.modal__actions{display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; margin-top:14px}

/* Layout upgrades */
@media (min-width: 840px){
  .nav{display:flex}
  .nav-toggle{display:none}
  .mobile-nav{display:none !important}
  .hero{padding:74px 0 44px}
  .hero__grid{grid-template-columns: 1.15fr .85fr; gap:34px}
  .steps{grid-template-columns: repeat(4, 1fr)}
  .grid--3{grid-template-columns: repeat(3, 1fr)}
  .split{grid-template-columns: 1.1fr .9fr}
  .pricing{grid-template-columns: repeat(3, 1fr)}
  .footer__grid{grid-template-columns: 1.4fr 1fr 1fr 1fr}
}
