:root{
  --bg:#07070a;
  --surface:#0c0c12;
  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --text:#f2f4f8;
  --muted:#b6bcc8;

  --brand:#ff2d2d;     /* red */
  --brand2:#ffb020;    /* warm highlight */
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 22px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color:var(--text);
  line-height:1.65;
  background:
    radial-gradient(1200px 800px at 18% -10%, rgba(255,45,45,.32), transparent 58%),
    radial-gradient(900px 700px at 90% 10%, rgba(255,176,32,.18), transparent 56%),
    linear-gradient(180deg, #050507 0%, var(--bg) 60%, #050507 100%);
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:90px 0}
.grid{display:grid;gap:18px}
.grid.cols-2{grid-template-columns:1fr}
.grid.cols-3{grid-template-columns:1fr}
@media (min-width: 980px){
  .grid.cols-2{grid-template-columns:1.15fr .85fr}
  .grid.cols-3{grid-template-columns:repeat(3,1fr)}
}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(5,5,7,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:800; letter-spacing:.2px;
}
.brandmark{
  width:42px;height:42px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#120607;
  box-shadow: var(--shadow);
  font-weight:900;
}

.navlinks{
  display:flex;gap:10px;align-items:center;flex-wrap:wrap;
}
.navlinks a{
  padding:9px 12px;border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.navlinks a:hover{
  color:var(--text);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.navlinks a.active{
  color:var(--text);
  background: rgba(255,45,45,.16);
  border-color: rgba(255,45,45,.22);
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  cursor:pointer;
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, rgba(255,45,45,.98), rgba(255,176,32,.75));
  color:#120607;
  font-weight:900;
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{
  background: rgba(255,255,255,.03);
}

.hero{padding:98px 0 36px}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--muted);
}
.dot{width:10px;height:10px;border-radius:99px;background: var(--brand)}
h1{font-size:40px;line-height:1.08;margin:16px 0 12px;letter-spacing:-.4px}
@media (min-width: 980px){ h1{font-size:60px} }
.lead{color:var(--muted);font-size:18px;max-width:62ch}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.card h3{margin:10px 0 8px}
.card p{margin:0;color:var(--muted)}

.icon{
  width:48px;height:48px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,45,45,.24);
  background: rgba(255,45,45,.12);
}

.hr{border:0;border-top:1px solid var(--line);margin:22px 0}

.list{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px}
.list li{display:flex;gap:10px;color:var(--muted)}
.check{
  width:18px;height:18px;border-radius:7px;
  margin-top:3px;
  background: rgba(255,176,32,.14);
  border:1px solid rgba(255,176,32,.24);
}

.pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.pill{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}

.form{display:grid;gap:12px}
.field label{display:block;font-size:14px;color:var(--muted);margin-bottom:6px}
.field input,.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(5,5,7,.55);
  color:var(--text);
  outline:none;
}
.field textarea{min-height:130px;resize:vertical}
.smallmuted{color:var(--muted);font-size:13px}

.footer{border-top:1px solid var(--line);padding:30px 0;color:var(--muted)}
.footer .row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
