:root{
  --bg:#2B0633;
  --panel:#1C0224;
  --panel-soft:#24042d;

  --text:#EAEAF0;
  --muted:#A5A5AF;

  --accent:#9CFF4F;
  --accent-soft:#7DFF72;

  --border:rgba(156,255,79,.25);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:Arial, Helvetica, sans-serif;
  background:radial-gradient(circle at 20% 0%, #3b0b48, #190021 60%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(28,2,36,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

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

.brand-logo{
  height:72px; /* Logo size (increase/decrease here) */
  width:auto;
  border-radius:10px;
}

.brand-name{
  font-weight:800;
  letter-spacing:.2px;
  color:#C9C9CE;
  font-size:18px;
}

.brand-tagline{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
  line-height:1.25;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:var(--muted);
  font-weight:700;
}

.nav a:hover{color:var(--accent)}

.nav-cta{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--accent);
  color:var(--accent);
}

/* HERO */
.hero{
  padding:70px 0 40px;
  background:
    radial-gradient(900px 300px at 80% 0%, rgba(156,255,79,.18), transparent 60%),
    radial-gradient(700px 250px at 10% 20%, rgba(125,255,114,.15), transparent 60%);
  border-bottom:1px solid var(--border);
}

.hero-inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.hero h1{
  font-size:44px;
  line-height:1.08;
  margin:0 0 12px;
}

.subhead{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  margin:0 0 18px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid var(--accent);
  font-weight:800;
  font-size:14px;
}

.btn.primary{
  background:var(--accent);
  color:#111;
  border:none;
}

.btn.primary:hover{background:#b8ff7a}

.btn.ghost{
  background:transparent;
  color:var(--accent);
}

.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
  margin-top:6px;
}

/* SECTIONS */
.section{padding:54px 0}

.section.alt{
  background:rgba(0,0,0,.18);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section h2{margin:0 0 10px;font-size:28px}

.section-lead{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.7;
}

/* CARDS */
.card,.hero-card,.contact-card{
  background:rgba(28,2,36,.65);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
}

.hero-card h2{margin:0 0 8px;font-size:16px}
.hero-card ul{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.6}
.hero-card li{margin:6px 0}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:16px;
  align-items:start;
}

form{display:grid;gap:12px;margin-top:8px}

label{
  display:grid;
  gap:6px;
  color:var(--muted);
  font-size:13px;
  text-align:left;
}

input,textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--panel-soft);
  color:var(--text);
  outline:none;
}

input::placeholder,textarea::placeholder{color:#8A8A94}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.fineprint{color:rgba(183,195,230,.75);font-size:12px;margin:0}

.divider{height:1px;background:var(--border);margin:14px 0}

.link{color:var(--accent);text-decoration:underline}
.link:hover{opacity:.9}

/* FOOTER */
.footer{padding:24px 0;color:#8A8A94}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.muted{opacity:.9;max-width:650px;line-height:1.5}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .brand-logo{height:60px}
}