.about-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.hero-section {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.hero-subtitle.secondary {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.section {
  margin-bottom: 28px;
}

.section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.card-creator {
  padding: 36px;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.section-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.section-card p:last-child {
  margin-bottom: 0;
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}



.creator-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg-secondary), 0 0 0 7px color-mix(in srgb, var(--accent) 25%, transparent);
}

.creator-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 !important;
}

.creator-handle {
  font-size: 0.9rem;
  color: var(--accent);
  margin: 2px 0 !important;
}

.creator-location {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 4px 0 0 !important;
}

.quote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0 0;
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg-hover);
  border-radius: 0 8px 8px 0;
}

.quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.connect-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-primary);
}

.connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.connect-btn.github:hover {
  color: #fff;
  background: #24292e;
  border-color: #24292e;
}

.connect-btn.linkedin:hover {
  color: #fff;
  background: #0077b5;
  border-color: #0077b5;
}

.connect-btn.x:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}

.connect-btn.email:hover {
  color: #fff;
  background: #d14836;
  border-color: #d14836;
}

.connect-btn.paypal:hover {
  color: #fff;
  background: #003087;
  border-color: #003087;
}

.connect-btn.buymeacoffee:hover {
  color: #fff;
  background: #FF5E5B;
  border-color: #FF5E5B;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 48px 0 40px;
  }
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-card {
    padding: 24px;
  }
  .card-creator {
    padding: 24px;
  }
  .creator-header {
    flex-direction: column;
    text-align: center;
  }
  .connect-links {
    grid-template-columns: 1fr;
  }
}
