/* Dev6 Hosting — "advanced coder" neon style */
:root{
  --bg:#060a13;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --ink:#e5e7eb;
  --muted:#9aa4b2;
  --border:rgba(255,255,255,.10);

  --accent:#7c3aed;   /* purple */
  --accent2:#22d3ee;  /* cyan */
  --glow:rgba(34,211,238,.22);

  --radius:18px;
  --max:1120px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Roboto,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  color:var(--ink);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}

/* Background layers */
.bg{position:fixed;inset:0;z-index:-3;pointer-events:none}
.bg-grid{
  position:absolute;inset:-20%;
  background:
    linear-gradient(to right, rgba(34,211,238,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124,58,237,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(900px) rotateX(58deg) translateY(-20%);
  transform-origin: top;
  filter: blur(.2px);
  opacity:.55;
  animation: drift 18s linear infinite;
}
.bg-glow{
  position:absolute;inset:-10%;
  background:
    radial-gradient(900px 550px at 15% 0%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(34,211,238,.18), transparent 55%),
    radial-gradient(700px 500px at 70% 100%, rgba(34,211,238,.10), transparent 55%),
    linear-gradient(180deg, #050813, #070b16 60%, #050813);
}
.bg-noise{
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  opacity:.12;
  mix-blend-mode:overlay;
}

@keyframes drift{
  0%{transform: perspective(900px) rotateX(58deg) translateY(-24%) translateX(0)}
  100%{transform: perspective(900px) rotateX(58deg) translateY(-24%) translateX(-160px)}
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(6,10,19,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 260px;
}

.logo{
  width:86px;
  height:86px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#0b1220;
  box-shadow:
    0 0 0 1px rgba(34,211,238,.20),
    0 12px 40px rgba(34,211,238,.16);
}

.brand-text b{
  display:block;
  font-size:16px;
  font-weight:900;
  letter-spacing:-.02em;
}
.brand-text span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

/* Nav links */
nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
  transition:.15s ease;
}
nav a:hover{color:var(--ink);background:rgba(255,255,255,.06)}

.nav-cta{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  background: rgba(255,255,255,.06);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color:#061019;
  box-shadow: 0 14px 45px rgba(34,211,238,.18);
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost:hover{background:rgba(255,255,255,.08)}

/* Mobile menu */
.hamburger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px;
  background: rgba(229,231,235,.85);
  margin:6px 10px;
  border-radius:999px;
}
.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  padding:12px 18px 16px;
  background: rgba(6,10,19,.92);
}
.mobile-menu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  text-decoration:none;
  color:rgba(229,231,235,.92);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  margin-bottom:10px;
}
.mobile-menu a:hover{background:rgba(255,255,255,.06)}

/* Hero */
.hero{padding: 70px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:stretch;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,.22);
  background: rgba(0,0,0,.22);
  color: rgba(229,231,235,.86);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  margin-bottom:14px;
}
.kicker .dot{
  width:9px;height:9px;border-radius:999px;
  background: rgba(34,211,238,.9);
  box-shadow: 0 0 16px rgba(34,211,238,.55);
}

h1{
  margin:0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing:-.03em;
  line-height:1.05;
  font-weight:900;
}
.grad{
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 70ch;
}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}

.pillrow{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.pill{
  font-size:12px;
  color:var(--ink);
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding:8px 10px;border-radius:999px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}
.stat{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 10px 12px;
}
.stat b{display:block;font-size:12px;letter-spacing:.03em}
.stat span{display:block;color:var(--muted);font-size:12px;margin-top:4px}

/* Terminal Panel */
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}
.lights{display:flex;gap:7px;align-items:center}
.lights span{width:10px;height:10px;border-radius:999px;display:inline-block}
.lights .r{background:#ff5c5c}
.lights .y{background:#ffd15c}
.lights .g{background:#4dff88}
.panel-title{font-size:12px;color:rgba(229,231,235,.78);font-weight:800;letter-spacing:.03em}
.chip{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,.22);
  background: rgba(34,211,238,.10);
  color:#c9fbff;
}
.terminal{
  margin:0;
  padding:14px 14px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  line-height:1.65;
  color: rgba(229,231,235,.92);
  background: rgba(0,0,0,.18);
}
.terminal .dim{color: rgba(154,164,178,.70)}
.terminal .cmd{color: rgba(229,231,235,.95)}
.terminal .ok{color: rgba(77,255,136,.85)}
.panel-foot{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:12px 14px 14px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.16);
}
.badge{
  font-size:11px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(229,231,235,.86);
}

/* Sections */
section{padding: 22px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.section-head h2{margin:0;font-size:20px;letter-spacing:-.02em}
.section-head p{margin:0;color:var(--muted);font-size:13px;line-height:1.6}

/* Cards */
.card{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.mini{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.mini h3{margin:0 0 8px;font-size:14px}
.mini p, .mini li{margin:0;color:var(--muted);font-size:13px;line-height:1.65}

.mini.power{
  border-color: rgba(34,211,238,.22);
  box-shadow: 0 12px 44px rgba(34,211,238,.06);
}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}

.list{margin:0;padding-left:18px;color:var(--muted);font-size:13px;line-height:1.7}

.spacer{height:12px}

/* Code box */
.codebox{
  margin-top:10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow:hidden;
}
.codehead{
  padding:10px 12px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  color: rgba(229,231,235,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  text-transform: uppercase;
}
.codebox code{
  display:block;
  padding:12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  line-height:1.7;
  color: rgba(229,231,235,.92);
}

/* Callout */
.callout{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid rgba(124,58,237,.22);
  background: rgba(124,58,237,.08);
  padding:12px;
  border-radius: 16px;
  color: rgba(229,231,235,.90);
}
.callout i{margin-top:2px;color: rgba(34,211,238,.9)}

/* Pricing */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.plan{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.04);
  position:relative;
  overflow:hidden;
}
.plan.featured{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 20px 70px rgba(34,211,238,.10);
}
.plan .tag{
  position:absolute;top:14px;right:14px;
  font-size:11px;font-weight:900;
  padding:7px 10px;border-radius:999px;
  background: rgba(34,211,238,.12);
  border:1px solid rgba(34,211,238,.25);
  color:#c9fbff;
}
.plan h3{margin:0;font-size:15px}
.amt{margin-top:8px;font-size:26px;font-weight:900}
.amt small{font-size:13px;color:var(--muted);font-weight:700}
.plan-cta{margin-top:14px}

/* Contact */
.contact{
  margin-top: 10px;
  background: rgba(255,255,255,.04);
  border-top:1px solid var(--border);
  padding: 28px 0;
}
form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
label{font-size:12px;color:var(--muted);font-weight:700}
.field{display:flex;flex-direction:column;gap:7px}
input,select,textarea{
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  font-size: 14px;
  outline:none;
  background: rgba(0,0,0,.25);
  color: var(--ink);
}
textarea{min-height:120px;resize:vertical}
.full{grid-column:1/-1}

/* IMPORTANT: your HTML uses .actions */
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center
}

.form-note{
  color: rgba(154,164,178,.9);
  font-size:12px;
  font-weight:700;
  margin-left:auto;
}

/* Honeypot (spam trap) */
.honeypot{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Footer */
.footer{
  padding: 22px 0 34px;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}

/* Divider */
.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.35), rgba(124,58,237,.35), transparent);
  margin: 18px 0 0;
  filter: drop-shadow(0 0 14px var(--glow));
}

/* Badge */
.brand-badge{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  text-align:center;
}
.brand-badge img{
  width:116px;height:116px;
  object-fit:contain;
  filter: drop-shadow(0 0 10px rgba(34,211,238,.42));
}
.brand-badge span{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color: rgba(229,231,235,.78);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px){
  nav{display:none}
  .hamburger{display:block}
  .mobile-menu{display:block}
  .hero-grid{grid-template-columns:1fr}
  .grid3,.grid2,.pricing{grid-template-columns:1fr}
  form{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .form-note{margin-left:0}
}
/* Stack panel (replaces terminal) */
.panel-top.minimal{
  justify-content:space-between;
}
.stack{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background: rgba(0,0,0,.14);
}
.stack-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
}
.stack-ico{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius: 14px;
  border:1px solid rgba(34,211,238,.18);
  background: rgba(34,211,238,.08);
  color: rgba(229,231,235,.92);
}
.stack-text b{
  display:block;
  font-size:13px;
  letter-spacing:.02em;
}
.stack-text span{
  display:block;
  color: var(--muted);
  font-size:12px;
  margin-top:4px;
  line-height:1.5;
}
/* =========================
   Dev6 Logo Add-on (Readable, not overwhelming)
   Paste at bottom of main.css
   ========================= */

/* Header brand: ensure good alignment when logo grows */
.brand{
  align-items:center;
}

/* Bigger readable header logo */
.logo{
  width:90px;
  height:90px;

  /* prevent cropping text in logo */
  object-fit: contain;
  padding: 0px;

  border-radius:16px;
  border:1px solid var(--border);
  background:#0b1220;

  /* clean glow to match your cyan/purple theme */
  box-shadow:
    0 0 0 1px rgba(34,211,238,.20),
    0 12px 40px rgba(34,211,238,.16);

  /* optional: keep it crisp */
  image-rendering: auto;
}

/* Slightly tighten brand text so logo doesn't overwhelm */
.brand-text b{
  font-size:16px;
  line-height:1.05;
}
.brand-text span{
  font-size:12px;
}

/* Optional: subtle hover (premium, not flashy) */
.brand:hover .logo{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.logo{
  transition: transform .15s ease, filter .15s ease;
}

/* Badge logo (bigger than before, still clean) */
.brand-badge .badge-logo{
  width:120px;
  height:120px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(34,211,238,.42));
}

/* Mobile tuning */
@media (max-width: 980px){
  .logo{
    width:72px;
    height:72px;
  }
}

@media (max-width: 480px){
  .logo{
    width:64px;
    height:64px;
    padding: 5px;
  }
  .brand-text b{font-size:15px}
  .brand-text span{font-size:11px}
}
