:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.12);
  --accent: #7dd3fc;
  --accent2:#a78bfa;
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(125,211,252,0.18), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(167,139,250,0.16), transparent 55%),
              linear-gradient(180deg, #070b14, #0b1220 55%, #070b14);
}

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

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

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

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

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  color: var(--text);
}
.logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 6px;
}
.brand-name{ font-weight: 800; letter-spacing: 0.12em; font-size: 14px; }
.brand-tagline{ color: var(--muted); font-size: 12px; margin-top: 2px; }

.nav{ display:flex; align-items:center; gap: 14px; flex-wrap: wrap; }
.nav a{ color: var(--text); opacity: 0.9; }
.nav a:hover{ opacity: 1; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,0.07); }
.btn.primary{
  border-color: rgba(125,211,252,0.35);
  background: linear-gradient(135deg, rgba(125,211,252,0.22), rgba(167,139,250,0.18));
}
.btn.ghost{ background: transparent; }

.hero{
  position: relative;
  padding: 56px 0 24px;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.badges{ display:flex; flex-wrap: wrap; gap: 10px; }
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
}

.hero-card .card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.card-title{ font-weight: 800; margin-bottom: 10px; letter-spacing: 0.02em; }

.checklist{ list-style: none; padding: 0; margin: 0 0 12px; }
.checklist li{
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  line-height: 1.4;
}
.checklist li::before{ content: "✓"; position:absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }

.card-note{
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.hero-slider{
  width: min(1100px, calc(100% - 40px));
  margin: 20px auto 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slides{
  display:flex;
  width: 400%;
  transform: translateX(0%);
  transition: transform 600ms ease;
}
.slides img{
  width: 25%;
  height: 220px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.hero-wave{
  position:absolute;
  left: -10%;
  right: -10%;
  bottom: -80px;
  height: 140px;
  background: radial-gradient(closest-side, rgba(125,211,252,0.18), transparent 70%);
  filter: blur(24px);
  opacity: 0.9;
}

.section{ padding: 44px 0; }
.section.alt{ background: rgba(255,255,255,0.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h2{ margin:0 0 10px; font-size: 28px; letter-spacing: -0.01em; }
.lead{ margin: 0 0 18px; color: var(--muted); line-height: 1.7; }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-card{ border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 16px; }
.mini-card h3{ margin: 0 0 8px; }
.mini-card p{ margin: 0; color: var(--muted); line-height: 1.6; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.split-box{ border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 16px; }
.split-box ul{ margin: 10px 0 0; color: var(--muted); line-height: 1.7; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gitem{
  margin: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.gitem img{ width: 100%; height: 230px; object-fit: cover; display:block; }

.contact{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
.contact-card{ border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 16px; }
.contact-row{ display:flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-row:last-child{ border-bottom: none; }
.label{ width: 110px; color: rgba(255,255,255,0.55); }

.contact-note{ border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(125,211,252,0.10), rgba(167,139,250,0.08)); padding: 16px; }
.small{ color: rgba(255,255,255,0.6); font-size: 13px; }

.footer{ border-top: 1px solid var(--line); padding: 18px 0; color: rgba(255,255,255,0.65); }
.footer-inner{ display:flex; justify-content: space-between; align-items:center; gap: 12px; flex-wrap: wrap; }
.footer-links{ display:flex; gap: 12px; }
.footer-links a{ color: rgba(255,255,255,0.7); }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .slides img{ height: 200px; }
}
