  .about-wrap {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 24px 80px;
    color: var(--color-text);
    font-family: var(--font-primary);
  }

  .about-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
  }

  .about-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px;
    background: linear-gradient(100deg, #fff 30%, var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .about-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--color-text-dim);
    margin-bottom: 48px;
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-bottom: 52px;
  }

  .about-pillar {
    background: var(--color-surface);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: var(--transition-base);
  }

  .about-pillar:hover {
    border-color: var(--color-accent);
    box-shadow: var(--glow-pink);
    transform: translateY(-3px);
  }

  .about-pillar-icon {
    font-size: 1.6rem;
    color: var(--color-accent);
    margin-bottom: 12px;
  }

  .about-pillar h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    color: var(--color-text);
  }

  .about-pillar p {
    font-size: 0.88rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin: 0;
  }

  .about-divider {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 48px 0;
  }

  .about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
    margin-bottom: 40px;
  }

  .about-body strong {
    color: var(--color-text);
  }

  .about-founder {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--color-surface);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-lg);
    padding: 26px 28px;
  }

  .about-founder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--glow-pink);
  }

  .about-founder-info p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-dim);
  }

  .about-founder-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
  }

/* ===============================
   CREDITS PAGE (from style.css lines 3866–4054)
============================== */
.credits-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255,105,180,0.1), rgba(139,0,255,0.1));
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.credits-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,105,180,0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(139,0,255,0.2) 0%, transparent 50%);
  animation: creditsGlow 8s ease-in-out infinite alternate;
}

@keyframes creditsGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.credits-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  text-shadow:
    0 0 20px #ff69b4,
    0 0 40px #ff69b4,
    0 0 60px #ff00ff,
    0 0 80px #ff00ff;
  animation: creditsTitlePulse 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes creditsTitlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.credits-subtitle {
  font-size: 1.3rem;
  color: #ffd9f7;
  opacity: 0.9;
  font-weight: 300;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255,105,180,0.5);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.credits-card {
  background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(34,34,34,0.95));
  border: 1px solid rgba(255,105,180,0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 20px rgba(255,105,180,0.1);
  position: relative;
  overflow: hidden;
}

.credits-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,105,180,0.1), transparent);
  transition: left 0.6s ease;
}

.credits-card:hover::before {
  left: 100%;
}

.credits-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(255,105,180,0.3),
    0 0 60px rgba(255,0,255,0.2);
  border-color: rgba(255,105,180,0.6);
}

.credits-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff69b4, #ff00ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,105,180,0.4);
  transition: all 0.3s ease;
}

.credits-card:hover .credits-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(255,105,180,0.6);
}

.credits-card h3 {
  color: #ff69b4;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,105,180,0.5);
}

.credits-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.credits-card-special {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(34,34,34,0.95), rgba(17,17,17,0.95));
  border: 2px solid rgba(255,215,0,0.4);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 20px rgba(255,215,0,0.1);
}

.credits-card-special .credits-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.credits-card-special h3 {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.credits-card-special:hover {
  border-color: rgba(255,215,0,0.6);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(255,215,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .credits-title {
    font-size: 2.5rem;
  }

  .credits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .credits-card {
    padding: 20px;
  }

  .credits-card-special {
    margin-top: 20px;
  }
}
