/* =====================
   ABOUT HERO
   ===================== */

.about-hero-section {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 148, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-hero {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

/* Left column */
.about-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-hero-name {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 24px;
}

.about-hero-name span {
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.about-role-pill {
  font-size: 13px;
  font-weight: 500;
  color: #b0b0b0;
  padding: 6px 14px;
  border: 1px solid #2e2e2e;
  border-radius: 100px;
  background: #141414;
}

.about-role-pill--accent {
  border-color: rgba(0, 224, 255, 0.3);
  color: #00e0ff;
  background: rgba(0, 224, 255, 0.06);
}

.about-hero-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #9a9a9a;
  max-width: 520px;
  margin-bottom: 36px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  width: 100%;
}

/* Right column — profile card */
.about-hero-right {
  flex-shrink: 0;
  width: 340px;
}

.about-profile-card {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.about-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  opacity: 1;
}

.about-profile-card:hover {
  border-color: rgba(0, 224, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 224, 255, 0.08);
}

/* Avatar */
.about-avatar-wrap {
  display: flex;
  justify-content: center;
}

.about-avatar-mono {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.1) 0%, rgba(0, 255, 148, 0.06) 100%);
  border: 2px solid rgba(0, 224, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(0, 224, 255, 0.1);
  transition: box-shadow 250ms ease, border-color 250ms ease;
}

.about-profile-card:hover .about-avatar-mono {
  box-shadow: 0 0 48px rgba(0, 224, 255, 0.18);
  border-color: rgba(0, 224, 255, 0.45);
}

.about-avatar-mono span {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Profile info rows */
.about-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  gap: 12px;
}

.about-profile-row:last-child {
  border-bottom: none;
}

.about-profile-key {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  flex-shrink: 0;
}

.about-profile-val {
  font-size: 13px;
  color: #d0d0d0;
  text-align: right;
}

/* Available status */
.about-available {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00ff94;
}

.about-available-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff94;
  box-shadow: 0 0 6px rgba(0, 255, 148, 0.6);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* =====================
   STATS BAR
   ===================== */

.about-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #0e0e0e;
  border: 1px solid #232524;
  border-radius: 16px;
  padding: 32px 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.about-stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.about-stats-divider {
  width: 1px;
  height: 48px;
  background: #232524;
  flex-shrink: 0;
}


/* =====================
   SECTION HEADER
   ===================== */

.about-section-header {
  width: 100%;
}


/* =====================
   WHAT I DO / EXPERTISE
   ===================== */

.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-expertise-card {
  background: #0e0e0e;
  border: 1px solid #232524;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 224, 255, 0.08);
  border-color: rgba(0, 224, 255, 0.2);
}

.about-expertise-card--featured {
  border-color: rgba(0, 224, 255, 0.25);
  background: linear-gradient(160deg, rgba(0, 224, 255, 0.04) 0%, #0e0e0e 60%);
}

.about-expertise-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-expertise-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.about-expertise-card p {
  font-size: 14px;
  color: #7b7979;
  line-height: 1.7;
  margin: 0;
}

.about-expertise-tools {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-expertise-tools li {
  font-size: 12px;
  color: #9a9a9a;
  padding: 4px 12px;
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  background: #141414;
}


/* =====================
   TECH STACK
   ===================== */

.about-stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* ── Base card ── */
.about-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #090909;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 28px 12px 20px;
  cursor: default;
  transition:
    border-color 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background   320ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow   320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Consistent icon container ── */
.about-stack-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-stack-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-stack-item span {
  font-size: 11px;
  font-weight: 600;
  color: #484848;
  text-align: center;
  letter-spacing: 0.02em;
  transition: color 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Per-tool brand tints ─────────────────────────────── */

/* Figma — #A259FF purple */
[data-tool="figma"]                          { background: linear-gradient(160deg, rgba(162,89,255,0.05) 0%, #090909 65%); }
[data-tool="figma"]:hover                    { border-color: rgba(162,89,255,0.38); box-shadow: 0 0 28px rgba(162,89,255,0.09); }
[data-tool="figma"]:hover .about-stack-icon-wrap { background: rgba(162,89,255,0.14); }
[data-tool="figma"]:hover span               { color: rgba(162,89,255,0.9); }

/* After Effects — #9999FF blue-violet */
[data-tool="aftereffects"]                          { background: linear-gradient(160deg, rgba(153,153,255,0.05) 0%, #090909 65%); }
[data-tool="aftereffects"]:hover                    { border-color: rgba(153,153,255,0.38); box-shadow: 0 0 28px rgba(153,153,255,0.09); }
[data-tool="aftereffects"]:hover .about-stack-icon-wrap { background: rgba(153,153,255,0.14); }
[data-tool="aftereffects"]:hover span               { color: rgba(153,153,255,0.9); }

/* Photoshop — #31A8FF blue */
[data-tool="photoshop"]                          { background: linear-gradient(160deg, rgba(49,168,255,0.05) 0%, #090909 65%); }
[data-tool="photoshop"]:hover                    { border-color: rgba(49,168,255,0.38); box-shadow: 0 0 28px rgba(49,168,255,0.09); }
[data-tool="photoshop"]:hover .about-stack-icon-wrap { background: rgba(49,168,255,0.14); }
[data-tool="photoshop"]:hover span               { color: rgba(49,168,255,0.9); }

/* Illustrator — #FF9A00 orange */
[data-tool="illustrator"]                          { background: linear-gradient(160deg, rgba(255,154,0,0.05) 0%, #090909 65%); }
[data-tool="illustrator"]:hover                    { border-color: rgba(255,154,0,0.38); box-shadow: 0 0 28px rgba(255,154,0,0.09); }
[data-tool="illustrator"]:hover .about-stack-icon-wrap { background: rgba(255,154,0,0.14); }
[data-tool="illustrator"]:hover span               { color: rgba(255,154,0,0.9); }

/* React — #61DAFB cyan */
[data-tool="react"]                          { background: linear-gradient(160deg, rgba(97,218,251,0.05) 0%, #090909 65%); }
[data-tool="react"]:hover                    { border-color: rgba(97,218,251,0.38); box-shadow: 0 0 28px rgba(97,218,251,0.09); }
[data-tool="react"]:hover .about-stack-icon-wrap { background: rgba(97,218,251,0.14); }
[data-tool="react"]:hover span               { color: rgba(97,218,251,0.9); }

/* TypeScript — #3178C6 blue */
[data-tool="typescript"]                          { background: linear-gradient(160deg, rgba(49,120,198,0.05) 0%, #090909 65%); }
[data-tool="typescript"]:hover                    { border-color: rgba(49,120,198,0.38); box-shadow: 0 0 28px rgba(49,120,198,0.09); }
[data-tool="typescript"]:hover .about-stack-icon-wrap { background: rgba(49,120,198,0.14); }
[data-tool="typescript"]:hover span               { color: rgba(49,120,198,0.9); }

/* Sass — #CC6699 pink */
[data-tool="sass"]                          { background: linear-gradient(160deg, rgba(204,102,153,0.05) 0%, #090909 65%); }
[data-tool="sass"]:hover                    { border-color: rgba(204,102,153,0.38); box-shadow: 0 0 28px rgba(204,102,153,0.09); }
[data-tool="sass"]:hover .about-stack-icon-wrap { background: rgba(204,102,153,0.14); }
[data-tool="sass"]:hover span               { color: rgba(204,102,153,0.9); }

/* Tailwind — #06B6D4 teal */
[data-tool="tailwind"]                          { background: linear-gradient(160deg, rgba(6,182,212,0.05) 0%, #090909 65%); }
[data-tool="tailwind"]:hover                    { border-color: rgba(6,182,212,0.38); box-shadow: 0 0 28px rgba(6,182,212,0.09); }
[data-tool="tailwind"]:hover .about-stack-icon-wrap { background: rgba(6,182,212,0.14); }
[data-tool="tailwind"]:hover span               { color: rgba(6,182,212,0.9); }

/* WordPress — #21759B blue */
[data-tool="wordpress"]                          { background: linear-gradient(160deg, rgba(33,117,155,0.05) 0%, #090909 65%); }
[data-tool="wordpress"]:hover                    { border-color: rgba(33,117,155,0.38); box-shadow: 0 0 28px rgba(33,117,155,0.09); }
[data-tool="wordpress"]:hover .about-stack-icon-wrap { background: rgba(33,117,155,0.14); }
[data-tool="wordpress"]:hover span               { color: rgba(33,117,155,0.9); }

/* GSAP — #88CE02 green */
[data-tool="gsap"]                          { background: linear-gradient(160deg, rgba(136,206,2,0.05) 0%, #090909 65%); }
[data-tool="gsap"]:hover                    { border-color: rgba(136,206,2,0.38); box-shadow: 0 0 28px rgba(136,206,2,0.09); }
[data-tool="gsap"]:hover .about-stack-icon-wrap { background: rgba(136,206,2,0.14); }
[data-tool="gsap"]:hover span               { color: rgba(136,206,2,0.9); }


/* =====================
   INTERESTS / OUTSIDE THE SCREEN
   ===================== */

.about-interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-interest-card {
  background: #0e0e0e;
  border: 1px solid #232524;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.about-interest-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 224, 255, 0.15);
}

.about-interest-card--wide {
  grid-column: span 2;
}

.about-interest-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-interest-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-interest-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-interest-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.about-interest-body p {
  font-size: 13px;
  color: #7b7979;
  line-height: 1.65;
  margin: 0;
}


/* =====================
   SECTION LEAD TEXT
   ===================== */

.about-section-lead {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
}

.margin-top-24 { margin-top: 24px; }


/* =====================
   TECH STACK GROUPS
   ===================== */

.about-stack-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-stack-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-stack-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #383838;
  padding-left: 2px;
}


/* =====================
   INTEREST CARD TINTS
   ===================== */

.about-interest-card--art  { background: linear-gradient(135deg, rgba(255, 180, 50, 0.06) 0%, #0e0e0e 55%); }
.about-interest-card--code { background: linear-gradient(135deg, rgba(0, 224, 255, 0.06) 0%, #0e0e0e 55%); }
.about-interest-card--game { background: linear-gradient(135deg, rgba(160, 80, 255, 0.06) 0%, #0e0e0e 55%); }
.about-interest-card--dogs { background: linear-gradient(135deg, rgba(255, 140, 80, 0.06) 0%, #0e0e0e 55%); }
.about-interest-card--cook { background: linear-gradient(135deg, rgba(255, 90, 50, 0.06) 0%, #0e0e0e 55%); }
.about-interest-card--run  { background: linear-gradient(135deg, rgba(0, 255, 148, 0.06) 0%, #0e0e0e 55%); }

.about-interest-icon img {
  width: 32px;
  height: 32px;
}

.about-interest-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}


/* =====================
   SHARED UTILITIES (about scope)
   ===================== */

.margin-top-88 {
  margin-top: 88px;
}

.margin-top-32 {
  margin-top: 32px;
}


/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
  .about-expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-stack-group:first-child .about-stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-stack-group:last-child .about-stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-hero {
    gap: 40px;
  }

  .about-hero-name {
    font-size: 56px;
  }

  .about-hero-right {
    width: 300px;
  }

  /* Interests: switch to 2-col at tablet — wide cards span full row */
  .about-interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-interest-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-hero {
    flex-direction: column;
    gap: 40px;
  }

  .about-hero-name {
    font-size: 48px;
  }

  .about-hero-right {
    width: 100%;
  }

  .about-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 24px 16px;
  }

  .about-stats-divider {
    display: none;
  }

  .about-stat {
    border-right: 1px solid #232524;
    padding: 0 12px;
  }

  .about-stat:last-child {
    border-right: none;
  }

  .about-stat-num {
    font-size: 30px;
  }

  .about-stat-label {
    font-size: 10px;
  }

  .about-expertise-grid {
    grid-template-columns: 1fr;
  }

  .about-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stack-group:first-child .about-stack-grid,
  .about-stack-group:last-child .about-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-interest-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .about-hero-name {
    font-size: 40px;
  }

  .about-hero-bio {
    font-size: 14px;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn-primary,
  .about-hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stack-group:first-child .about-stack-grid,
  .about-stack-group:last-child .about-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Single column — stack icon above content */
  .about-interests-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-interest-card--wide {
    grid-column: span 1;
  }

  .about-interest-card {
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
  }

  .about-interest-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }

  .about-interest-body h3 {
    font-size: 15px;
  }

  .about-interest-body p {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .about-stat-num {
    font-size: 24px;
  }

  .about-stat-label {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .about-stat {
    padding: 0 8px;
  }
}


/* ======================================================
   ABOUT PAGE — UI/UX IMPROVEMENTS
   ====================================================== */

/* ── 1. Accessibility: Contrast Fixes ──────────────────
   All values below pass WCAG AA 4.5:1 on near-black bgs.
   ─────────────────────────────────────────────────────── */

.about-profile-key {
  color: #888; /* was #555 — ~2.6:1 → now ~6.2:1 */
}

.about-stack-group-label {
  color: #777; /* was #383838 — improved contrast */
}

.about-stack-item span {
  color: #888; /* was #484848 — ~2.25:1 → now ~6.2:1 */
}

.about-stat-label {
  color: #888; /* was #666 — ~3.6:1 → now ~6.2:1 */
}


/* ── 2. Stats Bar: gradient accent line ─────────────── */

.about-stats-bar {
  position: relative;
  overflow: hidden;
}

.about-stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--linear, linear-gradient(90deg, #00e0ff 0%, #00ff94 100%));
  opacity: 0.35;
}


/* ── 3. Expertise Cards: gradient top bar + polish ──── */

.about-expertise-card {
  position: relative;
  will-change: transform;
}

.about-expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--linear, linear-gradient(90deg, #00e0ff 0%, #00ff94 100%));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 1;
}

.about-expertise-card:hover::before,
.about-expertise-card--featured::before {
  opacity: 1;
}

/* Stronger featured card distinction */
.about-expertise-card--featured {
  border-color: rgba(0, 224, 255, 0.3);
  background: linear-gradient(160deg, rgba(0, 224, 255, 0.07) 0%, rgba(0, 255, 148, 0.025) 45%, #0e0e0e 72%);
  box-shadow: 0 0 48px rgba(0, 224, 255, 0.06);
}


/* ── 4. Interest Cards: per-card hover accent colors ── */

.about-interest-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

/* Override generic cyan with each card's own tint */
.about-interest-card--art:hover  {
  border-color: rgba(255, 180, 50, 0.38);
  box-shadow: 0 8px 32px rgba(255, 180, 50, 0.07);
}
.about-interest-card--code:hover {
  border-color: rgba(0, 224, 255, 0.38);
  box-shadow: 0 8px 32px rgba(0, 224, 255, 0.07);
}
.about-interest-card--game:hover {
  border-color: rgba(160, 80, 255, 0.38);
  box-shadow: 0 8px 32px rgba(160, 80, 255, 0.07);
}
.about-interest-card--dogs:hover {
  border-color: rgba(255, 140, 80, 0.38);
  box-shadow: 0 8px 32px rgba(255, 140, 80, 0.07);
}
.about-interest-card--cook:hover {
  border-color: rgba(255, 90, 50, 0.38);
  box-shadow: 0 8px 32px rgba(255, 90, 50, 0.07);
}
.about-interest-card--run:hover  {
  border-color: rgba(0, 255, 148, 0.38);
  box-shadow: 0 8px 32px rgba(0, 255, 148, 0.07);
}


/* ── 5. Avatar: pulsing glow ring ───────────────────── */

.about-avatar-mono {
  position: relative;
}

.about-avatar-mono::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(0, 224, 255, 0.22);
  animation: about-avatar-ring 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes about-avatar-ring {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(1.07); }
}


/* ── 6. Scroll-reveal for grid cards ────────────────── */

.about-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Cascade stagger — nth-child within each grid */
.about-reveal:nth-child(2) { transition-delay: 65ms; }
.about-reveal:nth-child(3) { transition-delay: 130ms; }
.about-reveal:nth-child(4) { transition-delay: 195ms; }
.about-reveal:nth-child(5) { transition-delay: 260ms; }
.about-reveal:nth-child(6) { transition-delay: 325ms; }


/* ── 7. Reduced-motion guard ────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .about-reveal,
  .about-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-avatar-mono::after {
    animation: none;
  }

  .about-available-dot {
    animation: none;
  }

  .about-expertise-card {
    will-change: auto;
  }
}
