:root{
  --bg: #0b0f14;
  --card: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; background: radial-gradient(1200px 600px at 15% 10%, rgba(90,170,255,.18), transparent 60%), radial-gradient(1000px 700px at 85% 20%, rgba(255,140,90,.14), transparent 60%), var(--bg); color: var(--text); }
a{ color: inherit; text-decoration: none; }
p{ line-height:1.65; color: var(--muted); margin: 0 0 14px; }
h1,h2,h3{ margin: 0 0 12px; letter-spacing: -0.02em; }
.container{ width:min(1040px, 92vw); margin:0 auto; padding: 28px 0 64px; }

.nav{
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11,15,20,.72);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.navInner{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; gap: 16px; }
.brand{ display:flex; flex-direction:column; gap:2px; }
.brand strong{ font-size: 14px; letter-spacing: .02em; }
.brand span{ font-size: 12px; color: var(--muted); }

.links{ display:flex; gap: 14px; flex-wrap: wrap; }
.links a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.links a:hover{ color: var(--text); border-color: var(--border); background: rgba(255,255,255,.04); }

.hero{
  margin-top: 22px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.kicker{ font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.68); margin-bottom: 10px; }
.hero h1{ font-size: clamp(28px, 4vw, 44px); }
.hero h2{ font-size: clamp(16px, 2vw, 20px); color: var(--muted); font-weight: 500; }
.badges{ display:flex; flex-wrap:wrap; gap: 8px; margin: 16px 0 18px; }
.badge{
  font-size: 12px;
  color: rgba(255,255,255,.8);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

.ctaRow{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 14px;
}
.btn:hover{ background: rgba(255,255,255,.07); }
.btn.primary{ background: rgba(90,170,255,.18); border-color: rgba(90,170,255,.35); }
.btn.primary:hover{ background: rgba(90,170,255,.24); }

.grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
}
@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.card h3{ font-size: 16px; margin-bottom: 8px; }
.list{ margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 8px 0; }

.section{ margin-top: 18px; }
.sectionTitle{ display:flex; align-items:baseline; justify-content:space-between; gap: 12px; margin-bottom: 10px; }
.sectionTitle h2{ font-size: 18px; }
.small{ font-size: 12px; color: var(--muted); }

.expItem{ padding: 14px 0; border-top: 1px solid rgba(255,255,255,.10); }
.expItem:first-child{ border-top: none; padding-top: 0; }
.expItem strong{ display:block; }
.expMeta{ font-size: 12px; color: var(--muted); margin-top: 4px; }
.pills{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 10px; }
.pill{ font-size: 12px; padding: 6px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.78); }

.footer{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: 12px;
}
