/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #0B0D18;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── TOKENS ─────────────────────────────────── */
:root {
  --blue:      #1B00FF;
  --blue-mid:  #4D5FFF;
  --blue-dim:  rgba(27,0,255,0.12);
  --blue-line: rgba(27,0,255,0.30);
  --nav-bg:    rgba(11,13,24,0.96);
  --card-bg:   rgba(13,15,28,0.90);
  --muted:     rgba(255,255,255,0.48);
  --faint:     rgba(255,255,255,0.06);
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 62px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  animation: navbarSlideDown 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes navbarSlideDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
.navbar__inner {
  max-width: 1280px;
  width: 100%; height: 100%;
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.navbar__logo:hover { opacity: 0.8; }
.logo-img { height: 36px; width: auto; flex-shrink: 0; mix-blend-mode: screen; display: block; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff; text-transform: uppercase;
  display: block;
}
.navbar__links { display: flex; align-items: center; gap: 36px; }
.navbar__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); position: relative;
  padding-bottom: 3px; transition: color 0.2s;
  white-space: nowrap;
}
.navbar__links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue-mid);
  transition: width 0.25s ease;
}
.navbar__links a:hover,
.navbar__links a.active { color: #fff; }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  background: var(--blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.navbar__cta svg { width:13px; height:13px; fill:#fff; flex-shrink:0; }
.navbar__cta:hover { background: #2B14FF; transform: translateY(-1px); }
.navbar__hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer; background: none; border: none; padding: 0;
}
.navbar__hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.navbar__mobile {
  display: none; position: fixed;
  top: 62px; left: 0; right: 0;
  background: #0B0D18;
  border-bottom: 1px solid var(--blue-line);
  padding: 24px 32px 32px;
  z-index: 998; flex-direction: column; gap: 20px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
  padding: 4px 0; border-bottom: 1px solid var(--faint);
}
.navbar__mobile a:hover { color: #fff; }
.navbar__mobile .m-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 2px; margin-top: 8px; width: fit-content;
}

/* ════════════════════════════════════════════
   SHARED SECTION HEADER
════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 10px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--blue-mid); opacity: 0.6;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 38px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: #fff; line-height: 1.05;
}
.section-title span { color: var(--blue-mid); }

/* ════════════════════════════════════════════
   HERO — ABOUT
════════════════════════════════════════════ */
.about-hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 40px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(27,0,255,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 80%, rgba(77,50,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 80% 75%, rgba(27,0,255,0.06) 0%, transparent 55%);
}
.hero-bg-line {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-line::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px
  );
}
.about-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  max-width: 900px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 22px;
  opacity: 0;
  animation: hFadeUp 0.6s 0.05s ease-out forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--blue-mid); opacity: 0.5;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.35; }
}
.hero-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 700; line-height: 0.90;
  letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 0;
  opacity: 0;
  animation: hFadeUp 0.7s 0.15s ease-out forwards;
}
.hero-name .first { color: #fff; display: block; }
.hero-name .last  { color: var(--blue-mid); display: block; }
.hero-roles {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 7px;
  margin-top: 28px; margin-bottom: 28px;
  opacity: 0;
  animation: hFadeUp 0.6s 0.25s ease-out forwards;
}
.hero-role-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-role-tag:hover {
  border-color: var(--blue-mid); color: #fff;
  background: rgba(77,95,255,0.08);
}
.hero-bio {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.45);
  max-width: 520px; margin: 0 auto 32px;
  opacity: 0;
  animation: hFadeUp 0.6s 0.35s ease-out forwards;
}
.hero-bio strong { color: rgba(255,255,255,0.80); font-weight: 500; }
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  opacity: 0;
  animation: hFadeUp 0.6s 0.45s ease-out forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: var(--blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.45s ease;
}
.btn-primary:hover { background: #2B14FF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,0,255,0.38); }
.btn-primary:hover::before { left: 130%; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: transparent; color: rgba(255,255,255,0.50);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.28); color: #fff;
  background: rgba(255,255,255,0.04);
}
.hero-avail {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 28px;
  padding: 8px 16px;
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.14);
  border-radius: 2px;
  opacity: 0;
  animation: hFadeUp 0.6s 0.55s ease-out forwards;
}
.avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: availPulse 2.5s ease-in-out infinite;
}
@keyframes availPulse {
  0%,100% { box-shadow: 0 0 6px rgba(74,222,128,0.5); }
  50%      { box-shadow: 0 0 14px rgba(74,222,128,0.9); }
}
.avail-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(74,222,128,0.75);
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: hFadeUp 0.6s 0.9s ease-out forwards;
}
.scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(77,95,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════════ */
.stats-section {
  padding: 0;
  position: relative;
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(77,95,255,0.18);
  border-bottom: 1px solid rgba(77,95,255,0.18);
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(27,0,255,0.08) 0%, transparent 30%, transparent 70%, rgba(27,0,255,0.08) 100%);
}
/* Hidden — too cluttered, we let numbers speak */
.stats-section-label { display: none; }
.stats-inner {
  max-width: 100%; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: row; gap: 14px;
  align-items: center; justify-content: center;
  position: relative; text-align: left;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.stat-item.in-view { opacity: 1; transform: none; }
.stat-item:first-child { padding-left: 28px; }
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--blue-mid), transparent);
  transition: height 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.stat-item.in-view::before { height: 60%; }
.stat-item::after { display: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
  color: #fff; letter-spacing: -0.01em; flex-shrink: 0;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-mid); line-height: 1.2;
}
.stat-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.28); margin-top: 1px;
}

/* ════════════════════════════════════════════
   STORY SECTION — Timeline
════════════════════════════════════════════ */
.story {
  padding: 90px 40px 80px;
  border-bottom: 1px solid var(--faint);
  position: relative; overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  width: 700px; height: 300px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(27,0,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.story-inner { max-width: 1200px; margin: 0 auto; }
.story-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.story-left { display: flex; flex-direction: column; gap: 0; }
.story-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.story-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--blue-mid); opacity: 0.6;
}
.story-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 44px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.05; color: #fff; margin-bottom: 0;
}
.story-heading span { color: var(--blue-mid); }
.story-right { display: none; }

/* ── TIMELINE — 5 dots, 4 content blocks ─────────────────────────── */
/*
  Structure:
    .timeline
      .tl-track-row          ← full-width row: line + 5 dots
        .tl-dot (×5)
      .tl-content-row        ← 4 content blocks, each centered between two dots
        .tl-block (×4)
*/
.timeline {
  position: relative;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1) 0.05s,
              transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.05s;
}
.timeline.in-view { opacity: 1; transform: none; }

/* ── Track row ── */
.tl-track-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
/* The line — full width, sits behind dots */
.tl-track-row::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(77,95,255,0.85) 0%,
    rgba(77,95,255,0.60) 40%,
    rgba(77,95,255,0.35) 75%,
    rgba(77,95,255,0.15) 100%
  );
  z-index: 0;
}
/* Glow strip */
.tl-track-row::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 8px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(77,95,255,0.20) 0%,
    rgba(77,95,255,0.08) 60%,
    transparent 100%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

/* ── Each dot ── */
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #0B0D18;
  border: 2px solid var(--blue-mid);
  box-shadow:
    0 0 0 4px rgba(77,95,255,0.10),
    0 0 12px rgba(77,95,255,0.65),
    0 0 28px rgba(77,95,255,0.22);
  flex-shrink: 0;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease, background 0.25s ease;
  cursor: default;
}
/* Inner glow core — centered via flexbox, no absolute positioning */
.tl-dot::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.35s;
}
.tl-dot:hover {
  transform: scale(1.55);
  background: rgba(27,0,255,0.30);
  border-color: #fff;
  box-shadow:
    0 0 0 5px rgba(77,95,255,0.15),
    0 0 22px rgba(77,95,255,1),
    0 0 50px rgba(77,95,255,0.45);
}
/* Counter-scale inner dot so it stays the same visual size as parent grows */
.tl-dot:hover::after { opacity: 1; transform: scale(calc(1 / 1.55)); }

/* ── Content row — 4 blocks ── */
.tl-content-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}
.tl-block {
  padding-right: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1) var(--tb-delay, 0s),
              transform 0.6s cubic-bezier(0.22,1,0.36,1) var(--tb-delay, 0s);
}
.tl-block:last-child { padding-right: 0; }
.tl-block:nth-child(1) { --tb-delay: 0.10s; }
.tl-block:nth-child(2) { --tb-delay: 0.22s; }
.tl-block:nth-child(3) { --tb-delay: 0.34s; }
.tl-block:nth-child(4) { --tb-delay: 0.46s; }
.timeline.in-view .tl-block { opacity: 1; transform: none; }

/* Year badge */
.tl-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  background: rgba(27,0,255,0.10);
  border: 1px solid rgba(77,95,255,0.25);
  border-radius: 20px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.tl-block:hover .tl-year {
  background: rgba(27,0,255,0.20);
  border-color: rgba(77,95,255,0.55);
  color: #fff;
}
.tl-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; margin-bottom: 9px;
  transition: color 0.2s;
}
.tl-block:hover .tl-title { color: var(--blue-mid); }
.tl-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.68; color: rgba(255,255,255,0.40);
  transition: color 0.25s;
}
.tl-block:hover .tl-desc { color: rgba(255,255,255,0.60); }

/* ── Legacy classes (keep for JS compatibility) ── */
.timeline-item, .timeline-left, .timeline-dot,
.timeline-line, .timeline-content,
.timeline-year, .timeline-title, .timeline-desc { display: none; }

/* Year badge */
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  background: rgba(27,0,255,0.10);
  border: 1px solid rgba(77,95,255,0.25);
  border-radius: 20px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.timeline-item:hover .timeline-year {
  background: rgba(27,0,255,0.20);
  border-color: rgba(77,95,255,0.55);
  color: #fff;
}

.timeline-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; margin-bottom: 9px;
  transition: color 0.2s;
}
.timeline-item:hover .timeline-title { color: var(--blue-mid); }

.timeline-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.68; color: rgba(255,255,255,0.40);
  max-width: 220px;
  transition: color 0.25s;
}
.timeline-item:hover .timeline-desc { color: rgba(255,255,255,0.60); }
.story-para, .story-quote { display: none; }

/* ════════════════════════════════════════════
   SKILLS SECTION
════════════════════════════════════════════ */
.skills {
  padding: 100px 40px;
  border-bottom: 1px solid var(--faint);
  position: relative; overflow: hidden;
}
.skills::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  right: -150px; bottom: -150px;
  background: radial-gradient(circle, rgba(27,0,255,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.skills-inner { max-width: 1100px; margin: 0 auto; }
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-bottom: 60px;
}
.skill-category { display: flex; flex-direction: column; gap: 0; }
.skill-cat-title {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding-bottom: 16px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.skill-bar-item {
  display: flex; flex-direction: column; gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0; transform: translateX(-18px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1) var(--sb-delay, 0s),
              transform 0.65s cubic-bezier(0.22,1,0.36,1) var(--sb-delay, 0s);
}
.reveal--right .skill-bar-item { transform: translateX(18px); }
.skill-bar-item.in-view { opacity: 1; transform: none; }
/* Stagger via nth-child inside parent */
.skill-bar-item:nth-child(2) { --sb-delay: 0.10s; }
.skill-bar-item:nth-child(3) { --sb-delay: 0.20s; }
.skill-bar-item:nth-child(4) { --sb-delay: 0.30s; }
.skill-bar-item:nth-child(5) { --sb-delay: 0.40s; }

.skill-bar-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.skill-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; line-height: 1.1;
}
.skill-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 4px; margin-bottom: 12px;
}
.skill-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; flex-shrink: 0;
  padding: 0; border-radius: 0;
  border: none; background: transparent; display: inline-block;
}
.skill-pct.c-red    { color: #FF4C4C; }
.skill-pct.c-orange { color: #FF8C00; }
.skill-pct.c-blue   { color: #4D5FFF; }
.skill-pct.c-pink   { color: #FF61D9; }
.skill-pct.c-teal   { color: #00D2A0; }
.skill-pct.c-green  { color: #22EE7A; }
.skill-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 0; overflow: visible; position: relative;
}
.skill-fill {
  height: 100%; border-radius: 0; position: relative;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.skill-fill.animate { transform: scaleX(1); }
.skill-fill.c-red    { background: linear-gradient(90deg,#CC0000,#FF4C4C); box-shadow: 0 0 8px rgba(255,76,76,0.6); }
.skill-fill.c-orange { background: linear-gradient(90deg,#C45C00,#FF8C00); box-shadow: 0 0 8px rgba(255,140,0,0.6); }
.skill-fill.c-blue   { background: linear-gradient(90deg,#1B00FF,#4D5FFF); box-shadow: 0 0 8px rgba(77,95,255,0.8); }
.skill-fill.c-pink   { background: linear-gradient(90deg,#CC00A8,#FF61D9); box-shadow: 0 0 8px rgba(255,97,217,0.6); }
.skill-fill.c-teal   { background: linear-gradient(90deg,#007A5E,#00D2A0); box-shadow: 0 0 8px rgba(0,210,160,0.7); }
.skill-fill.c-green  { background: linear-gradient(90deg,#008A40,#22EE7A); box-shadow: 0 0 8px rgba(34,238,122,0.6); }

.tools-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center; margin-bottom: 24px;
}
.tools-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.tool-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: rgba(13,15,28,0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  opacity: 0; transform: translateY(10px);
  animation: none;
}
.tool-pill.in-view {
  opacity: 1; transform: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s,
              transform 0.45s cubic-bezier(0.22,1,0.36,1) var(--pill-delay, 0s),
              opacity 0.45s ease var(--pill-delay, 0s);
}
.tool-pill:hover {
  border-color: rgba(77,95,255,0.40); color: #fff;
  background: rgba(77,95,255,0.08); transform: translateY(-2px);
}
.tool-pill .tool-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-mid); opacity: 0.6; flex-shrink: 0;
}

/* ════════════════════════════════════════════
   RESUME SECTION — Image-matched design
════════════════════════════════════════════ */
.resume-section {
  padding: 100px 40px;
  border-bottom: 1px solid var(--faint);
  position: relative; overflow: hidden;
  background: #080912;
}
.resume-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(27,0,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 100%, rgba(27,0,255,0.06) 0%, transparent 55%);
}
.resume-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

/* The big outer card — dark navy with cyan border, like the image */
.resume-panel {
  background: rgba(4, 8, 30, 0.97);
  border: 1.5px solid rgba(38, 210, 255, 0.55);
  border-radius: 28px;
  padding: 40px 44px 44px;
  box-shadow:
    0 0 0 1px rgba(0,180,255,0.06),
    0 40px 100px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(38,210,255,0.10);
  display: block;
}

/* Pill nav bar — matches image exactly */
.resume-panel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(8, 18, 60, 0.90);
  border: 1.5px solid rgba(38, 210, 255, 0.55);
  border-radius: 999px;
  padding: 7px 10px;
  width: fit-content;
  margin: 0 auto 44px;
  box-shadow: 0 0 30px rgba(38,200,255,0.08);
}

.resume-panel-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
  position: relative;
}
.resume-panel-chip:hover:not(.active) {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
/* Separator lines between chips — the "—" dash effect from the image */
.resume-panel-chip .chip-sep {
  display: inline-block;
  width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.30);
  vertical-align: middle;
  margin: 0 2px;
  flex-shrink: 0;
}
.resume-panel-chip .chip-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.resume-panel-chip.active {
  background: #0a0a14;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.09);
}
.resume-panel-chip.active .chip-num { color: rgba(255,255,255,0.85); }

.resume-panel-body { display: block; }
.resume-panel-section { display: none; }
.resume-panel-section.active { display: block; }

/* Content area divider line */
.resume-panel-section-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 36px;
  padding-bottom: 0;
  border-bottom: none;
}
.resume-panel-section-header span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.30em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.resume-panel-section-number { display: none; }

/* Skills / Tools grid */
.skills-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: rgba(255, 255, 255, 0.50);
  margin-bottom: 26px; max-width: 650px; line-height: 1.7;
}
.resume-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}
.resume-tool-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 20px 10px 16px;
  background: rgba(10, 15, 45, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.resume-tool-card:hover {
  background: rgba(15, 25, 70, 0.90);
  border-color: rgba(38, 210, 255, 0.40);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(38, 210, 255, 0.15), 0 0 24px rgba(38, 210, 255, 0.08);
}
.resume-tool-icon {
  width: 68px; height: 68px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.resume-tool-card:hover .resume-tool-icon { transform: scale(1.08); }
.resume-tool-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.resume-tool-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  text-align: center; line-height: 1.3;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.resume-tool-card:hover .resume-tool-name { color: #fff; }

/* Education entries */
.edu-grid { display: flex; flex-direction: column; gap: 0; }
.edu-entry {
  display: flex; align-items: flex-start;
  gap: 40px; padding: 36px 0;
  opacity: 1; transform: none;
  transition: opacity 0.6s ease var(--edu-delay,0s),
              transform 0.6s cubic-bezier(0.22,1,0.36,1) var(--edu-delay,0s);
  position: relative;
}
.edu-entry + .edu-entry { border-top: 1px solid rgba(38,210,255,0.12); }
/* Diagonal divider line between two education entries — like the image slash */
.edu-divider-slash {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(38,210,255,0.30), transparent);
  transform: rotate(6deg) translateX(-50%);
  display: none;
}
.edu-entry.in-view { opacity: 1; transform: none; }
.edu-left { flex: 1; min-width: 0; }
.edu-degree {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.06em;
  color: #fff; margin-bottom: 4px; text-transform: uppercase;
  grid-column: 1; grid-row: 1;
}
.edu-school {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #26d2ff; margin-bottom: 10px;
  grid-column: 1; grid-row: 2;
}
.edu-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.65; color: rgba(255,255,255,0.42); max-width: 100%;
  grid-column: 1; grid-row: 3;
}
.edu-year {
  display: inline-flex; align-items: center;
  padding: 5px 14px;
  background: rgba(8, 18, 60, 0.85);
  border: 1px solid rgba(38,210,255,0.18); border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.50); white-space: nowrap; flex-shrink: 0;
  align-self: flex-start;
  grid-column: 2; grid-row: 1;
}

/* Two-column education layout like the image */
.edu-grid-two {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.edu-col-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,210,255,0.18), transparent);
  position: relative;
}
.edu-col-divider::before { display: none; }
.edu-col {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 24px;
  padding: 28px 0;
  position: relative;
}
.edu-col::before {
  content: '';
  position: absolute; left: 0; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 2px;
  left: -1px;
}
.edu-col:hover::before { opacity: 0.6; }
.edu-col:first-child { padding-left: 0; }
.edu-col:last-child { padding-right: 0; }
.edu-divider { display: none; }

/* ════════════════════════════════════════════
   VALUES — Hub Diagram  (clean rebuild)
════════════════════════════════════════════ */
:root {
  --val-red:      #e5193a;
  --val-red-mid:  #ff3355;
  --val-red-glow: rgba(229,25,58,0.22);
}

.values {
  padding: 100px 40px 120px;
  border-bottom: 1px solid var(--faint);
  position: relative; overflow: hidden;
  background: #060810;
}
.values::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(229,25,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 10% 50%, rgba(180,10,40,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 90% 50%, rgba(229,25,58,0.04) 0%, transparent 55%);
}
.values-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Header ── */
.values-header { text-align: center; margin-bottom: 72px; }
.values-header-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--val-red-mid); margin-bottom: 12px;
}
.values-header-label::before, .values-header-label::after {
  content: ''; width: 28px; height: 1px; background: var(--val-red-mid); opacity: 0.45;
}
.values-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 40px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; color: #fff;
}
.values-header h2 span { color: var(--val-red-mid); }
.values-header p {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.30); margin-top: 10px;
}

/* ── Diagram row ── */
.values-diagram {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 0;
}

/* ── Card columns ── */
.values-col {
  display: flex; flex-direction: column;
  gap: 16px;
}
.values-col--left  { align-items: flex-end; }
.values-col--right { align-items: flex-start; }

/* ── Value node — fixed height, no layout shift on hover ── */
.vnode {
  position: relative;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.5s ease var(--vn-delay,0s),
              transform 0.5s cubic-bezier(0.22,1,0.36,1) var(--vn-delay,0s);
}
.values-col--right .vnode { transform: translateX(20px); }
.vnode.in-view { opacity: 1; transform: none; }

/* ── Card ── */
.vnode-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  width: 340px;
  background: rgba(10,11,24,0.95);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
/* Top shimmer line */
.vnode-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,25,58,0), transparent);
  transition: background 0.35s ease;
}
.vnode:hover .vnode-card {
  border-color: rgba(229,25,58,0.45);
  background: rgba(18,8,14,0.98);
  box-shadow: 0 0 0 1px rgba(229,25,58,0.08),
              0 8px 32px rgba(229,25,58,0.14),
              inset 0 0 40px rgba(229,25,58,0.03);
}
.vnode:hover .vnode-card::before {
  background: linear-gradient(90deg, transparent, rgba(229,25,58,0.6), transparent);
}

/* ── Icon ── */
.vnode-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,25,58,0.08);
  border: 1px solid rgba(229,25,58,0.22);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.vnode:hover .vnode-icon {
  background: rgba(229,25,58,0.18);
  border-color: rgba(229,25,58,0.55);
  box-shadow: 0 0 14px rgba(229,25,58,0.20);
}
.vnode-icon svg {
  width: 16px; height: 16px; fill: none;
  stroke: var(--val-red-mid); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── Text ── */
.vnode-text { flex: 1; min-width: 0; }
.vnode-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--val-red-mid); display: block; margin-bottom: 4px;
  opacity: 0.85;
}
.vnode-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; line-height: 1.2;
}

/* ── Plus button ── */
.vnode-btn {
  width: 26px; height: 26px; border-radius: 5px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  background: transparent;
}
.vnode-btn svg {
  width: 11px; height: 11px; fill: none;
  stroke: rgba(255,255,255,0.35); stroke-width: 2.5; stroke-linecap: round;
  transition: stroke 0.25s;
}
.vnode:hover .vnode-btn {
  border-color: var(--val-red);
  background: rgba(229,25,58,0.18);
  transform: rotate(45deg);
}
.vnode:hover .vnode-btn svg { stroke: #fff; }

/* ── Tooltip panel — overlay, no layout shift ── */
.vnode-tooltip {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  background: rgba(14,6,10,0.98);
  border: 1px solid rgba(229,25,58,0.30);
  border-radius: 10px;
  padding: 14px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(229,25,58,0.06);
}
/* Arrow */
.vnode-tooltip::before {
  content: '';
  position: absolute; top: -5px; left: 24px;
  width: 9px; height: 9px;
  background: rgba(14,6,10,0.98);
  border-left: 1px solid rgba(229,25,58,0.30);
  border-top: 1px solid rgba(229,25,58,0.30);
  transform: rotate(45deg);
}
.values-col--right .vnode-tooltip::before { left: auto; right: 24px; }
.vnode-tooltip p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 300; line-height: 1.70;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
.vnode:hover .vnode-tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Centre hub column ── */
.values-connectors {
  position: relative;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
#connectorSvg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}

/* ── Hub ── */
.values-hub {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px;
}
.values-hub-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(229,25,58,0.22);
  animation: vHubRing 4s ease-in-out infinite;
}
.values-hub-ring--1 { width: 64px;  height: 64px;  animation-delay: 0s; }
.values-hub-ring--2 { width: 84px;  height: 84px;  animation-delay: 0.6s; border-color: rgba(229,25,58,0.13); }
.values-hub-ring--3 { width: 108px; height: 108px; animation-delay: 1.2s; border-color: rgba(229,25,58,0.06); }
@keyframes vHubRing {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.04); }
}
.values-hub-core {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #200070, #07001a);
  border: 1.5px solid rgba(110,60,255,0.70);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 5;
  box-shadow:
    0 0 0 5px rgba(229,25,58,0.06),
    0 0 22px rgba(40,0,255,0.60),
    0 0 55px rgba(229,25,58,0.18),
    inset 0 0 20px rgba(80,0,255,0.25);
  animation: vHubPulse 3.5s ease-in-out infinite;
}
@keyframes vHubPulse {
  0%,100% {
    box-shadow: 0 0 0 5px rgba(229,25,58,0.06), 0 0 22px rgba(40,0,255,0.60),
                0 0 55px rgba(229,25,58,0.18), inset 0 0 20px rgba(80,0,255,0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(229,25,58,0.10), 0 0 40px rgba(77,40,255,0.80),
                0 0 80px rgba(229,25,58,0.28), inset 0 0 28px rgba(80,0,255,0.35);
  }
}
.values-hub-core svg {
  width: 24px; height: 24px; fill: none;
  stroke: rgba(255,255,255,0.92); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-diagram { grid-template-columns: 1fr 140px 1fr; }
  .vnode-card { width: 280px; }
}
@media (max-width: 860px) {
  .values-diagram { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
  .values-connectors { display: none; }
  .values-col--left, .values-col--right { align-items: stretch; }
  .vnode-card { width: 100%; }
  .vnode-tooltip { position: static; opacity: 1; transform: none; pointer-events: auto;
    border-top: none; border-radius: 0 0 10px 10px; border-color: rgba(229,25,58,0.20);
    display: none; }
  .vnode:hover .vnode-tooltip { display: block; }
}
@media (max-width: 480px) {
  .values { padding: 60px 20px 80px; }
  .vnode-card { padding: 14px; gap: 12px; }
  .vnode-title { font-size: 13px; }
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { padding: 100px 40px; border-bottom: 1px solid var(--faint); position: relative; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px; transition: color 0.2s;
}
.faq-q-text {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color 0.2s;
}
.faq-question:hover .faq-q-text { color: #fff; }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(27,0,255,0.10); border: 1px solid rgba(77,95,255,0.20); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle { background: var(--blue); border-color: var(--blue); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; fill: none; stroke: var(--blue-mid); stroke-width: 2.5; stroke-linecap: round; transition: stroke 0.2s; }
.faq-item.open .faq-toggle svg { stroke: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.45);
}
.faq-item {
  opacity: 0; transform: translateY(14px);
  transition: background 0.2s, opacity 0.5s ease var(--faq-delay,0s), transform 0.5s cubic-bezier(0.22,1,0.36,1) var(--faq-delay,0s);
}
.faq-item.in-view { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   BIO PANEL — minimal horizontal layout
════════════════════════════════════════════ */
.bio-panel { display: flex; flex-direction: column; gap: 0; }
.bio-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  border: 1px solid rgba(38,210,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.bio-avatar-col {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center;
  background: rgba(10,15,45,0.60);
  border-right: 1px solid rgba(38,210,255,0.10);
  padding: 36px 24px;
}
.bio-avatar-ring {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,0,255,0.5), rgba(77,95,255,0.20));
  border: 1px solid rgba(77,95,255,0.40);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(77,95,255,0.06), 0 0 24px rgba(27,0,255,0.30);
}
@keyframes hubPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(77,95,255,0.06), 0 0 30px rgba(27,0,255,0.25); }
  50%     { box-shadow: 0 0 0 12px rgba(77,95,255,0.10), 0 0 60px rgba(27,0,255,0.50); }
}
.bio-avatar-inner {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg,#1B00FF,#4D5FFF);
  display: flex; align-items: center; justify-content: center;
}
.bio-initials {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: 0.05em; color: #fff;
}
.bio-full-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.bio-title-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--blue-mid);
}
.bio-text-col {
  display: flex; flex-direction: column; gap: 0;
  padding: 32px 36px;
}
.bio-meta-row {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(38,210,255,0.08);
  flex-wrap: wrap;
}
.bio-meta-item {
  display: flex; flex-direction: column; gap: 3px;
}
.bio-meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.bio-meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.bio-meta-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.07); align-self: center; }
.bio-text-block { display: flex; flex-direction: column; gap: 12px; }
.bio-p { font-family: 'Barlow', sans-serif; font-size: 13.5px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.50); }
.bio-p strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.bio-p em { color: rgba(255,255,255,0.65); font-style: italic; }


/* ════════════════════════════════════════════
   CONTACT STRIP — replaces CTA band
════════════════════════════════════════════ */
.contact-strip {
  padding: 100px 40px;
  position: relative; overflow: hidden;
  background: #080912;
  border-top: 1px solid rgba(38,210,255,0.08);
}
.contact-strip::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(27,0,255,0.10) 0%, transparent 65%);
}
.contact-strip-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.contact-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--blue-mid);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.contact-strip-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--blue-mid); opacity: 0.6;
}
.contact-strip-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 1.0;
  color: #fff; margin-bottom: 16px;
}
.contact-strip-heading span { color: var(--blue-mid); }
.contact-strip-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.38);
  max-width: 420px;
}
.contact-strip-right {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; flex-shrink: 0;
}
.contact-strip-divider {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(38,210,255,0.15), transparent);
  position: absolute; left: 0; top: 0; bottom: 0;
  display: none;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer { background: #080912; border-top: 1px solid var(--faint); padding: 52px 40px 32px; }
.footer-max { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--faint); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { height: 40px; width: 40px; display: block; object-fit: contain; }
.footer-logo-wrapper { display: flex; align-items: center; gap: 12px; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.08em; color: #fff; text-transform: uppercase; }
.footer-tagline { font-family: 'Barlow', sans-serif; font-size: 13.5px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.40); max-width: 240px; }
.footer-socials { display: flex; gap: 14px; margin-top: 6px; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-socials a svg { width: 15px; height: 15px; fill: currentColor; }
.footer-socials a:hover { border-color: var(--blue-mid); color: #fff; background: rgba(77,95,255,0.10); }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.60); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-family: 'Barlow', sans-serif; font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.36); transition: color 0.2s, padding-left 0.2s; position: relative; padding-left: 0; }
.footer-col ul li a::before { content: '→'; position: absolute; left: -16px; opacity: 0; transition: opacity 0.2s, left 0.2s; color: var(--blue-mid); font-size: 11px; }
.footer-col ul li a:hover { color: #fff; padding-left: 18px; }
.footer-col ul li a:hover::before { opacity: 1; left: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; gap: 16px; flex-wrap: wrap; }
.footer-right { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.footer-copy { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.22); }
.footer-copy span { color: var(--blue-mid); }
.footer-credit { margin: 0; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.footer-credit a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-credit a:hover { color: var(--blue-mid); }
.footer-back-top { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; min-width: 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 0; color: rgba(255,255,255,0.65); transition: color 0.2s, background-color 0.2s, border-color 0.2s; cursor: pointer; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 0; }
.footer-back-top:hover { color: #fff; background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); }
.footer-back-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════════════
   SCROLL REVEAL — General .reveal
════════════════════════════════════════════ */
.reveal {
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.js-animated .reveal:not(.in-view) { opacity: 0; transform: translateY(32px); }
.js-animated .reveal.reveal--left:not(.in-view)  { transform: translateX(-32px); }
.js-animated .reveal.reveal--right:not(.in-view) { transform: translateX(32px); }
.js-animated .reveal.reveal--scale:not(.in-view) { transform: translateY(18px) scale(0.96); }
.reveal.in-view { opacity: 1; transform: none; }

/* Force-show all reveal elements inside the resume panel — 
   tab switching handles its own visibility, IntersectionObserver
   can't see hidden panels so we override here */
.resume-panel .reveal,
.resume-panel .reveal:not(.in-view),
.js-animated .resume-panel .reveal:not(.in-view) {
  opacity: 1 !important;
  transform: none !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .skills-grid { gap: 40px 48px; }
  .resume-tools-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .about-hero { padding: 90px 24px 70px; }
  .hero-name { font-size: clamp(52px,13vw,90px); }
  .stats-section { padding: 0; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 14px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); }
  .story { padding: 60px 24px; }
  .timeline { flex-direction: column; }
  .timeline::before { top: 7px; bottom: 7px; left: 7px; right: auto; width: 1px; height: auto; background: linear-gradient(to bottom,var(--blue-mid),rgba(77,95,255,0.15)); }
  .timeline-item { flex-direction: row; gap: 20px; padding-bottom: 32px; }
  .timeline-content { padding-right: 0; }
  .timeline-left { flex-shrink: 0; }
  .timeline-desc { max-width: 100%; }
  .story-header { margin-bottom: 40px; }
  .skills-grid { grid-template-columns: 1fr; gap: 36px; }
  .resume-tools-grid { grid-template-columns: repeat(3,1fr); }
  .resume-panel { padding: 28px 24px 32px; }
  .resume-panel-nav { padding: 5px 8px; }
  .resume-panel-chip { padding: 10px 18px; font-size: 11px; }
  .edu-grid-two { flex-direction: column; }
  .edu-col-divider { width: 100%; height: 1px; }
  .edu-col { padding: 24px 0; }
  .values-layout { grid-template-columns: 1fr; gap: 48px; }
  .values-statement { position: static; }
  .values-statement h2 { font-size: 36px; }
  .value-card { grid-template-columns: 44px 1fr; }
  .bio-intro { grid-template-columns: 1fr; }
  .bio-avatar-col { flex-direction: row; text-align: left; gap: 20px; padding: 24px; border-right: none; border-bottom: 1px solid rgba(38,210,255,0.10); justify-content: flex-start; }
  .bio-text-col { padding: 24px; }
  .contact-strip-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-strip-right { flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .navbar__inner { padding: 0 20px; }
  .about-hero { padding: 82px 20px 64px; }
  .hero-name { font-size: clamp(48px,15vw,72px); }
  .hero-bio { font-size: 14px; }
  .hero-roles { gap: 5px; margin-top: 20px; margin-bottom: 20px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 12px 14px; }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-num { font-size: 22px; }
  .story { padding: 60px 20px; }
  .story-heading { font-size: 32px; }
  .skills { padding: 60px 20px; }
  .values { padding: 60px 20px; }
  .resume-section { padding: 60px 20px; }
  .resume-tools-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .resume-panel { padding: 20px 16px 24px; }
  .resume-panel-nav { flex-wrap: wrap; gap: 4px; border-radius: 20px; width: 100%; }
  .resume-panel-chip { padding: 9px 14px; font-size: 10px; }
  .chip-sep { display: none; }
  .faq { padding: 60px 20px; }
  .contact-strip { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .section-title { font-size: 30px; }
  .bio-avatar-col { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .bio-meta-row { gap: 14px; }
}
@media (min-width: 1400px) { .about-hero__inner { max-width: 1000px; } }