.page-about {
  --about-card-bg: #0D2A4A;
  --about-card-line: #24466B;
  --about-glow: rgba(255, 107, 0, 0.16);
  --about-glow-cyan: rgba(0, 194, 209, 0.14);
  background: #0A1E3C;
  color: #F5F7FA;
  overflow-x: clip;
}
.page-about img {
  max-width: 100%;
  height: auto;
}
.page-about a {
  color: #F5F7FA;
  text-decoration: none;
}
.page-about a:hover {
  color: #FF6B00;
}

/* ===== HERO ===== */
.page-about__hero {
  position: relative;
  padding: clamp(44px, 8vw, 88px) 0 clamp(56px, 9vw, 96px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  background:
    radial-gradient(circle at 84% 18%, var(--about-glow), transparent 44%),
    radial-gradient(circle at 12% 80%, var(--about-glow-cyan), transparent 46%),
    linear-gradient(135deg, #0E3458 0%, #0A1E3C 58%, #0D2A4A 100%);
}
.page-about__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.page-about__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-about__hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-about__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #A3B8CC;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.page-about__crumb a {
  color: #A3B8CC;
  transition: color 0.25s var(--ease-power);
}
.page-about__crumb a:hover {
  color: #FF6B00;
}
.page-about__crumb-sep {
  color: #24466B;
}
.page-about__crumb-current {
  color: #F5F7FA;
}
.page-about h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.page-about__title-main {
  display: block;
  color: #F5F7FA;
}
.page-about__title-divider {
  color: #FF6B00;
}
.page-about__title-sub {
  display: block;
  color: #FF6B00;
}
.page-about__hero-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.14rem);
  line-height: 1.8;
  color: #A3B8CC;
  max-width: 34em;
  margin: 0 0 28px;
}
.page-about__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.page-about__hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid #24466B;
}
.page-about__hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-about__hero-metrics strong {
  font-size: 1.4rem;
  line-height: 1;
  color: #00C2D1;
}
.page-about__hero-metrics span {
  font-size: 0.78rem;
  color: #A3B8CC;
}
.page-about__hero-art {
  position: relative;
  min-height: 260px;
}
.page-about__hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 460px;
  margin: 0 auto;
}
.page-about__hero-deco {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.page-about__hero-deco--one {
  width: 120px;
  height: 120px;
  right: -40px;
  top: 8%;
  background: rgba(255, 107, 0, 0.12);
}
.page-about__hero-deco--two {
  width: 76px;
  height: 76px;
  left: -20px;
  bottom: 10%;
  background: rgba(0, 194, 209, 0.12);
}

/* ===== TOC ===== */
.page-about__toc {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-about__toc::-webkit-scrollbar {
  display: none;
}
.page-about__toc-label {
  flex: 0 0 auto;
  font-size: 0.74rem;
  color: #A3B8CC;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-right: 4px;
}
.page-about__toc-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid #24466B;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #F5F7FA;
  background: rgba(13, 42, 74, 0.6);
  transition: border-color 0.25s var(--ease-power), color 0.25s var(--ease-power), transform 0.25s var(--ease-power);
}
.page-about__toc-link i {
  font-style: normal;
  font-family: var(--font-mono);
  color: #FF6B00;
  font-size: 0.74rem;
}
.page-about__toc-link:hover {
  border-color: #FF6B00;
  color: #FF6B00;
  transform: translateY(-2px);
}

/* ===== SECTION BASE ===== */
.page-about__section {
  padding: clamp(56px, 9vw, 96px) 0;
  scroll-margin-top: 24px;
}
.page-about__section--alt {
  background: #0D2A4A;
}
.page-about__section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.page-about__section-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 0, 0.65);
  display: block;
}
.page-about__section-heading {
  padding-top: 2px;
}
.page-about__section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin: 0;
}
.page-about__section-sub {
  margin: 6px 0 0;
  color: #A3B8CC;
  font-size: 0.92rem;
}
.page-about__section-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: #A3B8CC;
  max-width: 48em;
  margin: 0 0 30px;
  border-left: 3px solid #FF6B00;
  padding-left: 16px;
}

/* ===== ORIGIN ===== */
.page-about__origin-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-about__origin-copy p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #C9D6E3;
  margin: 0 0 16px;
}
.page-about__origin-copy strong {
  color: #FF6B00;
}
.page-about__origin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #24466B;
}
.page-about__origin-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #00C2D1;
  transition: color 0.25s var(--ease-power), gap 0.25s var(--ease-power);
}
.page-about__origin-links a::after {
  content: "→";
  font-family: var(--font-mono);
}
.page-about__origin-links a:hover {
  color: #FF6B00;
  gap: 10px;
}
.page-about__origin-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #24466B;
  background: #0D2A4A;
}
.page-about__origin-media img {
  display: block;
  width: 100%;
}

/* ===== COVERAGE ===== */
.page-about__coverage-layout {
  display: grid;
  gap: 28px;
}
.page-about__coverage-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #24466B;
  background: #0D2A4A;
  min-height: 220px;
}
.page-about__coverage-map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-about__map-marker {
  position: absolute;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #F5F7FA;
  background: rgba(10, 30, 60, 0.9);
  border: 1px solid rgba(255, 107, 0, 0.7);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(10, 30, 60, 0.5);
  transition: transform 0.25s var(--ease-power), box-shadow 0.25s var(--ease-power), border-color 0.25s var(--ease-power);
  white-space: nowrap;
}
.page-about__map-marker:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
  border-color: #FF6B00;
}
.page-about__map-marker--epl {
  left: 30%;
  top: 26%;
}
.page-about__map-marker--ligue1 {
  left: 44%;
  top: 20%;
}
.page-about__map-marker--bundesliga {
  left: 54%;
  top: 30%;
}
.page-about__map-marker--laliga {
  left: 26%;
  top: 56%;
}
.page-about__map-marker--seriea {
  left: 52%;
  top: 56%;
}
.page-about__leagues {
  display: grid;
  gap: 12px;
}
.page-about__league-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(10, 30, 60, 0.5);
  border: 1px solid #24466B;
  border-left: 3px solid #FF6B00;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease-power), border-color 0.25s var(--ease-power), transform 0.25s var(--ease-power);
}
.page-about__league-card:hover {
  background: rgba(14, 52, 88, 0.55);
  border-color: #FF6B00;
  transform: translateX(4px);
}
.page-about__league-tag {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: #FF6B00;
  letter-spacing: 0.02em;
}
.page-about__league-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #A3B8CC;
}
.page-about__coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.page-about__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  background: #0D2A4A;
  border: 1px solid #24466B;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: #A3B8CC;
}
.page-about__stat-item .mono {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1;
  color: #00C2D1;
  display: block;
  margin-bottom: 6px;
}

/* ===== UPDATE ===== */
.page-about__update-layout {
  display: grid;
  gap: 28px;
}
.page-about__update-flow {
  display: grid;
  gap: 0;
}
.page-about__update-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 0 0 28px 0;
  position: relative;
}
.page-about__update-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #FF6B00, #24466B);
}
.page-about__update-step:last-child {
  padding-bottom: 0;
}
.page-about__update-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: #FF6B00;
  background: rgba(255, 107, 0, 0.08);
  border: 2px solid #FF6B00;
  z-index: 1;
}
.page-about__update-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 2px 0 6px;
}
.page-about__update-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #A3B8CC;
}
.page-about__update-card {
  position: relative;
  padding: 26px 24px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(0, 194, 209, 0.06)),
    #0D2A4A;
  border: 1px solid #24466B;
  border-top: 3px solid #FF6B00;
  border-radius: var(--radius);
  overflow: hidden;
}
.page-about__update-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}
.page-about__update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 107, 0, 0.14);
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FF6B00;
}
.page-about__update-badge i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.24);
}
.page-about__update-card h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  margin: 16px 0 10px;
}
.page-about__update-card p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #A3B8CC;
}
.page-about__update-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== TEAM ===== */
.page-about__team-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-about__team-copy > p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #C9D6E3;
  margin: 0 0 22px;
}
.page-about__team-cards {
  display: grid;
  gap: 14px;
}
.page-about__team-card {
  padding: 20px 18px;
  background: rgba(10, 30, 60, 0.55);
  border: 1px solid #24466B;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}
.page-about__team-count {
  font-size: 2.2rem;
  line-height: 1;
  color: #FF6B00;
  grid-row: span 2;
}
.page-about__team-card h3 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  margin: 2px 0 8px;
}
.page-about__team-card p {
  margin: 0;
  grid-column: 2;
  font-size: 0.86rem;
  line-height: 1.75;
  color: #A3B8CC;
}
.page-about__team-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 3px solid #00C2D1;
  background: rgba(0, 194, 209, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.page-about__team-note p {
  margin: 0 0 8px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #A3B8CC;
}
.page-about__team-note a {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #00C2D1;
}
.page-about__team-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #24466B;
  background: #0D2A4A;
}
.page-about__team-media img {
  display: block;
  width: 100%;
}
.page-about__team-chart {
  padding: 16px 14px 6px;
  background: rgba(10, 30, 60, 0.65);
}
.page-about__team-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== MILESTONE ===== */
.page-about__timeline-wrap {
  max-width: 780px;
}
.page-about__timeline {
  position: relative;
  padding-left: 36px;
}
.page-about__timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, #FF6B00 0%, #00C2D1 70%, transparent 100%);
}
.page-about__milestone {
  position: relative;
  padding: 0 0 34px 0;
}
.page-about__milestone:last-child {
  padding-bottom: 0;
}
.page-about__milestone::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0A1E3C;
  border: 3px solid #FF6B00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
.page-about__milestone-season {
  display: inline-block;
  padding: 5px 12px;
  background: #0D2A4A;
  border: 1px solid #24466B;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #00C2D1;
  margin-bottom: 10px;
}
.page-about__milestone-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 6px;
  color: #F5F7FA;
}
.page-about__milestone-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #A3B8CC;
  max-width: 34em;
}
.page-about__timeline .is-visible .page-about__milestone-body {
  opacity: 1;
  transform: translateY(0);
}
.page-about__milestone-body {
  opacity: 1;
  transform: none;
}

/* ===== CTA ===== */
.page-about__cta {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 107, 0, 0.18), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0, 194, 209, 0.12), transparent 36%),
    linear-gradient(135deg, #0E3458 0%, #0A1E3C 100%);
  border-top: 1px solid #24466B;
  clip-path: polygon(0 22px, 100% 0, 100% 100%, 0 100%);
}
.page-about__cta-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-about__cta-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FF6B00;
  margin: 0 0 10px;
}
.page-about__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 14px;
}
.page-about__cta p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #A3B8CC;
  max-width: 36em;
}
.page-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== TABLET ===== */
@media (min-width: 720px) {
  .page-about__hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .page-about__hero-art {
    min-height: 320px;
  }
  .page-about__coverage-layout {
    grid-template-columns: 1fr 0.86fr;
    align-items: stretch;
  }
  .page-about__leagues {
    gap: 10px;
  }
  .page-about__update-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
  }
  .page-about__update-card {
    position: sticky;
    top: 90px;
  }
  .page-about__team-layout {
    grid-template-columns: 1fr 0.92fr;
    gap: 36px;
  }
  .page-about__cta-inner {
    grid-template-columns: 1fr auto;
    gap: 36px;
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 1060px) {
  .page-about__hero-grid {
    gap: 56px;
  }
  .page-about__hero-art {
    min-height: 360px;
  }
  .page-about__origin-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .page-about__origin-copy p {
    font-size: 1rem;
  }
  .page-about__coverage-stats {
    gap: 14px;
    margin-top: 36px;
  }
  .page-about__league-card {
    padding: 16px 18px;
  }
  .page-about__team-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .page-about__team-card {
    display: block;
  }
  .page-about__team-count {
    display: block;
    margin-bottom: 8px;
  }
  .page-about__team-card h3 {
    margin: 0 0 8px;
  }
  .page-about__milestone-season {
    font-size: 0.82rem;
  }
  .page-about__milestone-body p {
    font-size: 0.92rem;
  }
}
