/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-height));
  padding-top: var(--navbar-height);
}

.hero__bg-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 120vw);
  height: min(640px, 80vw);
  background: radial-gradient(ellipse at center, rgba(26,111,212,.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-16) 0 var(--space-20);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-amber);
  display: block;
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__name {
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-text);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.22s both;
}

.hero__tagline {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  min-height: 4em;
}

.hero__tagline-line {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--color-text-muted);
  display: block;
  line-height: var(--leading-relaxed);
}
.hero__tagline-line:first-child {
  color: var(--color-text);
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.42s both;
}
.hero__tagline-line:last-child {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.56s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.72s both;
}

/* Wave decoration */
.hero__wave-wrapper {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero__wave-svg {
  width: 200%;
  height: 100%;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: var(--space-20) 0;
  border-top: 1px solid var(--color-border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 260px 1fr;
    gap: var(--space-16);
  }
}

.about__photo-wrapper {
  max-width: 260px;
  margin: 0 auto;
}
.about__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
}
/* Blue accent corner lines */
.about__photo-frame::before,
.about__photo-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.about__photo-frame::before {
  top: -1px; left: -1px;
  width: 36px; height: 36px;
  border-top: 2px solid var(--color-accent-blue);
  border-left: 2px solid var(--color-accent-blue);
  border-radius: var(--radius-lg) 0 0 0;
}
.about__photo-frame::after {
  bottom: -1px; right: -1px;
  width: 36px; height: 36px;
  border-bottom: 2px solid var(--color-accent-blue);
  border-right: 2px solid var(--color-accent-blue);
  border-radius: 0 0 var(--radius-lg) 0;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-align: center;
  padding: var(--space-6);
  gap: var(--space-2);
}
.about__photo-placeholder svg {
  width: 40px; height: 40px;
  opacity: 0.4;
  margin: 0 auto;
}

.about__bio p {
  margin-bottom: var(--space-4);
}
.about__languages-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  display: block;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.about__languages { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-bar__item {
  padding: var(--space-8) var(--space-4);
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition-base);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__item:nth-child(2) { border-right: none; }
@media (min-width: 640px) {
  .stats-bar__item:nth-child(2) { border-right: 1px solid var(--color-border); }
  .stats-bar__item:last-child   { border-right: none; }
}
.stats-bar__item:hover { background: var(--color-surface-2); }

/* ================================================================
   EXPERIENCE SNAPSHOT
   ================================================================ */
.experience-snapshot {
  padding: var(--space-20) 0;
}
.experience-snapshot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .experience-snapshot__grid { grid-template-columns: repeat(2, 1fr); }
}

.snapshot-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}
.snapshot-card:hover {
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-md);
}
.snapshot-card__bar {
  width: 3px;
  flex-shrink: 0;
  background: var(--color-accent-blue);
  border-radius: var(--radius-full);
  align-self: stretch;
  min-height: 44px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.snapshot-card:hover .snapshot-card__bar { opacity: 1; }
.snapshot-card__role {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 3px;
}
.snapshot-card__org {
  font-size: var(--text-sm);
  color: var(--color-accent-blue);
  margin-bottom: 3px;
}
.snapshot-card__dates {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-dim);
}
