:root{
  --bg:#07080b;
  --panel:#0f1117;
  --text:#e8eaf0;
  --muted:#a7adbd;
  --accent:#ff1e2d;
  --line:rgba(255,255,255,.12);
  --radius:18px;
  --max:1100px;
}

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

/* Base Page */
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:#07080b;
  line-height:1.55;
  position:relative;
  overflow-x:hidden;
}

/* Neutral smokey background with subtle red tint */
body::before{
  content:"";
  position:fixed;
  inset:-25%;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.04), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(0,0,0,.55), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(0,0,0,.65), transparent 65%),
    radial-gradient(circle at 30% 25%, rgba(255,30,45,.10), transparent 58%),
    radial-gradient(circle at 80% 60%, rgba(255,30,45,.06), transparent 62%);

  filter: blur(18px);
  opacity:.85;
}

/* Ensure content sits above smoke */
header, main, footer{
  position:relative;
  z-index:1;
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), 92%); margin:0 auto}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,8,11,.55);
  border-bottom:1px solid var(--line);
}

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

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

.brand img{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
}

.brand .name{
  font-weight:900;
  letter-spacing:.2px;
}

.brand .tag{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

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

nav a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}

nav a:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}

nav a.active{
  color:var(--text);
  border-color:rgba(255,30,45,.35);
  background:rgba(255,30,45,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,30,45,.35);
  background: linear-gradient(135deg, rgba(255,30,45,.95), rgba(255,106,0,.85));
  color:#fff;
  font-weight:900;
  box-shadow: 0 18px 40px rgba(255,30,45,.18);
}

.btn.ghost{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.14);
  color:var(--text);
  box-shadow:none;
}

.hero{
  padding:44px 0 34px;
}

.heroCenter{
  text-align:center;
  display:grid;
  gap:14px;
  justify-items:center;
}

.heroLogo{
  width:min(920px, 92vw);
  border-radius:28px;
  box-shadow: 0 28px 85px rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.08);
}

h1{
  margin:0;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing:-.5px;
  line-height:1.1;
}

.tagline{
  margin:0;
  font-size: clamp(16px, 1.6vw, 20px);
  color:var(--muted);
}

.tagline strong{color:#fff}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:8px;
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:8px;
}

.pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:13px;
}

.section{padding:34px 0}
.section h2{margin:0 0 10px; font-size:22px}
.sub{margin:0 0 16px; color:var(--muted)}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width: 900px){
  nav{display:none}
  .grid2{grid-template-columns:1fr}
}

.card{
  background: rgba(15,17,23,.70);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}

.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
li{margin:8px 0}

form{display:grid; gap:12px}
label{display:grid; gap:7px; font-weight:800; font-size:13px}

input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,11,16,.7);
  color: var(--text);
  outline:none;
}

input:focus, textarea:focus, select:focus{
  border-color:rgba(255,30,45,.55);
  box-shadow: 0 0 0 3px rgba(255,30,45,.12);
}

.small{font-size:12px; color:var(--muted); font-weight:600}

footer{
  padding:28px 0 40px;
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:28px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}
