:root{
  --bg:#071225;
  --bg-soft:#0B1730;
  --panel:rgba(255,255,255,.065);
  --panel-border:rgba(255,255,255,.13);
  --text:#F5F9FF;
  --muted:#B9CBE4;
  --primary:#5DB7FF;
  --primary-strong:#2F7CF6;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(40,104,210,.25), transparent 36rem),
    linear-gradient(180deg,#061020 0%,#0A1830 100%);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}
.skip-link{position:absolute;left:-9999px;top:1rem;background:#fff;color:#000;padding:.7rem 1rem;z-index:100}
.skip-link:focus{left:1rem}
.site-header{
  width:min(calc(100% - 2rem),var(--max));
  margin:auto;
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand img{width:190px;height:auto}
nav{display:flex;gap:1.4rem}
nav a{text-decoration:none;color:var(--muted);font-weight:600}
nav a:hover{color:var(--text)}
.hero{
  width:min(calc(100% - 2rem),var(--max));
  min-height:72vh;
  margin:auto;
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
  border:1px solid var(--panel-border);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
}
.hero-content{max-width:820px;text-align:center;padding:5rem 1.5rem;position:relative;z-index:2}
.eyebrow{text-transform:uppercase;letter-spacing:.22em;font-size:.78rem;font-weight:800;color:var(--primary);margin:0 0 1rem}
h1,h2,h3{line-height:1.08;margin-top:0}
h1{font-size:clamp(2.6rem,7vw,6rem);letter-spacing:-.045em;margin-bottom:1.4rem}
h2{font-size:clamp(2rem,4.8vw,4rem);letter-spacing:-.035em}
h3{font-size:1.6rem}
.lead{font-size:clamp(1.05rem,2vw,1.3rem);max-width:690px;margin:0 auto;color:var(--muted)}
.hero-actions{display:flex;justify-content:center;gap:.9rem;flex-wrap:wrap;margin-top:2rem}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:.8rem 1.25rem;border-radius:12px;text-decoration:none;font-weight:800;transition:.2s ease}
.button:hover{transform:translateY(-2px)}
.button-primary{background:linear-gradient(135deg,var(--primary),var(--primary-strong));color:#051326;box-shadow:0 12px 30px rgba(47,124,246,.25)}
.button-secondary{border:1px solid var(--panel-border);background:rgba(255,255,255,.04)}
.status{margin-top:1.4rem;color:var(--muted);font-size:.92rem}
.hero-glow{position:absolute;border-radius:999px;filter:blur(15px);opacity:.7}
.hero-glow-one{width:360px;height:360px;background:#245FD3;top:-180px;right:-100px}
.hero-glow-two{width:260px;height:260px;background:#3EC8FF;bottom:-170px;left:-100px;opacity:.35}
.section{width:min(calc(100% - 2rem),var(--max));margin:7rem auto}
.section-heading{max-width:820px}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2.5rem}
.service-card{padding:2rem;border:1px solid var(--panel-border);border-radius:22px;background:var(--panel);min-height:250px}
.service-number{display:block;color:var(--primary);font-weight:900;margin-bottom:3.2rem}
.service-card p{color:var(--muted)}
.contact-section{
  width:min(calc(100% - 2rem),var(--max));
  margin:7rem auto 3rem;
  padding:3rem;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  background:linear-gradient(135deg,rgba(93,183,255,.15),rgba(47,124,246,.08));
  border:1px solid var(--panel-border);
}
.contact-section h2{max-width:700px;margin-bottom:0}
.site-footer{
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto;
  padding:2rem 0 3rem;
  border-top:1px solid var(--panel-border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  color:var(--muted);
}
.socials{display:flex;gap:.8rem}
.socials a{width:38px;height:38px;border:1px solid var(--panel-border);border-radius:10px;display:grid;place-items:center}
.socials img{width:19px;height:19px;filter:invert(1)}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
@media(max-width:820px){
  nav{display:none}
  .brand img{width:160px}
  .hero{min-height:68vh;border-radius:22px}
  .services-grid{grid-template-columns:1fr}
  .contact-section{flex-direction:column;align-items:flex-start;padding:2rem}
  .site-footer{align-items:flex-start;flex-direction:column}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .button{transition:none}
}
