:root{
  --bg0:#050711;
  --bg1:#0A1030;

  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);

  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.10);

  --blue:#4D7CFF;
  --purple:#8A5CFF;
  --cyan:#00E6FF;
  --pink:#FF3DCE;

  --r1:16px;
  --r2:22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(77,124,255,.18), transparent 62%),
    radial-gradient(700px 460px at 92% 18%, rgba(255,61,206,.12), transparent 58%),
    radial-gradient(900px 520px at 50% 92%, rgba(0,230,255,.10), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.section{padding:70px 0}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.18s ease;
}
.btn-small{height:36px; padding:0 14px; border-radius:12px; font-size:13px}

.btn-primary{
  background: linear-gradient(135deg, rgba(77,124,255,.95), rgba(138,92,255,.95));
  color:#fff;
  box-shadow: 0 18px 40px rgba(77,124,255,.18), 0 0 22px rgba(0,230,255,.10);
}
.btn-primary:hover{transform:translateY(-1px); filter:brightness(1.06)}
.btn-outline{
  background: rgba(255,255,255,.04);
  border-color: rgba(77,124,255,.35);
  color: var(--text);
}
.btn-outline:hover{background: rgba(77,124,255,.10); border-color: rgba(0,230,255,.35)}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(255,255,255,.07)}

/* ===== Glow wrapper ===== */
.glowbox{position:relative}
.glowbox::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background: linear-gradient(90deg,
    rgba(77,124,255,.0),
    rgba(77,124,255,.34),
    rgba(0,230,255,.26),
    rgba(255,61,206,.18),
    rgba(138,92,255,.28)
  );
  filter: blur(18px);
  opacity:.65;
  z-index:-1;
}

/* ===== Header ===== */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(5,7,17,.60);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.nav{
  height:94px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex; align-items:center;
}
.brand img{
  width:72px; height:72px;
  object-fit:contain;
  filter: drop-shadow(0 0 18px rgba(0,230,255,.25));
}

.navlinks{
  display:flex; align-items:center; gap:16px;
  font-size:13px;
  color: rgba(234,240,255,.80);
}
.navlinks a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  transition:.18s ease;
}
.navlinks a:hover{
  background: rgba(77,124,255,.10);
  border-color: rgba(77,124,255,.18);
}
.navlinks a.active{
  background: rgba(0,230,255,.08);
  border-color: rgba(0,230,255,.18);
  color:#fff;
}

.nav-actions{display:flex; align-items:center; gap:10px}

.hamburger{
  width:46px; height:46px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.hamburger span{
  width:18px; height:2px;
  background: rgba(234,240,255,.75);
  border-radius:2px;
}

/* ===== Mobile drawer ===== */
.drawer{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none;
  transition:.2s ease;
}
.drawer.show{opacity:1; pointer-events:auto}
.drawer-box{
  position:absolute;
  top:100px; right:16px;
  width:min(340px, calc(100% - 32px));
  background: rgba(10,16,48,.92);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  backdrop-filter: blur(12px);
}
.drawer-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 6px 12px;
}
.drawer-title{font-weight:900}
.drawer-close{
  width:38px; height:38px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  cursor:pointer;
}
.drawer-box a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  color: rgba(234,240,255,.84);
}
.drawer-box a:hover{
  background: rgba(77,124,255,.10);
  border-color: rgba(77,124,255,.18);
}
.drawer-btn{width:100%; margin-top:10px}

/* ===== Section headings ===== */
.section-head{margin-bottom:22px}
.section-head.center{text-align:center}
.pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.7px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(0,230,255,.18);
  box-shadow: 0 0 18px rgba(0,230,255,.08);
}
.section-head h2{
  margin:10px 0 0;
  font-size:28px;
}
.subtext{margin:8px 0 0; color:var(--muted); font-size:13px}

/* ===== Hero ===== */
.hero{
  position:relative;
  overflow:hidden;
  padding: 18px 0 10px;
}
.hero-grid{
  min-height:560px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:center;
  padding: 18px 0 40px;
}
.hero-left h1{
  margin:14px 0 12px;
  font-size:46px;
  line-height:1.12;
  text-shadow: 0 0 26px rgba(77,124,255,.18);
}
.grad{
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 22px;
  color: var(--muted);
  max-width:580px;
  font-size:14px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.trust-row{
  margin-top:18px;
  display:flex; gap:12px; flex-wrap:wrap;
}
.trust-box{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.trust-num{font-weight:900; font-size:16px}
.trust-txt{color:var(--muted); font-size:12px}

/* Hero logos */
.hero-right{position:relative}
.hero-logos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.hero-logo-card{
  border-radius:18px;
  padding:12px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.hero-logo-card.wide{
  grid-column: 1 / -1;
}
.hero-logo-card img{
  width:100%;
  height:auto;
  border-radius:14px;
}

.hero-note{
  margin-top:14px;
  border-radius:18px;
  padding:14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.hn-title{font-weight:900}
.hn-text{margin-top:6px; color:var(--muted); font-size:12px}

.hero-bg{
  position:absolute; inset:auto 0 0 0;
  height:280px;
  background:
    radial-gradient(1200px 320px at 50% 0%, rgba(77,124,255,.18), transparent 65%),
    radial-gradient(900px 280px at 10% 40%, rgba(0,230,255,.12), transparent 60%),
    radial-gradient(1000px 300px at 90% 45%, rgba(255,61,206,.10), transparent 70%);
  clip-path: ellipse(85% 75% at 50% 75%);
  opacity:.95;
}

/* ===== Resellers (4 columns) ===== */
.reseller-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.reseller-card{
  border-radius:18px;
  padding:16px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  text-align:center;
  transition:.18s ease;
}
.reseller-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,230,255,.18);
  box-shadow: 0 0 22px rgba(0,230,255,.06);
}
.reseller-pic{
  width:78px; height:78px;
  margin:0 auto 12px;
  border-radius:999px;
  background: rgba(77,124,255,.10);
  border:1px solid rgba(77,124,255,.18);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.reseller-pic img{
  width:100%; height:100%;
  object-fit:cover;
}
.reseller-name{
  font-weight:900;
  margin-bottom:6px;
}
.reseller-site{
  display:inline-block;
  font-size:12px;
  color: rgba(234,240,255,.78);
  border-bottom:1px dashed rgba(234,240,255,.25);
}
.reseller-site:hover{color:#fff; border-bottom-color: rgba(0,230,255,.45)}

/* ===== Themes ===== */
.themes-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.theme-card{
  border-radius:18px;
  padding:16px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  transition:.18s ease;
}
.theme-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,230,255,.18);
  box-shadow: 0 0 22px rgba(0,230,255,.06);
}
.theme-top{
  height:86px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(77,124,255,.08);
  border:1px solid rgba(77,124,255,.16);
  margin-bottom:12px;
}
.theme-top img{
  width:64px; height:64px;
  border-radius:999px;
  object-fit:cover;
  padding:6px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.theme-card h3{margin:0 0 6px; text-align:center; font-size:14px}
.tiny{margin:0 0 12px; text-align:center; color:var(--muted); font-size:12px}
.theme-actions{display:flex; gap:10px; justify-content:center}

/* ===== Why/Feature grid ===== */
.feature-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature-card{
  border-radius:18px;
  padding:16px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.ficon{
  width:40px; height:40px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,230,255,.10);
  border:1px solid rgba(0,230,255,.18);
  box-shadow: 0 0 18px rgba(0,230,255,.08);
  font-weight:900;
  color: var(--cyan);
}
.feature-card h3{margin:12px 0 6px; font-size:14px}
.feature-card p{margin:0; color:var(--muted); font-size:12px}

/* ===== Contact ===== */
.contact-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:14px;
  align-items:start;
}
.contact-cards{display:grid; gap:12px}
.contact-card{
  border-radius:18px;
  padding:16px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  display:flex; gap:12px;
}
.cicon{
  width:44px; height:44px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,61,206,.08);
  border:1px solid rgba(255,61,206,.16);
  box-shadow: 0 0 18px rgba(255,61,206,.08);
  font-weight:900;
}
.contact-card h3{margin:0; font-size:14px}
.contact-card p{margin:4px 0 0; color:var(--muted); font-size:12px}

.form{
  border-radius:18px;
  padding:16px;
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
  font-family:inherit;
  font-size:13px;
}
textarea{resize:vertical}
input:focus, textarea:focus{
  border-color: rgba(0,230,255,.28);
  box-shadow: 0 0 0 4px rgba(0,230,255,.10);
}

/* ===== Footer ===== */
.footer{
  padding:44px 0 18px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-left p{margin:10px 0 0; color:var(--muted); font-size:13px}
.footer-logo{
  width:72px; height:72px;
  object-fit:contain;
  filter: drop-shadow(0 0 16px rgba(0,230,255,.18));
}
.footer-col h4{margin:0 0 10px; font-size:14px}
.footer-col a{
  display:block;
  padding:6px 0;
  color: rgba(234,240,255,.76);
  font-size:13px;
}
.footer-col a:hover{color:#fff}

.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
  color: rgba(234,240,255,.60);
  font-size:12px;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; min-height:auto}
  .hero-left h1{font-size:34px}
  .reseller-grid{grid-template-columns: repeat(2, 1fr)}
  .themes-grid{grid-template-columns: repeat(2, 1fr)}
  .feature-grid{grid-template-columns: repeat(2, 1fr)}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .navlinks{display:none}
  .hamburger{display:flex}
  .reseller-grid{grid-template-columns:1fr}
  .themes-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
}
