/* ══════════════════════════════════════════════════════
   About Page — Specific Styles
   ══════════════════════════════════════════════════════ */

/* ─── About Hero Entrance Animations ─────────────────── */
.about-hero-text > * {
  opacity: 0;
  animation: heroFadeUp .65s var(--ease) forwards;
}
.about-hero-text > :nth-child(1) { animation-delay: .1s; }
.about-hero-text > :nth-child(2) { animation-delay: .22s; }
.about-hero-text > :nth-child(3) { animation-delay: .34s; }
.about-hero-text > :nth-child(4) { animation-delay: .46s; }

.about-hero-visual {
  opacity: 0;
  animation: heroFadeRight .9s var(--ease) .35s forwards;
}

/* Profile card continuous float */
.profile-card {
  animation: heroFloat 5s ease-in-out infinite;
}

/* ─── About Hero ──────────────────────────────────────── */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 4rem;
  position: relative;
  z-index: 1;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: .75rem 0 1.5rem;
}
.about-hero-sub {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}
.about-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Profile Card ────────────────────────────────────── */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.profile-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.profile-photo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}
.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 194, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 194, 255, 0.25);
  position: relative;
  z-index: 2;
}
.profile-photo-fallback {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #071428, #0d2040);
  border: 3px solid rgba(0, 194, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 194, 255, 0.4);
  position: relative;
  z-index: 2;
}
.profile-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 194, 255, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.profile-ring-2 {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 255, 0.1);
  animation: ringPulse 3s ease-in-out infinite .5s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.03); }
}

.profile-info {
  text-align: center;
}
.profile-info h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.profile-info p {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.profile-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--blue-neon);
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: .35rem .875rem;
  border-radius: 100px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 6px #00e676;
  animation: pulse 2s infinite;
}

.profile-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pstat {
  text-align: center;
}
.pstat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pstat-plus { color: var(--blue-neon); font-weight: 700; font-size: 1.25rem; }
.pstat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.pstat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── Bio ─────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.bio-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.bio-text:last-child { margin-bottom: 0; }
.bio-text strong { color: var(--white); }

/* ─── Services ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  background: var(--bg-card);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: background var(--transition);
  position: relative;
}
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 1px;
  background: var(--border);
}
.service-item:hover { background: var(--bg-card-2); }
.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 194, 255, 0.15);
  line-height: 1;
  flex-shrink: 0;
  padding-top: .25rem;
}
.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}
.service-content p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Tools ───────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  padding: 1.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.tool-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--blue-glow);
}
.tool-card span {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}
.tool-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.tool-icon.ae  { background: linear-gradient(135deg, #00005b, #9999ff); }
.tool-icon.pr  { background: linear-gradient(135deg, #2d0a31, #e87cff); }
.tool-icon.ps  { background: linear-gradient(135deg, #001e36, #31a8ff); }
.tool-icon.ai  { background: linear-gradient(135deg, #300900, #ff9a00); }
.tool-icon.dv  { background: linear-gradient(135deg, #1a0000, #e8c37b); }
.tool-icon.c4  { background: linear-gradient(135deg, #001020, #0082c8); }

/* ─── CTA Banner ──────────────────────────────────────── */
.cta-banner { background: var(--bg-2); }
.cta-inner {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
}
.cta-glow-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(0, 194, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: .75rem 0 1rem;
  position: relative;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .about-hero-sub { margin-left: auto; margin-right: auto; }
  .about-hero-cta { justify-content: center; }
  .about-hero-visual { display: flex; justify-content: center; }
  .profile-card { max-width: 380px; }
  .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { min-height: unset; padding-top: calc(var(--nav-h) + 3rem); }
}

@media (max-width: 480px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .tool-card { padding: 1.25rem .75rem; }
  .tool-icon { width: 40px; height: 40px; font-size: .75rem; }
}
