:root{
  --bg:#0b1220;
  --surface:#0f1a2e;
  --card:#101f38;
  --text:#eaf0ff;
  --muted:#b7c4e6;
  --line:rgba(255,255,255,.12);
  --accent:#5eead4; /* change to your preferred accent */
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:16px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(94,234,212,.10), transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(94,234,212,.08), transparent 55%),
    linear-gradient(180deg, #070c16, var(--bg) 45%, #070c16);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,12,22,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 280px}
.logo-mark{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), rgba(94,234,212,.25));
  box-shadow: 0 10px 25px rgba(94,234,212,.12);
}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}

.header-ctas{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--line);
  font-weight:600; font-size:14px;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), rgba(94,234,212,.35));
  color:#041018;
  border-color: rgba(94,234,212,.35);
}
.btn-ghost{background:transparent; color:var(--text)}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.nav-toggle{
  display:none;
  background:transparent; color:var(--text);
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:10px 20px 16px;
  background:rgba(7,12,22,.9);
}
.mobile-nav a{display:block; padding:10px 0; color:var(--muted)}
.mobile-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.hero{padding:70px 0 30px}
.hero-grid{
  display:grid; grid-template-columns: 1.25fr .85fr;
  gap:26px; align-items:start;
}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 14px}
.lead{font-size:18px; color:var(--muted); line-height:1.55; margin:0 0 18px}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}

.trust-chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.trust-chips span{
  padding:8px 10px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

.microcopy{color:var(--muted); font-size:13px; margin:16px 0 0}

.hero-panel{display:grid; gap:12px}
.panel-card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.panel-title{font-weight:700; margin-bottom:10px}
.checklist, .bullets{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}
.bullets li{margin:8px 0}

.section{padding:56px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 14px; font-size:30px}
.section-lead{margin:0 0 18px; color:var(--muted); line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 10px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.service-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.service{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.service h3{margin:0 0 10px; font-size:16px}
.service ul{margin:0; padding-left:18px; color:var(--muted)}
.service li{margin:8px 0}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.step{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.step-num{
  width:32px; height:32px; border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(94,234,212,.15);
  border:1px solid rgba(94,234,212,.25);
  color: var(--accent);
  font-weight:800;
  margin-bottom:10px;
}
.step h3{margin:0 0 8px; font-size:16px}
.step p{margin:0 0 10px; color:var(--muted); line-height:1.55}
.step .small{margin:0; font-size:13px}

.framework-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.framework{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.framework h3{margin:0 0 10px; font-size:16px}
.framework p{margin:0; color:var(--muted); line-height:1.55}

.disclaimer{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
  padding:12px 14px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:12px;
}

.case-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.case{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.case h3{margin:0 0 10px; font-size:16px}
.case p{margin:0 0 10px; color:var(--muted); line-height:1.55}
.small{font-size:13px; color:var(--muted)}
.note{
  margin-top:14px;
  padding:14px 16px;
  border-radius: var(--radius);
  background: rgba(94,234,212,.10);
  border:1px solid rgba(94,234,212,.18);
}

.roadmap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.form-card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.form-card h3{margin:0 0 8px}
label{display:block; font-size:13px; color:var(--muted); margin:10px 0}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(7,12,22,.55);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(94,234,212,.45)}
textarea{resize:vertical}

.faq details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 14px;
  background: rgba(255,255,255,.04);
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); line-height:1.55}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.contact-points{display:grid; gap:10px; margin:14px 0}
.muted{color:var(--muted)}
.calendar-placeholder{
  margin-top:14px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background: rgba(7,12,22,.7);
}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px}
.footer-links a{color:var(--muted); font-size:14px}

@media (max-width: 980px){
  .nav, .header-ctas{display:none}
  .nav-toggle{display:inline-flex}
  .hero-grid, .roadmap, .contact-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .framework-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .case-grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .service-grid{grid-template-columns: 1fr}
  .hero h1{font-size:36px}
}

@media (max-width: 560px){
  .cards{grid-template-columns: 1fr}
}
