/* ==========================================================================
   Imran Baghirov — Executive Profile
   Design system: deep navy + gold, editorial serif headings, quiet motion.
   ========================================================================== */

:root{
  --navy-950:#080f1e;
  --navy-900:#0a1628;
  --navy-850:#0d1c33;
  --navy-800:#0f1f38;
  --navy-700:#16294a;
  --navy-600:#1e3357;
  --navy-500:#2a4370;

  --gold-300:#e6cf8f;
  --gold-400:#d4af37;
  --gold-500:#c9a227;
  --gold-600:#a9841c;

  --ivory:#f4f1ea;
  --text-hi:#f3f5f9;
  --text-body:#c9d1e0;
  --text-muted:#8d9ab0;
  --text-faint:#66738a;

  --line:rgba(201,162,39,0.18);
  --line-soft:rgba(255,255,255,0.08);
  --card-bg:rgba(255,255,255,0.03);
  --card-bg-hover:rgba(255,255,255,0.055);

  --shadow-lg:0 24px 60px -20px rgba(0,0,0,0.55);
  --shadow-md:0 12px 30px -12px rgba(0,0,0,0.45);

  --font-display:"Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container:1180px;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;

  --nav-h:76px;
  color-scheme: dark;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--nav-h) + 16px); }

body{
  margin:0;
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(42,67,112,0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(201,162,39,0.06), transparent 55%),
    var(--navy-900);
  color:var(--text-body);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--text-hi);
  line-height:1.15;
  margin:0 0 .5em;
  font-weight:700;
  letter-spacing:.2px;
}
h1{ font-size:clamp(2.4rem,4.6vw,3.8rem); }
h2{ font-size:clamp(1.7rem,3vw,2.5rem); }
h3{ font-size:1.3rem; }
p{ margin:0 0 1em; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-weight:700; font-size:.72rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-400);
  margin-bottom:14px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold-500); display:inline-block; }

.lede{ font-size:1.15rem; color:var(--text-body); max-width:64ch; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:999px; font-weight:600; font-size:.95rem;
  border:1px solid transparent; cursor:pointer; transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-gold{ background:linear-gradient(135deg,var(--gold-400),var(--gold-600)); color:var(--navy-950); box-shadow:0 10px 26px -10px rgba(201,162,39,0.55); }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 16px 32px -12px rgba(201,162,39,0.65); }
.btn-ghost{ background:rgba(255,255,255,0.02); border-color:var(--line-soft); color:var(--text-hi); }
.btn-ghost:hover{ background:rgba(255,255,255,0.06); border-color:var(--line); transform:translateY(-2px); }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ---------- header / nav ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; height:var(--nav-h); z-index:100;
  display:flex; align-items:center;
  background:rgba(8,15,30,0.72);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:background .3s ease, border-color .3s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; max-width:1340px; }

.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--text-hi); white-space:nowrap; flex-shrink:0; }
.brand-mark{
  width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg,var(--navy-600),var(--navy-900));
  border:1px solid var(--line); color:var(--gold-400); font-size:1rem; font-weight:700; flex-shrink:0;
}
.brand small{ display:block; font-family:var(--font-body); font-weight:500; font-size:.66rem; letter-spacing:.07em; color:var(--text-muted); text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap:0; flex-wrap:nowrap; }
.nav-links a{
  position:relative; padding:9px 12px; font-size:.88rem; font-weight:500; color:var(--text-body);
  border-radius:999px; transition:color .2s ease, background .2s ease; white-space:nowrap;
}
.nav-links a:hover{ color:var(--text-hi); background:rgba(255,255,255,0.05); }
.nav-links a.active{ color:var(--gold-400); }
.nav-links a.active::after{
  content:""; position:absolute; left:16px; right:16px; bottom:3px; height:2px; background:var(--gold-500); border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta .btn{ padding:10px 20px; font-size:.88rem; }

.nav-toggle{
  display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line-soft);
  background:rgba(255,255,255,0.03); align-items:center; justify-content:center; cursor:pointer; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:18px; height:2px; background:var(--text-hi); border-radius:2px; transition:transform .25s ease, opacity .25s ease; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- sections ---------- */
main{ padding-top:var(--nav-h); }
section{ padding:96px 0; position:relative; }
section.tight{ padding:64px 0; }
.section-alt{ background:linear-gradient(180deg, rgba(255,255,255,0.015), transparent); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.section-head{ max-width:760px; margin:0 0 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- hero ---------- */
.hero{ padding:150px 0 100px; position:relative; overflow:hidden; }
.hero-canvas{ position:absolute; inset:0; z-index:0; opacity:.55; pointer-events:none; }
.hero .container{ position:relative; z-index:1; }
.hero-grid{ display:grid; grid-template-columns:1.25fr .85fr; gap:64px; align-items:center; }
.hero-tags{ display:flex; flex-wrap:wrap; gap:10px; margin:28px 0; }
.tag{
  font-size:.78rem; font-weight:600; padding:7px 14px; border-radius:999px;
  background:var(--card-bg); border:1px solid var(--line-soft); color:var(--text-muted);
}
.tag.gold{ color:var(--gold-400); border-color:var(--line); }

.hero-portrait{ position:relative; justify-self:center; }
.hero-portrait .ring{
  width:min(320px,72vw); aspect-ratio:1; border-radius:50%; padding:6px;
  background:linear-gradient(150deg,var(--gold-400),var(--gold-600) 45%,var(--navy-600) 100%);
  box-shadow:0 20px 50px -18px rgba(0,0,0,0.6);
}
.hero-portrait .ring-inner{ width:100%; height:100%; border-radius:50%; overflow:hidden; background:var(--navy-800); border:4px solid var(--navy-900); }
.hero-portrait img{ width:100%; height:100%; object-fit:cover; }
.hero-portrait .badge{
  position:absolute; bottom:6px; right:6px; background:var(--navy-950); border:1px solid var(--line);
  border-radius:999px; padding:10px 16px; font-size:.78rem; font-weight:700; color:var(--gold-400);
  box-shadow:var(--shadow-md);
}

/* ---------- stat strip ---------- */
.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius-md); overflow:hidden; }
.stat-cell{ background:var(--navy-900); padding:26px 20px; text-align:center; }
.stat-num{ font-family:var(--font-display); font-size:2.1rem; color:var(--gold-400); font-weight:700; }
.stat-label{ font-size:.74rem; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); margin-top:4px; }

/* ---------- cards ---------- */
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

.card{
  background:var(--card-bg); border:1px solid var(--line-soft); border-radius:var(--radius-md);
  padding:30px; transition:transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.card:hover{ transform:translateY(-4px); border-color:var(--line); background:var(--card-bg-hover); box-shadow:var(--shadow-md); }
.card h3{ margin-bottom:10px; }
.card .icon{
  width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg,var(--navy-600),var(--navy-900)); border:1px solid var(--line); color:var(--gold-400); margin-bottom:18px; font-size:1.2rem;
}
.card p:last-child{ margin-bottom:0; }
.card ul{ display:flex; flex-direction:column; gap:10px; }
.card li{ padding-left:20px; position:relative; color:var(--text-body); font-size:.95rem; }
.card li::before{ content:"—"; position:absolute; left:0; color:var(--gold-500); }

/* ---------- badges / chips ---------- */
.chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ font-size:.82rem; font-weight:600; padding:9px 16px; border-radius:999px; background:var(--navy-800); border:1px solid var(--line); color:var(--gold-300); }
.chip.dark{ background:rgba(255,255,255,0.03); color:var(--text-body); border-color:var(--line-soft); }

/* ---------- timeline ---------- */
.timeline{ position:relative; margin-left:8px; padding-left:36px; border-left:2px solid var(--line); }
.timeline-item{ position:relative; padding-bottom:44px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute; left:-45px; top:4px; width:16px; height:16px; border-radius:50%;
  background:var(--navy-900); border:3px solid var(--gold-500); box-shadow:0 0 0 4px rgba(201,162,39,0.12);
}
.timeline-item .period{ font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-400); margin-bottom:6px; }
.timeline-item h3{ margin-bottom:2px; }
.timeline-item .org{ color:var(--text-muted); font-weight:500; margin-bottom:10px; display:block; }

/* ---------- competency bars ---------- */
.skill{ margin-bottom:22px; }
.skill-top{ display:flex; justify-content:space-between; margin-bottom:8px; font-size:.92rem; color:var(--text-hi); font-weight:600; }
.skill-top span.num{ color:var(--gold-400); font-family:var(--font-display); }
.skill-track{ height:8px; border-radius:99px; background:rgba(255,255,255,0.06); overflow:hidden; }
.skill-fill{ height:100%; border-radius:99px; width:0; background:linear-gradient(90deg,var(--gold-600),var(--gold-400)); transition:width 1.1s cubic-bezier(.16,1,.3,1); }

/* ---------- quote / endorsement ---------- */
.quote-card{ background:var(--card-bg); border:1px solid var(--line-soft); border-left:3px solid var(--gold-500); border-radius:var(--radius-md); padding:28px 30px; }
.quote-card p{ font-family:var(--font-display); font-size:1.08rem; font-style:italic; color:var(--text-hi); }
.quote-by{ font-size:.85rem; color:var(--text-muted); font-weight:600; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line-soft); }
.faq-item summary{
  list-style:none; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:22px 0; font-family:var(--font-display); font-size:1.08rem; color:var(--text-hi); font-weight:700;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; color:var(--gold-400); font-size:1.4rem; font-weight:400; transition:transform .25s ease; flex-shrink:0; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ padding-bottom:22px; color:var(--text-body); max-width:70ch; }

/* ---------- video embeds ---------- */
.video-embed{ position:relative; padding-top:56.25%; height:0; overflow:hidden; border-radius:var(--radius-md); background:var(--navy-950); border:1px solid var(--line-soft); }
.video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-card{ background:var(--card-bg); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:18px; transition:transform .3s ease, border-color .3s ease; }
.video-card:hover{ transform:translateY(-4px); border-color:var(--line); }
.video-card h3{ margin:16px 0 4px; font-size:1.05rem; }

.video-embed-lite{ cursor:pointer; }
.video-embed-lite img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(0.72); transition:filter .25s ease; }
.video-embed-lite:hover img{ filter:brightness(0.55); }
.video-play-btn{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:64px; height:64px; border-radius:50%;
  background:rgba(10,22,40,0.85); border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  transition:transform .25s ease, background .25s ease; box-shadow:0 12px 30px -10px rgba(0,0,0,0.6);
}
.video-play-btn svg{ width:24px; height:24px; fill:var(--gold-400); margin-left:3px; }
.video-embed-lite:hover .video-play-btn{ transform:translate(-50%,-50%) scale(1.08); background:var(--gold-500); }
.video-embed-lite:hover .video-play-btn svg{ fill:var(--navy-950); }

/* ---------- geography map ---------- */
.geo-map-wrap{
  background:var(--card-bg); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:20px;
}
.geo-map{ width:100%; height:420px; }
.geo-map .jvm-tooltip{
  background:var(--navy-950); border:1px solid var(--gold-500); color:var(--gold-300);
  font-family:var(--font-body); font-size:.82rem; padding:7px 12px; border-radius:8px; box-shadow:var(--shadow-md);
}
.geo-legend{ display:flex; flex-wrap:wrap; gap:22px; justify-content:center; margin-top:20px; }
.geo-legend-item{ display:flex; align-items:center; gap:9px; font-size:.86rem; color:var(--text-body); }
.geo-legend-dot{ width:13px; height:13px; border-radius:4px; flex-shrink:0; }
@media (max-width:640px){ .geo-map{ height:300px; } }

/* ---------- award badge ---------- */
.award-card{
  display:flex; align-items:center; gap:20px; background:linear-gradient(135deg, rgba(201,162,39,0.10), rgba(201,162,39,0.02));
  border:1px solid var(--line); border-radius:var(--radius-md); padding:26px 28px; flex-wrap:wrap;
}
.award-medal{
  width:58px; height:58px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg,var(--gold-400),var(--gold-600)); color:var(--navy-950); font-size:1.6rem; box-shadow:0 10px 24px -10px rgba(201,162,39,0.6);
}

/* ---------- footer ---------- */
.site-footer{ border-top:1px solid var(--line-soft); padding:56px 0 32px; background:var(--navy-950); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-grid h4{ font-family:var(--font-body); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
.footer-grid a{ display:block; padding:6px 0; color:var(--text-body); font-size:.92rem; }
.footer-grid a:hover{ color:var(--gold-400); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:24px; border-top:1px solid var(--line-soft); font-size:.82rem; color:var(--text-faint); }
.social-row{ display:flex; gap:10px; align-items:center; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line-soft); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ border-color:var(--line); color:var(--gold-400); }

.li-badge{
  width:40px; height:40px; border-radius:10px; background:#0A66C2; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 18px -8px rgba(10,102,194,0.65); transition:transform .22s ease, box-shadow .22s ease, filter .22s ease; flex-shrink:0;
}
.li-badge svg{ width:20px; height:20px; fill:#fff; }
.li-badge:hover{ transform:translateY(-2px); box-shadow:0 12px 24px -8px rgba(10,102,194,0.8); filter:brightness(1.08); }
.social-row .li-badge{ width:38px; height:38px; border-radius:9px; }
.social-row .li-badge svg{ width:18px; height:18px; }
.btn-linkedin{ background:#0A66C2; color:#fff; border-color:#0A66C2; display:inline-flex; align-items:center; gap:10px; }
.btn-linkedin:hover{ background:#0958a8; border-color:#0958a8; }
.btn-linkedin svg{ width:18px; height:18px; fill:#fff; }

/* ---------- page hero (interior pages) ---------- */
.page-hero{ padding:150px 0 70px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.82rem; color:var(--text-muted); margin-bottom:20px; }
.breadcrumb a:hover{ color:var(--gold-400); }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- misc ---------- */
.divider{ height:1px; background:var(--line-soft); margin:64px 0; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.center-cta{ text-align:center; }
.mono-num{ font-family:var(--font-display); color:var(--gold-400); }
.text-muted{ color:var(--text-muted); }
.small{ font-size:.85rem; }
.back-top{ position:fixed; right:24px; bottom:24px; width:46px; height:46px; border-radius:50%; background:var(--navy-800); border:1px solid var(--line); color:var(--gold-400); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease; z-index:90; }
.back-top.show{ opacity:1; pointer-events:auto; }
.back-top:hover{ transform:translateY(-3px); }

/* ---------- responsive ---------- */
@media (max-width:980px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-tags{ justify-content:center; }
  .hero-portrait{ order:-1; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-2{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .two-col{ grid-template-columns:1fr; gap:36px; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); }

  .mobile-menu{
    position:fixed; inset:var(--nav-h) 0 0 0; background:rgba(8,15,30,0.98); backdrop-filter:blur(10px);
    transform:translateX(100%); transition:transform .35s ease; z-index:99; overflow-y:auto; padding:20px 24px 40px;
  }
  .mobile-menu.is-open{ transform:translateX(0); }
  .mobile-menu a{ display:block; padding:16px 4px; font-size:1.2rem; font-family:var(--font-display); border-bottom:1px solid var(--line-soft); color:var(--text-hi); }
  .mobile-menu .btn{ margin-top:24px; width:100%; }
}
@media (min-width:981px){ .mobile-menu{ display:none; } }

@media (max-width:640px){
  section{ padding:64px 0; }
  .hero{ padding:130px 0 60px; }
  .page-hero{ padding:120px 0 50px; }
  .grid-4, .grid-3{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .stat-strip{ grid-template-columns:1fr 1fr; }
}
