*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
  --bg:#0b1020;
  --bg-soft:#12182c;
  --card:#151c33;
  --card-2:#ffffff;
  --text:#eef2ff;
  --text-dark:#111827;
  --muted:#a5b4d4;
  --muted-dark:#4b5563;
  --line:#263252;
  --accent:#8b5cf6;
  --accent-2:#4f46e5;
  --white:#ffffff;
}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(11,16,32,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.brand{
  font-weight:900;
  letter-spacing:-.04em;
  font-size:1.05rem;
}
.nav-links{
  display:flex;
  gap:22px;
  color:var(--muted);
  font-weight:600;
}
.nav-links a:hover{color:var(--white)}
.hero{
  padding:84px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(139,92,246,.18), transparent 30%),
    radial-gradient(circle at left center, rgba(79,70,229,.12), transparent 28%),
    linear-gradient(180deg, #0b1020 0%, #0e1428 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  margin:0 0 14px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:800;
  color:#b8a7ff;
}
h1,h2,h3,h4{
  margin:0 0 16px;
  line-height:1.05;
  letter-spacing:-.04em;
}
h1{font-size:clamp(40px,5.6vw,72px); max-width:12ch}
h2{font-size:clamp(28px,3.8vw,46px); max-width:14ch}
h3{font-size:24px}
h4{font-size:22px}
.hero-subline{
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#c7d2fe;
  margin:0 0 22px;
}
.hero-text,.body-copy{
  color:var(--muted);
  font-size:18px;
  max-width:62ch;
}
.hero-actions,.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:154px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:800;
  transition:transform .16s ease, opacity .16s ease, background .16s ease;
}
.btn:hover{transform:translateY(-1px); opacity:.98}
.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--white);
  box-shadow:0 10px 24px rgba(79,70,229,.28);
}
.btn-secondary{
  border:1px solid rgba(255,255,255,.15);
  color:var(--white);
  background:rgba(255,255,255,.03);
}
.hero-media{
  justify-self:end;
  width:min(100%, 470px);
}
.hero-media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.section{padding:84px 0}
.section-dark{background:var(--bg-soft)}
.section-light{
  background:#f8fafc;
  color:var(--text-dark);
}
.section-light .eyebrow{color:#6d28d9}
.section-light .body-copy,
.section-light p,
.section-light li{color:var(--muted-dark)}
.section-head{margin-bottom:34px}
.impact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.impact-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.impact-number{
  display:inline-flex;
  margin-bottom:12px;
  color:#b8a7ff;
  font-size:12px;
  letter-spacing:.18em;
  font-weight:900;
}
.solve-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.solve-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.solve-card p{color:var(--muted)}
.experience-group{margin-bottom:28px}
.group-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:18px;
}
.timeline{
  position:relative;
}
.timeline::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:11px;
  width:2px;
  background:#dbe3f2;
}
.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:40px 1fr;
  gap:18px;
  margin-bottom:18px;
}
.timeline-marker{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#6d28d9;
  border:5px solid #ede9fe;
  position:relative;
  z-index:2;
  margin-top:8px;
}
.timeline-card{
  background:var(--white);
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:22px;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}
.timeline-item.featured .timeline-card{
  border-color:#c4b5fd;
  box-shadow:0 10px 30px rgba(109,40,217,.10);
}
.timeline-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.timeline-card p{margin:0;color:#374151}
.experience-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.mini-card{
  background:var(--white);
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:22px;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}
.mini-card p{margin:0;color:#4b5563}
.mini-role{
  font-weight:800;
  color:#6d28d9 !important;
  margin:0 0 10px !important;
}
.strengths-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.strength-chip{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:16px 18px;
  border-radius:16px;
  font-weight:700;
  color:#e9edff;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
}
.clean-list{
  margin:0;
  padding-left:20px;
}
.clean-list li{margin-bottom:10px}
.contact-section{
  background:linear-gradient(180deg, #0e1428 0%, #0b1020 100%);
}
.contact-box{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:28px;
  padding:34px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  align-items:center;
}
.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:24px 0 48px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:14px;
}
@media (max-width: 980px){
  .hero-grid,.impact-grid,.solve-grid,.experience-grid,.strengths-grid,.two-col,.contact-box{
    grid-template-columns:1fr 1fr;
  }
  .impact-grid{grid-template-columns:1fr 1fr}
  .strengths-grid{grid-template-columns:1fr 1fr}
  .hero-grid{grid-template-columns:1fr}
  .hero-media{justify-self:start; width:min(100%, 420px)}
}
@media (max-width: 720px){
  .nav-links{display:none}
  .section,.hero{padding:64px 0}
  .impact-grid,.solve-grid,.experience-grid,.strengths-grid,.two-col,.contact-box{
    grid-template-columns:1fr;
  }
  .footer-row{flex-direction:column}
}
