﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap");

:root{
  --bg:#0b1020;
  --bg2:#070a14;
  --card:rgba(17,26,51,.78);
  --text:#e7ecff;
  --muted:#b8c3ff;
  --border:#22305f;

  --accent1:#7aa2ff;
  --accent2:#2d4fff;

  --shadow: 0 18px 55px rgba(0,0,0,.38);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 18% 0%, rgba(122,162,255,.22), transparent 58%),
    radial-gradient(900px 600px at 90% 22%, rgba(45,79,255,.18), transparent 62%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.65;
}

a{color:var(--accent1);text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  min-height: 100vh;
}

.header{
  display:flex;
  gap:22px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  gap:18px;
  align-items:center;
  min-width: 360px;
}

.logo{
  width: 120px;
  height: 120px;
  object-fit:contain;
  border-radius: 24px;
  padding: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 52px rgba(90,120,255,.25);
}

h1{
  font-size: 40px;
  margin: 0;
  letter-spacing: .2px;
  font-weight: 700;
  line-height: 1.1;
}

.subtitle{
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.nav{display:flex;gap:12px;flex-wrap:wrap}
.nav a{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,20,.22);
  font-size: 14px;
}
.nav a:hover{
  border-color: rgba(122,162,255,.40);
  background: rgba(122,162,255,.12);
}

.card{
  margin-top:30px;
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  min-height: 62vh;
}

/* Main content */
.kv{display:grid;gap:14px}
.kv p{margin:0;color:var(--muted);font-size:17px}
.kv b{color:var(--text);font-weight:700}

.who{
  font-size: 18px !important;
  color: var(--text) !important;
  background: rgba(122,162,255,.10);
  border: 1px solid rgba(122,162,255,.22);
  padding: 12px 14px;
  border-radius: 18px;
}

.cta-row{
  display:flex;
  gap:12px;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122,162,255,.95), rgba(45,79,255,.95));
  color: #061023;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(45,79,255,.25);
}
.btn:hover{ text-decoration:none; filter: brightness(1.05); }

/* Services */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:22px;
}

.pill{
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:18px;
  background: rgba(7,10,20,.30);
  color: var(--muted);
  font-size: 16px;
}
.pill b{
  display:block;
  margin-bottom:8px;
  color:var(--text);
  font-size:17px;
  font-weight:700;
}
.pill:hover{
  border-color: rgba(122,162,255,.30);
  background: rgba(122,162,255,.08);
}

.footer{
  margin-top:34px;
  color:var(--muted);
  font-size:13px;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

code{
  background:rgba(0,0,0,.26);
  padding:.22em .42em;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 920px){
  h1{ font-size: 34px; }
  .logo{ width: 96px; height: 96px; padding: 12px; }
}

@media (max-width: 560px){
  .container{ padding: 40px 16px 52px; }
  h1{ font-size: 30px; }
  .brand{ min-width: 0; }
  .nav a{ padding: 10px 12px; }
}
