﻿:root {
  --about-ink: #0e1528;
  --about-muted: #596584;
  --about-card: #ffffff;
  --about-card-soft: #f4f6ff;
  --about-border: #dfe5ff;
  --about-accent: #5b6cff;
  --about-accent-dark: #2433b1;
  --about-ghost: #e9ecff;
  --about-shadow: 0 22px 52px rgba(16, 30, 92, 0.16);
  --about-radius: 20px;
  --about-radius-lg: 28px;
  --about-container: 1200px;
}

.about {
  color: var(--about-ink);
  line-height: 1.7;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6ff 70%, #eef1ff 100%);
}

.about__container {
  max-width: var(--about-container);
  margin: 0 auto;
  padding: 0 28px;
}

.about__hero {
  position: relative;
  padding: 108px 0 78px;
  overflow: hidden;
}

.about__ambient {
  position: absolute;
  inset: 16% -24% auto -20%;
  height: 140%;
  background:
    radial-gradient(38% 44% at 18% 12%, rgba(91, 108, 255, 0.25), transparent 65%),
    radial-gradient(30% 32% at 82% 28%, rgba(255, 190, 220, 0.18), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.about__hero > .about__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.about__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  color: var(--about-muted);
  box-shadow: 0 12px 34px rgba(10, 22, 70, 0.12);
}

.about__breadcrumb a {
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.about__breadcrumb a:hover {
  opacity: 1;
}

.about__breadcrumb .current {
  color: var(--about-ink);
}

.about__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
}

.about__hero-copy {
  display: grid;
  gap: 18px;
}

.about__title {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about__lead {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 20px);
  color: var(--about-muted);
}

.about__hero-figure {
  margin: 0;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(91, 108, 255, 0.16);
  box-shadow: 0 24px 46px rgba(18, 31, 90, 0.18);
}

.about__hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 22px;
  border-radius: var(--about-radius-lg);
  border: 1px solid var(--about-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(17, 32, 88, 0.1);
  font-weight: 600;
}

.about__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--about-card-soft);
  border-radius: 999px;
  border: 1px solid rgba(91, 108, 255, 0.14);
  color: var(--about-muted);
  font-size: 14px;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about__highlight {
  display: grid;
  gap: 12px;
  padding: 26px 24px;
  border-radius: var(--about-radius);
  border: 1px solid rgba(91, 108, 255, 0.14);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 44px rgba(20, 36, 104, 0.1);
}

.about__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 108, 255, 0.18), rgba(91, 108, 255, 0.05));
  border: 1px solid rgba(91, 108, 255, 0.24);
  font-weight: 700;
  color: var(--about-accent-dark);
  font-size: 18px;
}

.about__highlight-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.about__highlight p {
  margin: 0;
  color: var(--about-muted);
}

.about__content {
  padding: 82px 0 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 255, 0.98) 100%);
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 36px;
  align-items: start;
}

.about__sidebar {
  display: grid;
  gap: 24px;
}

.about__main {
  display: grid;
  gap: 26px;
}

.about__card {
  background: var(--about-card);
  border-radius: var(--about-radius);
  border: 1px solid var(--about-border);
  padding: 30px 32px;
  box-shadow: var(--about-shadow);
}

.about__card--sidebar {
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(17, 32, 88, 0.12);
}

.about__card--cta {
  background: linear-gradient(135deg, rgba(91, 108, 255, 0.12), rgba(91, 108, 255, 0.04));
}

.about__card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--about-ink);
}

.about__toc {
  display: block;
}

.about__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: about-toc;
}

.about__toc-list li {
  counter-increment: about-toc;
}

.about__toc-list a {
  position: relative;
  display: block;
  padding: 10px 14px 10px 36px;
  border-radius: 14px;
  color: var(--about-muted);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.about__toc-list a::before {
  content: counter(about-toc, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 700;
  color: rgba(36, 51, 177, 0.65);
}

.about__toc-list a:hover {
  background: rgba(91, 108, 255, 0.08);
  color: var(--about-ink);
}

.about__toc-list a.is-active {
  background: rgba(91, 108, 255, 0.12);
  border-color: rgba(91, 108, 255, 0.26);
  color: var(--about-ink);
}

.about__fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--about-muted);
  font-size: 15px;
}

.about__section-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--about-ink);
}

.about__section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--about-card-soft);
  border: 1px solid rgba(91, 108, 255, 0.3);
  font-size: 15px;
  font-weight: 700;
  color: var(--about-accent-dark);
}

.about__pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about__pillar {
  background: var(--about-card-soft);
  border-radius: var(--about-radius);
  border: 1px solid rgba(91, 108, 255, 0.2);
  padding: 20px 22px;
}

.about__pillar h3 {
  margin: 0 0 10px;
  color: var(--about-accent-dark);
  font-size: 18px;
}

.about__pillar p {
  margin: 0;
  color: var(--about-muted);
}

.about__list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
  color: var(--about-muted);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.about__stat {
  background: var(--about-card-soft);
  border-radius: var(--about-radius);
  border: 1px solid rgba(91, 108, 255, 0.18);
  padding: 22px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(18, 31, 90, 0.12);
}

.about__stat h3 {
  margin: 0 0 6px;
  font-size: 32px;
  color: var(--about-accent);
}

.about__stat p {
  margin: 0;
  color: var(--about-muted);
  font-size: 15px;
}

.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
}

.about__btn--primary {
  background: linear-gradient(120deg, #5b6cff 0%, #7384ff 100%);
  color: #fff;
  box-shadow: 0 16px 38px rgba(72, 88, 200, 0.28);
}

.about__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(52, 68, 172, 0.32);
}

.about__btn--ghost {
  background: var(--about-ghost);
  color: var(--about-accent-dark);
  border-color: rgba(91, 108, 255, 0.22);
  box-shadow: none;
}

.about__btn--ghost:hover {
  background: rgba(91, 108, 255, 0.16);
}

[data-about-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-about-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .about__layout {
    grid-template-columns: 100%;
  }

  .about__sidebar {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .about__card--sidebar {
    padding: 26px;
  }
}

@media (max-width: 960px) {
  .about__hero {
    padding: 90px 0 64px;
  }

  .about__hero-grid {
    grid-template-columns: 1fr;
  }

  .about__meta {
    padding: 18px;
  }

  .about__highlights {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 720px) {
  .about__container {
    padding: 0 20px;
  }

  .about__breadcrumb {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__card {
    padding: 24px;
  }

  .about__section-title {
    font-size: 20px;
  }

  .about__section-index {
    width: 40px;
    height: 40px;
  }

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

@media (prefers-reduced-motion: reduce) {
  [data-about-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about__btn,
  .about__breadcrumb a {
    transition: none;
  }
}
