/* Lenis smooth scroll base styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --color-bg:       #FAFAFA;
  --color-bg-alt:   #F3F3F1;
  --color-surface:  #FFFFFF;
  --color-dark:     #1A1A1A;
  --color-text:     #1A1A1A;
  --color-text-mid: #555;
  --color-text-soft:#888;
  --color-border:   #E0E0E0;
  --color-border-lt:#ECECEC;

  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --side-padding: clamp(3rem, 6vw, 6rem);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
  --transition-fast: 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--color-dark); color: #fff; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition-fast); }
a:hover { opacity: 0.7; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════════════
   STACKING SECTIONS – card stack scroll effect
   ═══════════════════════════════════════════════════════════════════ */
.stack-section {
  position: relative;
  will-change: transform;
}
.stack-section:not(.hero) {
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.06);
}
/* Ascending z-index: later sections stack on top */
.hero.stack-section           { z-index: 1; }
.about.stack-section          { z-index: 2; }
.competencies.stack-section   { z-index: 3; }
.career.stack-section         { z-index: 4; }
.cta-banner-section.stack-section { z-index: 5; }
.education.stack-section      { z-index: 6; }
.vision.stack-section         { z-index: 7; }
.contact.stack-section        { z-index: 8; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   NAV – logo + links LEFT, CTA RIGHT (like reference)
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--scrolled {
  padding: 0.6rem 0;
}
.nav__inner {
  margin: 0 auto;
  padding: 0.2rem var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.3s ease;
}
.nav--scrolled .nav__inner {
  max-width: 680px;
  padding: 0.35rem 1.5rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
.nav__left {
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--scrolled .nav__left {
  gap: 1.5rem;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  transition: font-size 0.4s ease;
  white-space: nowrap;
}
.nav__logo span { color: var(--color-text-soft); }
.nav__logo:hover { opacity: 1; }
.nav--scrolled .nav__logo {
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: gap 0.4s ease;
}
.nav--scrolled .nav__links {
  gap: 1.4rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-mid);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: font-size 0.4s ease;
}
.nav--scrolled .nav__links a {
  font-size: 0.78rem;
}
.nav__links a:hover { opacity: 1; color: var(--color-text); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--color-dark);
  border-radius: 50px;
  color: var(--color-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.nav--scrolled .nav__cta {
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  border-width: 1px;
}
.nav__cta:hover {
  background: var(--color-dark);
  color: #fff;
  opacity: 1;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--color-dark);
  transition: all var(--transition-fast);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════════════
   HERO – reference-style: floating sidebar text, content, overlapping image
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

/* ── Film Grain Overlay ── */
.hero__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 0.5s steps(8) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  12% { transform: translate(-5%, -10%); }
  25% { transform: translate(7%, 5%); }
  37% { transform: translate(-3%, 12%); }
  50% { transform: translate(10%, -5%); }
  62% { transform: translate(-8%, 8%); }
  75% { transform: translate(5%, -12%); }
  87% { transform: translate(-10%, 3%); }
}

/* ── Floating vertical text (left edge) – no bar/border ── */
.hero__sidebar {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  z-index: 3;
}
.hero__sidebar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  white-space: nowrap;
}

/* ── Year – floating bottom-left ── */
.hero__year {
  position: absolute;
  bottom: 2.5rem;
  left: 1.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 3;
}

/* ── Main content area – pushed more toward center ── */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 7rem 0 2.5rem;
  padding-left: var(--side-padding);
  position: relative;
  z-index: 2;
  max-width: 55%;
}

/* Stats row – bigger, bolder like reference +200 / +50 */
.hero__stats {
  display: flex;
  gap: 5rem;
  margin-bottom: 4rem;
}
.hero__stat-block {
  position: relative;
  display: flex;
  align-items: baseline;
}
.hero__stat-prefix {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-text-mid);
  margin-right: 1px;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-dark);
}
.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  white-space: nowrap;
}

/* MASSIVE greeting title – like the "Hello" in reference */
.hero__title {
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

/* Subtitle */
.hero__subtitle {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-mid);
  max-width: 420px;
  margin-bottom: 1.2rem;
}

/* Focus tagline */
.hero__focus {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.02em;
  max-width: 420px;
  margin-bottom: 0;
  opacity: 0.75;
}

/* Scroll down indicator */
.hero__scroll {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-mid);
  letter-spacing: 0.02em;
}
.hero__scroll-arrow {
  font-size: 1.1rem;
  animation: bounceArrow 2s ease-in-out infinite;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Image – positioned on the right, overlapping like reference ── */
.hero__image {
  position: absolute;
  top: 0;
  right: var(--side-padding);
  width: 40%;
  height: 100%;
  z-index: 1;
  background: url('../img/portrait-flat.png') center 20% / cover no-repeat;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT – bento grid (polished, stylish, no portraits)
   ═══════════════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: linear-gradient(to bottom, #f0f0ee 0%, var(--color-bg) 100%);
  position: relative;
}
.about .container { max-width: 1100px; }
.about__bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 1.25rem;
}

/* Shared cell styles */
.about__cell {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}

/* Label chip */
.about__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: #f0f0ee;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

/* Cell 1: Title + text (left, spans both rows) */
.about__cell--text {
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.75rem;
  padding-top: 2.5rem;
}
.about__title {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.about__cell--text > p {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.about__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  width: fit-content;
  margin-top: auto;
}
.about__cta-link:hover {
  background: #333;
  transform: translateX(3px);
}

/* Cell 2: Icon + stat */
.about__cell--stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
}
.about__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__stat-icon svg { width: 22px; height: 22px; }
.about__stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__stat-label {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.about__deco-circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  pointer-events: none;
}

/* Cell 3: Dark card (10+ years) */
.about__cell--dark {
  background: var(--color-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.about__cell--dark:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.about__deco-grid {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  width: 60px;
  height: 60px;
  pointer-events: none;
  opacity: 0.7;
}
.about__dark-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about__dark-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.about__dark-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.3s ease, color 0.3s ease;
}
.about__cell--dark:hover .about__dark-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Cell 4: Key strengths */
.about__cell--strengths {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.about__strengths-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.25rem;
}
.about__bullet {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about__bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__bullet p {
  font-size: 0.85rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}

/* Cell 5: Countries stat */
.about__cell--countries {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
.about__deco-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.about__countries-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__countries-label {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  line-height: 1.4;
}

/* Cell 6: Quote */
.about__cell--quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(135deg, #fff 0%, #f8f8f6 100%);
}
.about__quote-mark {
  width: 36px;
  height: 36px;
  color: rgba(0,0,0,0.12);
}
.about__cell--quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-mid);
  line-height: 1.75;
  font-weight: 400;
}

/* Cell 7: Tech focus tags */
.about__cell--tech {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.about__tech-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-mid);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  transition: all 0.25s ease;
}
.about__tag:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

/* Cell 8: Availability status */
.about__cell--status {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(135deg, #fff 0%, #f8f8f6 100%);
  padding: 1.5rem 2.25rem;
}
.about__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 8px rgba(52,199,89,0.4);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(52,199,89,0.4); }
  50% { box-shadow: 0 0 16px rgba(52,199,89,0.6); }
}
.about__status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
}
.about__status-location {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  letter-spacing: 0.03em;
  margin-left: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   MARQUEE – scrolling keyword strip
   ═══════════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  background: var(--color-bg);
}
.marquee__track {
  display: flex;
  width: max-content;
}
.marquee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  padding-right: 2rem;
}
.marquee__content span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-mid);
}
.marquee__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-text-soft);
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPETENCIES – icon cards with GSAP animations
   ═══════════════════════════════════════════════════════════════════ */
.competencies {
  padding: 7rem 0;
  background: var(--color-bg);
}
.competencies__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.competencies__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: #f0f0ee;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.competencies__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}
.competencies__intro {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.competencies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card base */
.competency-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
}

/* Icon */
.competency-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease, background 0.4s ease;
}
.competency-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}
.competency-card:hover .competency-card__icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

/* Number */
.competency-card__number {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-soft);
  margin-bottom: 0.6rem;
  display: block;
}

/* Title */
.competency-card__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.competency-card:hover .competency-card__title {
  color: var(--color-dark);
}

/* List */
.competency-card__list {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
}
.competency-card__list li {
  font-size: 0.8rem;
  color: var(--color-text-mid);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.competency-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-soft);
}

/* Arrow accent */
.competency-card__arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-soft);
  transition: all 0.35s ease;
}
.competency-card:hover .competency-card__arrow {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
  transform: translate(2px, -2px);
}

/* Quote below grid */
.competencies__quote-wrap {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.competencies__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-mid);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   CAREER – polished table rows
   ═══════════════════════════════════════════════════════════════════ */
.career {
  padding: 7rem 0;
  background: var(--color-bg);
}
.career__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.career__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: #f0f0ee;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.career__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.career__intro {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  max-width: 340px;
  text-align: right;
  line-height: 1.7;
}

.career__table {
  border-top: 2px solid var(--color-dark);
}
.career__row {
  display: grid;
  grid-template-columns: 40px 1.2fr 2fr 1fr 1fr 40px;
  gap: 1rem;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}
.career__row:hover {
  background: rgba(0,0,0,0.02);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
}

/* Header row */
.career__row--header {
  cursor: default;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
.career__row--header:hover {
  background: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0;
}
.career__row--header span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

/* Index number */
.career__index {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-soft);
}

/* Company */
.career__company {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.career__row:hover .career__company {
  color: var(--color-dark);
}

/* Role */
.career__role {
  font-size: 0.85rem;
  color: var(--color-text-mid);
}

/* Location with icon */
.career__location {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.career__loc-icon {
  width: 13px;
  height: 13px;
  opacity: 0.5;
}

/* Date */
.career__date {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Toggle chevron */
.career__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.career__toggle svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-soft);
  transition: transform 0.4s ease, color 0.3s ease;
}
.career__row:hover .career__toggle svg {
  color: var(--color-dark);
}
.career__row.active .career__toggle svg {
  transform: rotate(180deg);
  color: var(--color-dark);
}

/* Expand panel */
.career__expand {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 0 0 calc(40px + 1rem);
}
.career__row.active .career__expand {
  max-height: 300px;
  padding: 1rem 0 0.5rem calc(40px + 1rem);
}
.career__expand ul { padding-left: 0; }
.career__expand li {
  font-size: 0.82rem;
  color: var(--color-text-mid);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.65;
}
.career__expand li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-soft);
}

/* ═══════════════════════════════════════════════════════════════════
   DARK CTA BANNER – contained, gradient grid
   ═══════════════════════════════════════════════════════════════════ */
.cta-banner-section {
  padding: 3rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 40% 50% at 50% 60%, rgba(20,60,80,0.12) 0%, transparent 70%),
    #111;
  position: relative;
  overflow: hidden;
}
/* Nebula blob – top-left (deep blue) */
.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,60,130,0.25) 0%, rgba(30,60,130,0.08) 40%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
/* Nebula blob – bottom-right (violet) */
.cta-banner-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90,40,120,0.2) 0%, rgba(90,40,120,0.06) 40%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
/* Circuit board canvas */
.circuit-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-banner-section > .container { width: 100%; position: relative; z-index: 1; }
.cta-banner {
  background: transparent;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.cta-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Label */
.cta-banner__label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.cta-banner__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
/* Subtitle */
.cta-banner__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.cta-banner__btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cta-banner__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.cta-banner__btn:hover {
  color: var(--color-dark);
  border-color: #fff;
}
.cta-banner__btn:hover::before {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════════════
   EDUCATION – vertical timeline
   ═══════════════════════════════════════════════════════════════════ */
.education {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.education__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}
.education__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: rgba(0,0,0,0.05);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.education__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}
.education__intro {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

/* Timeline container */
.edu-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Center line */
.edu-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.12) 10%, rgba(0,0,0,0.12) 90%, transparent);
  transform: translateX(-50%);
}

/* Entry */
.edu-timeline__entry {
  position: relative;
  width: 50%;
  padding: 0 0 2.5rem;
}
.edu-timeline__entry--left {
  padding-right: 3.5rem;
  text-align: right;
}
.edu-timeline__entry--right {
  margin-left: 50%;
  padding-left: 3.5rem;
  text-align: left;
}

/* Dot on center line */
.edu-timeline__dot {
  position: absolute;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1;
}
.edu-timeline__entry--left .edu-timeline__dot {
  right: -6px;
}
.edu-timeline__entry--right .edu-timeline__dot {
  left: -6px;
}
.edu-timeline__entry:hover .edu-timeline__dot {
  background: var(--color-dark);
  border-color: var(--color-dark);
  transform: scale(1.3);
}

/* Content */
.edu-timeline__content {
  transition: transform 0.3s ease;
}
.edu-timeline__entry:hover .edu-timeline__content {
  transform: translateY(-2px);
}

/* Badge */
.edu-timeline__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: rgba(0,0,0,0.05);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}

/* Year */
.edu-timeline__year {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-soft);
  margin-bottom: 0.35rem;
}

/* Title */
.edu-timeline__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

/* Description */
.edu-timeline__desc {
  font-size: 0.82rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   VISION – dark glassmorphism
   ═══════════════════════════════════════════════════════════════════ */
.vision {
  padding: 7rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #111;
  position: relative;
  overflow: hidden;
}
.vision > .container { width: 100%; }
/* Realistic single light beam – bright at origin, fades out */
.vision::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 180%;
  background: linear-gradient(
    130deg,
    transparent 25%,
    rgba(255,255,255,0.18) 34%,
    rgba(255,255,255,0.10) 40%,
    rgba(255,255,255,0.04) 48%,
    transparent 56%
  );
  filter: blur(60px);
  pointer-events: none;
}
/* Glow at beam origin (top-left) */
.vision::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -2%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
}
.vision__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.vision__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.vision__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.vision__intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
  text-align: right;
  line-height: 1.7;
}

.vision__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Glass card */
.vision__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 32px rgba(0,0,0,0.2);
}
/* Top edge highlight – glass reflection */
.vision__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.25) 50%, transparent 90%);
}
/* Inner glass sheen */
.vision__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.vision__card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px rgba(0,0,0,0.35);
}

/* Icon */
.vision__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}
.vision__card-icon svg {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.vision__card:hover .vision__card-icon {
  background: rgba(255,255,255,0.12);
}
.vision__card:hover .vision__card-icon svg {
  color: #fff;
}

/* Number */
.vision__card-number {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
  display: block;
}

/* Title */
.vision__card-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

/* Text */
.vision__card-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT – split layout
   ═══════════════════════════════════════════════════════════════════ */
.contact {
  padding: 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f7f7f5 0%, #edecea 40%, #f0f0ee 100%);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact > .container { width: 100%; }
.contact__split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.contact__left {
  flex: 1;
  max-width: 500px;
}
.contact__right {
  flex: 1;
  max-width: 460px;
  padding-top: 0.5rem;
}
.contact__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: rgba(0,0,0,0.04);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.contact__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--color-text-mid);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
a.contact__detail:hover {
  color: var(--color-dark);
  padding-left: 0.3rem;
}
.contact__detail-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--color-text-soft);
  flex-shrink: 0;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}
a.contact__detail:hover .contact__detail-icon {
  color: #fff;
  background: var(--color-dark);
}
.contact__sub {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact__btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--color-dark);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.contact__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.contact__btn:hover::after {
  left: 100%;
}
.contact__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* Meta row */
.contact__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 2.5rem;
}
.contact__divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-soft);
  opacity: 0.4;
}
.contact__note {
  font-size: 0.78rem;
  color: var(--color-text-mid);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.01em;
}
.contact__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c759;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  z-index: 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
}
.footer__logo span { color: var(--color-text-soft); }
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}
.footer__links a:hover { color: var(--color-dark); opacity: 1; }
.footer__copy {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .competencies__grid { grid-template-columns: repeat(2, 1fr); }
  .career__row { grid-template-columns: 1.2fr 2fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__left { gap: 2rem; }
  .nav__links { display: none; }
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(250,250,250,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__links.active li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-lt);
  }
  .nav__links.active li:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: auto; }
  .hero__sidebar { display: none; }
  .hero__year { display: none; }
  .hero__content {
    max-width: 100%;
    min-height: 70vh;
    padding: 7rem 2rem 3rem;
  }
  .hero__title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero__stats { gap: 2rem; }
  .hero__stat-number { font-size: 2.2rem; }
  .hero__image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 50vh;
  }

  .about, .competencies, .career, .education, .vision { padding: 5rem 0; }

  .about__header { flex-direction: column; }
  .about__highlight { text-align: left; }
  .about__grid { grid-template-columns: 1fr; }

  .competencies__grid { grid-template-columns: 1fr; }

  .career__header { flex-direction: column; align-items: flex-start; }
  .career__intro { text-align: left; max-width: 100%; }
  .career__row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .career__row--header { display: none; }
  .career__location { display: none; }
  .career__date { text-align: left; }

  .education__grid { grid-template-columns: 1fr; }
  .vision__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 2rem; }
  .hero__stat-label { position: static; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════ */
@media print {
  .nav, .marquee, .cta-banner, .contact, .footer { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  .about, .competencies, .career, .education, .vision { padding: 1.5rem 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { font-size: 11pt; }
}

