/* ═══════════════════════════════════════════
   ABOUT PAGE — css/about.css
   Quantum Paradox · Steampunk-Adventure Tech
   ═══════════════════════════════════════════ */

/* ───────── Hero ───────── */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 8rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    rgba(0, 102, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-hero__title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: 0.08em;
  color: #F0ECE4;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.about-hero__subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: #A8B2C1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ───────── Origin Story ───────── */
.about-origin {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-origin__text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #E8E0D4;
  margin-bottom: 2rem;
  text-align: center;
}

.about-origin__text:last-child {
  margin-bottom: 0;
}

.about-origin__text em {
  color: #A8B2C1;
  font-style: italic;
}

.about-origin__text strong {
  color: #0066FF;
  font-weight: 600;
}

/* ───────── Pull Quote ───────── */
.about-pullquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.6;
  color: #A8B2C1;
  border-left: 4px solid #0066FF;
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem auto;
  max-width: 560px;
  position: relative;
}

.about-pullquote::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #0066FF 0%,
    rgba(0, 102, 255, 0.3) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.35);
}

/* ───────── Mission & Values ───────── */
.about-values {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-values__grid .card {
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-values__grid .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 102, 255, 0.12),
    0 0 0 1px rgba(0, 102, 255, 0.08);
}

.about-values__grid .card__icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}

/* ───────── Timeline section ───────── */
.about-timeline {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ───────── Culture ───────── */
.about-culture {
  background: #1A1A2E;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-culture__text {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #A8B2C1;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ───────── Responsive ───────── */
@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
    padding: 7rem 1.25rem 3rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-pullquote {
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-size: 1.2rem;
  }

  .about-origin__text {
    font-size: 1rem;
    text-align: left;
  }
}
