:root {
  --bg: #07111f;
  --bg-soft: #0c1728;
  --card: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.12);
  --text: #edf2f7;
  --muted: #b8c2d1;
  --accent: #e2ad42;
  --accent-2: #46a6ff;
  --shadow: 0 24px 60px rgba(0,0,0,0.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #06101d 0%, #081424 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 29, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 34px; height: 34px; object-fit: contain; border-radius: 10px; }
.nav { display: flex; gap: 24px; color: var(--muted); }
.nav a:hover { color: white; }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 28px; }
.cover-section { padding: 24px 0 0; }
.cover-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.section { padding: 72px 0; }
.section-accent { padding: 72px 0; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.card, .credential-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.hero-copy, .hero-side, .card, .contact-card { padding: 26px; }
.eyebrow {
  margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: .28em; color: var(--muted);
}
.headline { margin: 0; color: var(--accent); font-weight: 700; font-size: clamp(18px, 2vw, 24px); }
.summary { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.8; margin-top: 20px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 16px;
  font-weight: 600; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #c98f28); color: #1b1406; }
.btn-secondary { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); color: white; }
.hero-meta {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 14px;
}
.hero-meta a { text-decoration: underline; text-decoration-color: rgba(226,173,66,0.5); text-underline-offset: 3px; }
.hero-meta a:hover { color: var(--accent); }
.profile-photo {
  width: min(100%, 290px); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 26px; margin: 0 auto;
}
.section-head { margin-bottom: 28px; }
.section-head h2 { margin: 10px 0 8px; font-size: clamp(28px, 4vw, 44px); line-height: 1.15; }
.section-head p:not(.eyebrow) { color: var(--muted); }
.about-grid, .card-grid { display: grid; gap: 18px; }
.about-grid { grid-template-columns: 1fr 1fr; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill-grid span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--muted);
}
.timeline { display: grid; gap: 18px; }
.timeline-item ul { color: var(--muted); line-height: 1.7; padding-left: 20px; }
.timeline-head { display: flex; gap: 12px; justify-content: space-between; align-items: baseline; }
.timeline-head span, .company { color: var(--muted); }
.inline-company-logo { height: 80px; width: auto; max-width: 170px; object-fit: contain; border-radius: 10px; margin: 16px 0 8px; }
.credential-group { margin-top: 34px; }
.credential-group h3 { font-size: 24px; margin-bottom: 16px; }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.credential-card {
  display: block; padding: 20px; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.credential-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.08); }
.credential-card strong { display: block; font-size: 18px; line-height: 1.35; }
.credential-card small { display: block; margin-top: 10px; color: var(--muted); }
.badge {
  display: inline-block; margin-bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(226,173,66,0.14); color: #f0cf89; font-size: 12px; font-weight: 700;
}
.featured { background: linear-gradient(180deg, rgba(226,173,66,0.12), rgba(255,255,255,0.04)); }
.contact-card {
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end;
}
.footer { padding: 28px 0 42px; color: var(--muted); }
.footer-wrap { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 28px; height: 28px; object-fit: contain; }
.back-top {
  background: none; color: var(--muted); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 10px 14px; cursor: pointer;
}
.back-top:hover { color: white; border-color: rgba(255,255,255,0.28); }

@media (max-width: 980px) {
  .hero-shell, .about-grid, .contact-card, .card-grid, .two-up { grid-template-columns: 1fr; }
  .hero-side { max-width: 560px; }
}
@media (max-width: 760px) {
  .nav {
    position: absolute; right: 16px; top: 72px; display: none; flex-direction: column; min-width: 220px; padding: 16px;
    background: rgba(6,16,29,0.96); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-copy, .hero-side, .card, .contact-card { padding: 20px; }
  .summary { font-size: 16px; }
  .footer-wrap, .timeline-head, .footer-left { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }
  .cover-image { max-height: 240px; }
}
