:root{
  --bg:#071a33;
  --bg2:#06142a;
  --header:#0a2e5c;
  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.12);
  --text:#eef4ff;
  --muted:rgba(238,244,255,0.78);
  --accent:#2b8cff;
  --accent2:rgba(43,140,255,0.18);
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(43,140,255,0.14), transparent 60%),
    radial-gradient(720px 520px at 85% 20%, rgba(43,140,255,0.10), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.skip-link{
  position:absolute;left:-9999px;top:12px;
  padding:10px 12px;
  background:rgba(0,0,0,0.85);
  border:1px solid var(--border);
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{left:12px}

.container{width:min(var(--max),calc(100% - 36px));margin:0 auto}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg, rgba(10,46,92,0.98), rgba(10,46,92,0.92));
  border-bottom:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(8px);
}
.header-inner{
  height:84px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.brand{display:flex;align-items:center;gap:14px;min-width:280px}
.brand-mark{
  width:44px;height:44px;border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  display:grid;place-items:center;
  overflow:hidden;
}
.brand-logo{width:34px;height:34px;object-fit:contain;display:block}
.brand-name{font-weight:800;letter-spacing:0.2px;line-height:1.1}
.brand-tagline{font-size:13px;color:rgba(238,244,255,0.82)}

.nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  font-size:14px;
  color:rgba(238,244,255,0.88);
  padding:10px 12px;
  border-radius:16px;
}
.nav a:hover{background:rgba(255,255,255,0.07);text-decoration:none}
.nav-cta{
  border:1px solid rgba(43,140,255,0.55);
  background:rgba(43,140,255,0.14);
}

/* Hero */
.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:22px;
  align-items:start;
}
.eyebrow{
  margin:0 0 10px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(238,244,255,0.72);
}
h1{
  margin:0 0 14px;
  font-size:clamp(34px, 3.8vw, 56px);
  line-height:1.08;
  letter-spacing:-0.02em;
}
.hero-lead{
  margin:0 0 18px;
  color:rgba(238,244,255,0.86);
  font-size:18px;
  max-width:76ch;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:10px 0 10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,0.16);
  cursor:pointer;
  font-weight:700;
}
.btn-primary{
  border-color:rgba(43,140,255,0.65);
  background:rgba(43,140,255,0.18);
}
.btn-secondary{
  background:rgba(255,255,255,0.06);
}
.btn:hover{text-decoration:none;filter:brightness(1.06)}
.hero-divider{height:1px;background:rgba(255,255,255,0.10);margin:18px 0}

.panel{
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,0.28);
}
.panel-title{margin:0 0 12px;font-size:22px;letter-spacing:-0.01em}
.panel-list{margin:0;padding-left:18px;color:rgba(238,244,255,0.88)}
.panel-list li{margin:10px 0}
.panel-foot{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
  color:rgba(238,244,255,0.74);
}

/* Sections */
.section{padding:34px 0}
.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.section-title{margin:0 0 12px;font-size:26px;letter-spacing:-0.01em}
.subhead{margin:18px 0 10px;font-size:18px}
.body{margin:10px 0;color:rgba(238,244,255,0.88);max-width:84ch}
.muted{color:var(--muted)}
.small{font-size:13px}

.list{margin:10px 0 0;padding-left:18px;color:rgba(238,244,255,0.86)}
.list li{margin:8px 0}

.two-col{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}

.card{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  padding:18px;
  box-shadow:0 16px 34px rgba(0,0,0,0.22);
}
.card-title{margin:0 0 10px;font-size:18px}

/* Contact */
.contact-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:16px;
  align-items:start;
}
.form .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field{margin-bottom:12px}
label{display:block;margin:0 0 6px;font-size:13px;color:rgba(238,244,255,0.92)}
.req{color:rgba(255,200,200,0.95)}

input, textarea, select{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(0,0,0,0.18);
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(43,140,255,0.65);
  box-shadow:0 0 0 4px rgba(43,140,255,0.14);
}

/* Fix dropdown transparency */
select{background:rgba(0,0,0,0.28)}
select option{background-color:#06142a;color:#eef4ff}
select optgroup{background-color:#06142a;color:#eef4ff}

.help{min-height:18px;margin-top:6px;font-size:12px;color:rgba(255,190,190,0.95)}
.hp{position:absolute;left:-9999px;top:-9999px;height:1px;width:1px;overflow:hidden}
.status{margin:10px 0 0;color:rgba(238,244,255,0.88);font-size:13px}

.kv{margin-top:12px;padding-top:12px;border-top:1px solid rgba(255,255,255,0.10)}
.k{font-size:12px;color:rgba(238,244,255,0.70);letter-spacing:0.10em;text-transform:uppercase;margin-bottom:6px}
.v{color:rgba(238,244,255,0.92)}
.hr{border:none;height:1px;background:rgba(255,255,255,0.10);margin:14px 0}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,0.10);
  padding:18px 0;
  background:rgba(6,20,42,0.55);
}
.footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.footer-brand{font-weight:800}

/* Responsive */
@media (max-width: 1040px){
  .brand{min-width:0}
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form .row{grid-template-columns:1fr}
}

/* Fix dropdown visibility and readability */
select{
  background:rgba(0,0,0,0.36);
  border-color:rgba(255,255,255,0.18);
}

select option{
  background-color:#06142a;
  color:#eef4ff;
}

select optgroup{
  background-color:#06142a;
  color:#eef4ff;
}

/* Slightly improve input readability */
input, textarea, select{
  background:rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.16);
}

input::placeholder, textarea::placeholder{
  color:rgba(238,244,255,0.55);
}
.site-footer {
  margin-top: 56px;
  padding: 28px 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.18));
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
}

.footer-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}

.footer-subtitle {
  margin-top: 6px;
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-meta {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-line {
  margin-bottom: 6px;
}

.footer-links {
  margin: 10px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-links a:hover {
  border-bottom-color: rgba(255,255,255,0.55);
}

.sep {
  opacity: 0.55;
}

.footer-disclaimer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

