:root {
  --navy: #0F1B3C;
  --navy-light: #1B2A5B;
  --orange: #FF6A3D;
  --orange-dark: #E5502A;
  --teal: #06B6A4;
  --teal-light: #CFFAF3;
  --cream: #FFF8F0;
  --text: #1F2430;
  --text-soft: #5B6272;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 27, 60, 0.10);
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NAV */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 27, 60, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--orange);
  top: -150px;
  left: -120px;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: var(--teal);
  bottom: -160px;
  right: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 106, 61, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 106, 61, 0.45); }

.btn-ghost {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.hero-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

/* SECTIONS */
.section { padding: 90px 24px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-alt { background: var(--white); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: rgba(255, 106, 61, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 28px;
}

.about-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 760px;
  margin-bottom: 44px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* EXPERTISE CHIPS */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.chip:nth-child(3n+1) { background: var(--orange); }
.chip:nth-child(3n+2) { background: var(--teal); color: var(--navy); }

/* EXPERIENCE */
.company-block {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px clamp(20px, 4vw, 40px);
  margin-bottom: 28px;
  border-left: 6px solid var(--orange);
}

.company-block:nth-child(2) { border-left-color: var(--teal); }
.company-block:nth-child(3) { border-left-color: var(--navy); }

.company-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.company-head h3 { font-size: 1.4rem; }

.company-range {
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 0.9rem;
}

.company-desc {
  color: var(--text-soft);
  font-style: italic;
  font-size: 0.92rem;
  margin: 6px 0 26px;
}

.role { margin-bottom: 26px; padding-top: 18px; border-top: 1px dashed rgba(15,27,60,0.12); }
.role:first-of-type { border-top: none; padding-top: 0; }

.role-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.role-head h4 { font-size: 1.08rem; }

.role-range {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.role ul { margin-left: 4px; }

.role li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.role li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.achieve-label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin: 14px 0 8px;
}

.achieve-list li::before { background: var(--teal); }

/* EDUCATION */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.edu-card {
  background: linear-gradient(135deg, rgba(255,106,61,0.08), rgba(6,182,164,0.08));
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(15,27,60,0.06);
}

.edu-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.edu-card p { color: var(--text-soft); font-size: 0.92rem; }

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cert-badge {
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
}

/* CONTACT */
.contact-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: var(--teal-light);
}

.contact-section h2 { color: var(--white); }

.contact-lead {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
}

.contact-cards {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.contact-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.contact-icon { font-size: 1.2rem; }

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(15,27,60,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .company-head, .role-head { flex-direction: column; align-items: flex-start; }
}
