:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);
  --accent: #7dd3fc;   /* light sky */
  --accent-2: #a78bfa; /* soft violet */
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 14% 18%, rgba(125,211,252,.16), transparent 60%),
    radial-gradient(900px 500px at 86% 22%, rgba(167,139,250,.14), transparent 60%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 40%, #060914 100%);
  line-height:1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }
img{ max-width:100%; height:auto; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#111a2e;
  border:1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand-logo{
  width:46px;
  height:46px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  object-fit: contain;
  padding: 6px;
}
.brand-text{ display:flex; flex-direction:column; gap:2px; }
.brand-name{ font-weight: 700; letter-spacing:.2px; }
.brand-tag{ font-size: 12.5px; color: var(--muted); }

.site-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.site-nav a{
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--muted);
}
.site-nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration:none;
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.95));
  color: #07101f;
  font-weight: 700;
  border: 0;
  box-shadow: var(--shadow);
  text-decoration:none !important;
}
.btn:hover{ filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }
.btn-small{ padding: 9px 12px; border-radius: 12px; font-weight: 700; }
.btn-ghost{
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-full{ width:100%; }

.hero{
  padding: 56px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 24px;
  align-items:start;
}
h1{
  font-size: clamp(32px, 3.4vw, 44px);
  line-height:1.12;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.lead{
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 60ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 18px; }

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.badge{
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}
.badge-title{ font-weight: 800; display:block; }
.badge-sub{ font-size: 12.5px; color: var(--muted); }

.hero-card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card h2{ margin: 0 0 6px; font-size: 18px; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12.5px; }

.contact-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin: 14px 0 16px;
}
.contact-list a{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration:none;
}
.contact-list a:hover{ background: rgba(255,255,255,.07); }
.contact-list-inline{ gap:12px; }
.contact-list-inline a{ display:inline-flex; }

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

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.section-head p{ margin:0; }

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

.steps{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}
.step-num{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  background: rgba(125,211,252,.18);
  border: 1px solid rgba(125,211,252,.25);
  margin-bottom: 10px;
}

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:start;
}
.panel{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}

.map-wrap{
  margin-top: 12px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.map-wrap iframe{
  width:100%;
  height: 260px;
  border:0;
}

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

.form.card{ box-shadow: var(--shadow); }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom: 12px; }
label{ font-size: 13px; color: var(--muted); }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,6,16,.35);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(125,211,252,.45);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}

.prose{ max-width: 820px; }
.prose h1{ margin-top: 6px; }
.info{ background: rgba(255,255,255,.05); }

.site-footer{
  padding: 26px 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(4,7,13,.55);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer-brand img{
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 5px;
  background: rgba(255,255,255,.05);
}
.footer-links{
  display:flex;
  gap: 12px;
}
.footer-links a{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.footer-links a:hover{ background: rgba(255,255,255,.07); text-decoration:none; }

.footer-bottom{
  padding-top: 10px;
  opacity:.9;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner, .split{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-badges{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-block; }
  .site-nav{
    display:none;
    position:absolute;
    right: 16px;
    top: 68px;
    flex-direction:column;
    align-items:stretch;
    padding: 10px;
    border-radius: 16px;
    background: rgba(9,12,20,.95);
    border: 1px solid var(--line);
    width: min(320px, calc(100% - 32px));
    box-shadow: var(--shadow);
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ color: var(--text); }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}