:root{
  --bg:#0b1020;
  --panel:#0f1730;
  --text:#e9eefc;
  --muted:#aab6d6;
  --line:rgba(255,255,255,.12);
  --shadow:0 14px 36px rgba(0,0,0,.28);
  --radius:18px;

  --brand:#4aa3ff;
  --accent:#ff8a3d;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(74,163,255,.25), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(255,138,61,.20), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{width:min(1100px, calc(100% - 40px)); margin:0 auto}

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

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

.brand{display:flex; align-items:center; gap:10px}
.brand-mark{width:34px; height:34px; border-radius:10px}
.brand-name{font-weight:700; letter-spacing:.2px}

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

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

.hamburger{
  display:block;
  width:18px;height:12px; position:relative;
}
.hamburger::before,.hamburger::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius:2px;
  background:rgba(233,238,252,.9);
}
.hamburger::before{top:0}
.hamburger::after{bottom:0}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.hero{padding:56px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-size:13px;
}

h1{
  font-size:44px;
  line-height:1.08;
  margin:14px 0 12px;
  letter-spacing:-.6px;
}

.lead{font-size:17px; color:var(--muted); max-width:62ch; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  border-color: rgba(74,163,255,.35);
  background: linear-gradient(135deg, rgba(74,163,255,.20), rgba(255,138,61,.14));
}
.btn-secondary{
  border-color: rgba(255,138,61,.35);
  background: rgba(255,138,61,.10);
}
.btn-ghost{background:transparent}
.btn-sm{padding:9px 12px; border-radius:12px; font-size:13px}
.full{width:100%}

.trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}
.trust-item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:10px 12px;
  min-width:140px;
}
.trust-kpi{font-weight:800; letter-spacing:.2px}
.trust-label{color:var(--muted); font-size:13px}

.fineprint{color:rgba(170,182,214,.9); font-size:13px; margin-top:14px}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-header{padding:18px 18px 0}
.logo{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.12);
}
.card-body{padding:18px}
.card-row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.card-label{color:var(--muted); font-size:13px}
.card-title{font-weight:800; margin-top:2px}
.badge{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  white-space:nowrap;
}

.clean-list{margin:14px 0 16px; padding-left:18px; color:var(--muted)}
.clean-list li{margin:8px 0}

.section{padding:44px 0}
.section.alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.03), transparent);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head h2{margin:0 0 8px; font-size:30px; letter-spacing:-.3px}
.section-head p{margin:0; color:var(--muted)}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:18px;
}
.feature{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.feature h3{margin:0 0 6px; font-size:18px}
.feature p{margin:0; color:var(--muted)}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:18px;
}
.step{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.step-num{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  border:1px solid rgba(74,163,255,.35);
  background:rgba(74,163,255,.10);
  font-weight:800;
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color:var(--muted)}

.cta{padding:54px 0}
.cta-box{
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(74,163,255,.10), rgba(255,138,61,.08));
  border-radius: 24px;
  padding:22px;
  box-shadow: var(--shadow);
}
.cta-box h2{margin:0 0 8px}
.cta-box p{margin:0 0 16px; color:var(--muted)}

.contact-form{display:grid; gap:12px}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.16);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(170,182,214,.75)}
input:focus, textarea:focus{border-color: rgba(74,163,255,.45)}
.form-note{margin:0; color:rgba(233,238,252,.9); font-size:13px; min-height:18px}

.contact-alt{display:flex; gap:18px; flex-wrap:wrap; margin-top:16px}
.contact-alt-item .muted{color:var(--muted); font-size:13px; margin-bottom:2px}

.site-footer{
  padding:22px 0 30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(170,182,214,.95);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:13px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  h1{font-size:38px}
}

@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .nav-links{
    display:none;
    position:absolute;
    top:64px; right:0;
    background: rgba(11,16,32,.98);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:10px;
    min-width: 210px;
    box-shadow: var(--shadow);
  }
  .nav-links.open{display:grid; gap:8px}
  .nav-links a{padding:10px 10px; border-radius:12px}
  .nav-links a:hover{background: rgba(255,255,255,.05)}
  .feature-grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .form-row{grid-template-columns: 1fr}
}


/* Splash layout */
.splash{
  min-height: calc(100vh - 72px);
  display:flex;
}
.splash-hero{
  width:100%;
  padding:40px 0 18px;
  display:flex;
  align-items:center;
}
.splash-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.tagline{
  margin: 6px 0 10px;
  font-size:18px;
  color: rgba(233,238,252,.95);
  font-weight:700;
  letter-spacing:-.2px;
}
.splash-bullets{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}
.splash-bullets li{margin:10px 0}
.splash-bullets strong{color: rgba(233,238,252,.95)}
.splash-card .clean-list{margin: 12px 0 0}

.site-footer{
  padding:16px 0 18px;
}

/* Mobile splash */
@media (max-width: 920px){
  .splash-grid{grid-template-columns: 1fr}
  .splash-hero{padding:28px 0 10px}
  h1{font-size:40px}
}
