/* ============================================================
   ARCHETYPE A — "Fortress" (Bastion) — About Page
   Content-only styles (shared styles loaded via style.css)
   ============================================================ */

/* ---- Page-specific Keyframe Animations ---- */
@keyframes prt-scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* === ABOUT HERO === */
.prt-about-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 24px 60px;
  text-align: center;
  overflow: hidden;
}
.prt-about-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.prt-about-hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prt-fade-up 0.8s ease both;
}
.prt-about-hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
  animation: prt-fade-up 0.8s ease 0.15s both;
}

/* === MISSION / VISION CARDS (side-by-side) === */
.prt-about-mv-section {
  padding: 40px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.prt-about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.prt-about-mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: transform var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
  animation: prt-scale-in 0.6s ease both;
}
.prt-about-mv-card:nth-child(1) { animation-delay: 0.1s; }
.prt-about-mv-card:nth-child(2) { animation-delay: 0.2s; }
.prt-about-mv-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(109, 74, 255, 0.12);
}
.prt-about-mv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.15), rgba(0, 212, 170, 0.08));
  color: var(--primary-color);
  margin-bottom: 20px;
}
.prt-about-mv-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.prt-about-mv-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === VALUES SECTION (2x2 grid) === */
.prt-about-values-section {
  padding: 80px 24px 100px;
  background: var(--bg-surface);
}
.prt-about-values-header {
  text-align: center;
  margin-bottom: 56px;
}
.prt-about-values-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  animation: prt-fade-up 0.7s ease both;
}
.prt-about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.prt-about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
  animation: prt-fade-up 0.6s ease both;
}
.prt-about-value-card:nth-child(1) { animation-delay: 0.1s; }
.prt-about-value-card:nth-child(2) { animation-delay: 0.15s; }
.prt-about-value-card:nth-child(3) { animation-delay: 0.2s; }
.prt-about-value-card:nth-child(4) { animation-delay: 0.25s; }
.prt-about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(109, 74, 255, 0.12);
}
.prt-about-value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.prt-about-value-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === CTA SECTION === */
.prt-about-cta {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}
.prt-about-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.prt-about-cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
  animation: prt-fade-up 0.7s ease both;
}
.prt-about-cta-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  animation: prt-fade-up 0.7s ease 0.12s both;
}
.prt-about-cta .prt-btn {
  animation: prt-fade-up 0.7s ease 0.24s both;
}
.prt-about-cta-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  animation: prt-glow-pulse 7s ease-in-out infinite;
}

/* === CONTENT RESPONSIVE === */
@media (max-width: 768px) {
  .prt-about-hero {
    padding: calc(var(--nav-height) + 48px) 20px 40px;
  }
  .prt-about-hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .prt-about-mv-section {
    padding: 24px 20px 60px;
  }
  .prt-about-mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .prt-about-mv-card {
    padding: 32px 24px;
  }
  .prt-about-values-section {
    padding: 60px 20px 64px;
  }
  .prt-about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .prt-about-value-card {
    padding: 28px 24px;
  }
  .prt-about-cta {
    padding: 64px 20px;
  }
  .prt-about-cta-glow {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .prt-about-hero-heading {
    font-size: 1.7rem;
  }
  .prt-about-hero-desc {
    font-size: 0.95rem;
  }
  .prt-about-values-title {
    font-size: 1.5rem;
  }
}
