:root{
  --bg:#0b0f17;
  --panel:#101827;
  --panel2:#0f1624;
  --text:#e8eefc;
  --muted:#a9b7d1;
  --line:rgba(232,238,252,.12);
  --accent:#7dd3fc;
  --accent2:#a78bfa;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(125,211,252,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(167,139,250,.18), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95; text-decoration:underline; text-decoration-color: rgba(125,211,252,.6)}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

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

.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__mark{
  width:40px;height:40px;
  border-radius:12px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(125,211,252,.25), rgba(167,139,250,.25));
  border:1px solid rgba(232,238,252,.16);
  box-shadow: var(--shadow);
  font-weight:800;
  letter-spacing:.5px;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.muted{color:var(--muted)}
.small{font-size:.9rem}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.nav a{
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{color:var(--text); text-decoration:none}
.nav a.active{color: var(--text);}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(232,238,252,.18);
  background: linear-gradient(135deg, rgba(125,211,252,.25), rgba(167,139,250,.18));
  box-shadow: var(--shadow);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn--ghost{
  background: transparent;
  box-shadow:none;
}
.btn--small{padding:10px 14px; font-weight:800}

.hero{
  padding: 52px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
.hero__content h1{
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height:1.05;
  margin:0 0 14px;
}
.lead{
  font-size:1.1rem;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 18px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 6px 0 18px;}

.pillrow{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  border:1px solid rgba(232,238,252,.16);
  background: rgba(16,24,39,.55);
  color: var(--muted);
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
}

.hero__card{
  background: linear-gradient(180deg, rgba(16,24,39,.9), rgba(16,24,39,.55));
  border:1px solid rgba(232,238,252,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.hero__card h2{margin:0 0 8px; font-size:1.2rem}
.contactcard{margin-top:12px}
.contactcard__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(232,238,252,.14);
}
.contactcard__row:last-child{border-bottom:none}
.label{color:var(--muted); font-weight:800; font-size:.92rem}

.divider{height:1px; background:var(--line); margin:14px 0}
.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}

.section{padding: 40px 0}
.section--alt{
  background: rgba(16,24,39,.35);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:16px}
.section__head h2{margin:0 0 6px; font-size:1.8rem}
.section__head p{margin:0}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.cards--2{grid-template-columns: repeat(2, 1fr);}
.card{
  background: rgba(16,24,39,.55);
  border:1px solid rgba(232,238,252,.14);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.bullets--cols{columns:2; column-gap:20px}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.panel{
  background: rgba(16,24,39,.55);
  border:1px solid rgba(232,238,252,.14);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 10px}

.callout{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(232,238,252,.14);
  background: linear-gradient(135deg, rgba(125,211,252,.12), rgba(167,139,250,.08));
  box-shadow: var(--shadow);
}
.callout__actions{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}

.codeblock{
  margin:14px 0 0;
  background: rgba(11,15,23,.65);
  border:1px solid rgba(232,238,252,.14);
  border-radius: var(--radius);
  padding:14px;
  overflow:auto;
  color: #dbeafe;
}

.contactgrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
  align-items:start;
}
.contactline{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin:10px 0;
}
.form label{
  display:block;
  margin: 12px 0;
  color: var(--muted);
  font-weight:800;
}
input, textarea{
  width:100%;
  margin-top:8px;
  border-radius: 14px;
  border:1px solid rgba(232,238,252,.16);
  background: rgba(11,15,23,.55);
  color: var(--text);
  padding:12px 12px;
  font: inherit;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(125,211,252,.45);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}
.form__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.footer{
  padding: 22px 0 34px;
}
.footer__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.pagehero{
  padding: 44px 0 12px;
}
.pagehero h1{
  margin:0 0 8px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height:1.1;
}

.link{
  display:inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .cards{grid-template-columns: repeat(2, 1fr);}
  .contactgrid{grid-template-columns: 1fr;}
  .cards--2{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .nav{display:none;}
  .cards{grid-template-columns: 1fr;}
  .bullets--cols{columns:1;}
}
