/* ======================================== */
/* ABOUT PAGE                               */
/* ======================================== */

.about-landing {
  background: var(--orion-color-bg);
  color: var(--orion-color-text);
}

.about-landing *,
.about-landing *::before,
.about-landing *::after {
  box-sizing: border-box;
}

.about-container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======================================== */
/* HERO                                     */
/* ======================================== */

.about-hero {
  padding: 28px 0 44px;
}

.about-hero-box {
  background: linear-gradient(135deg, #1f1f1f 0%, var(--orion-color-dark) 100%);
  border-radius: 34px;
  padding: 62px 40px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  text-align: center;
}

.about-hero-box h1 {
  margin: 0;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-weight: 400;
  color: var(--orion-color-white);
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-copy {
  margin: 24px auto 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

/* ======================================== */
/* SECTIONS                                 */
/* ======================================== */

.about-section {
  padding: 72px 0;
}

.about-section-alt {
  background: var(--orion-color-bg-soft);
}

.about-header {
  max-width: 940px;
  margin: 0 auto 34px;
}

.about-header-center {
  text-align: center;
}

.about-header h2,
.about-card h3,
.about-final h2 {
  margin: 0;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-weight: 400;
  color: var(--orion-color-dark);
}

.about-header h2,
.about-final h2 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.about-header p,
.about-card p,
.about-final p {
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ======================================== */
/* GRIDS                                    */
/* ======================================== */

.about-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ======================================== */
/* CARDS                                    */
/* ======================================== */

.about-card,
.about-final {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.04);
}

.about-card {
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

.about-card h3 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.about-card p {
  margin: 0 0 16px;
}

/* ======================================== */
/* TIMELINE                                 */
/* ======================================== */

.about-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-timeline-item {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 6px 16px rgba(18, 18, 18, 0.04);
}

.about-timeline-item h3 {
  margin: 0 0 10px;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-size: 24px;
  color: var(--orion-color-dark);
}

.about-timeline-item p {
  margin: 0;
  color: var(--orion-color-text-muted);
  line-height: 1.7;
}

/* ======================================== */
/* FINAL CTA                                */
/* ======================================== */

.about-final {
  max-width: 1060px;
  margin: 0 auto;
  padding: 58px 48px;
  text-align: center;
}

.about-final p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.about-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.about-actions-center {
  justify-content: center;
}

.about-actions .orion-btn-primary {
  min-width: 280px;
}

/* ======================================== */
/* RESPONSIVE                               */
/* ======================================== */

@media (max-width: 1200px) {
  .about-grid-2,
  .about-grid-3 {
    grid-template-columns: 1fr;
  }

  .about-hero-box h1 {
    font-size: 52px;
  }
}

@media (max-width: 980px) {
  .about-header h2,
  .about-final h2 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .about-hero-box,
  .about-card,
  .about-final,
  .about-timeline-item {
    padding: 24px;
  }

  .about-hero-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .about-header h2,
  .about-final h2 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .orion-btn {
    width: 100%;
  }

  .about-actions .orion-btn-primary {
    min-width: 0;
  }
}
