:root{
  --bg: #0b1220;
  --panel: #0f1a2e;
  --card: #111f36;
  --text: #e9eefc;
  --muted: #b9c4e2;
  --brand: #7aa8ff;
  --brand2:#67e8f9;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(122,168,255,0.22), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(103,232,249,0.18), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(122,168,255,0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration:none; }
a:hover{ opacity:0.92; }

.container{
  width: min(var(--max), calc(100% - 40px));
  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;
  border-radius:12px;
  background: rgba(255,255,255,0.12);
  border:1px solid var(--border);
  z-index:999;
}

header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(11,18,32,0.90), rgba(11,18,32,0.55));
  border-bottom: 1px solid var(--border);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(10px 10px at 30% 35%, rgba(255,255,255,0.9), transparent 60%),
    linear-gradient(135deg, rgba(122,168,255,1), rgba(103,232,249,1));
  box-shadow: 0 10px 30px rgba(122,168,255,0.25);
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.navlinks a{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.navlinks a:hover{
  border-color: var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.navlinks a.active{
  border-color: rgba(122,168,255,0.35);
  background: rgba(122,168,255,0.10);
  color: var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn:hover{ background: rgba(255,255,255,0.09); }
.btn.primary{
  border-color: rgba(122,168,255,0.45);
  background: linear-gradient(135deg, rgba(122,168,255,0.95), rgba(103,232,249,0.80));
  color: #071023;
  font-weight: 800;
}
.btn.primary:hover{ filter: brightness(1.02); }

main{ padding: 34px 0 54px; }

.hero{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.hero-card{
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.kicker{
  color: var(--brand2);
  font-weight: 700;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  font-size: 12px;
}

h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}
.lede{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-aside{
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(122,168,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(122,168,255,0.20);
  box-shadow: var(--shadow);
}

.aside-title{
  font-weight: 800;
  margin: 0 0 6px;
}
.aside-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.aside-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
}
.badge{
  margin-top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 24px rgba(122,168,255,0.25);
}

.section{
  margin-top: 26px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.section h2{
  margin: 0 0 12px;
  font-size: 22px;
}
.section p{ color: var(--muted); margin: 0 0 12px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(17,31,54,0.55);
  padding: 16px;
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.step .num{
  display:inline-flex;
  width: 30px; height: 30px;
  border-radius: 12px;
  align-items:center; justify-content:center;
  font-weight: 900;
  background: rgba(122,168,255,0.16);
  border: 1px solid rgba(122,168,255,0.28);
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); font-size: 14px; }

.callout{
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(103,232,249,0.25);
  background: linear-gradient(180deg, rgba(103,232,249,0.10), rgba(255,255,255,0.03));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.callout p{ margin: 0; color: var(--muted); }

footer {
  border-top: 1px solid var(--border);
  padding: 6px 0;          /* controls height — smaller = thinner */
  font-size: 12px;
  color: rgba(233,238,252,0.6);
  text-align: center;
}

footer .container {
  margin: 0 auto;
}



.form{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.field{
  display:grid;
  gap: 6px;
}
label{ font-weight: 700; font-size: 13px; color: rgba(233,238,252,0.90); }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(122,168,255,0.45);
  box-shadow: 0 0 0 4px rgba(122,168,255,0.12);
}
textarea{ min-height: 140px; resize: vertical; }

.small{
  font-size: 13px;
  color: rgba(233,238,252,0.70);
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* Only widen hero text on contact page */
body:has(.navlinks a.active[href="contact.html"]) .lede {
  max-width: none;
}

