.page-about {
  --about-line: 2px;
  --about-hero-pad: 72px;
  --about-card-gap: 16px;
  --about-radius-lg: 14px;
}

.page-about .about-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20, 200, 204, 0.09) 25%, transparent 25.5%) 0 0 / 28px 28px,
    linear-gradient(225deg, rgba(124, 92, 255, 0.07) 25%, transparent 25.5%) 0 0 / 28px 28px,
    var(--night);
  color: #fff;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
  overflow: hidden;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -30px;
  width: 46%;
  height: 72px;
  background: var(--orange);
  transform: skewX(-14deg);
  opacity: 0.22;
  pointer-events: none;
}

.page-about .about-hero__grid {
  display: grid;
  gap: 44px;
  position: relative;
  z-index: 2;
}

.page-about .about-hero .breadcrumbs {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.page-about .about-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .about-hero .breadcrumbs a:hover {
  color: var(--orange);
}

.page-about .about-hero .breadcrumbs__sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.35);
}

.page-about .about-hero .section-eyebrow {
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-about .about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.14;
  margin: 0 0 18px;
  max-width: 16em;
}

.page-about .about-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 40em;
  margin-bottom: 28px;
}

.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.page-about .about-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.page-about .about-hero .btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.page-about .about-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.page-about .about-hero__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0;
  backdrop-filter: blur(4px);
}

.page-about .about-hero__stat dt {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.08em;
}

.page-about .about-hero__stat dd {
  font-family: var(--font-num);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1;
}

.page-about .about-hero__visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.page-about .about-hero__rings {
  width: min(360px, 88%);
  height: auto;
  aspect-ratio: 1;
  display: block;
}

.page-about .about-ring {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about .about-ring--outer {
  stroke: rgba(255, 90, 31, 0.72);
  stroke-dasharray: 691.15;
  stroke-dashoffset: 138.23;
}

.page-about .about-ring--middle {
  stroke: rgba(124, 92, 255, 0.72);
  stroke-dasharray: 515.22;
  stroke-dashoffset: 180.33;
}

.page-about .about-ring--inner {
  stroke: rgba(20, 200, 204, 0.82);
  stroke-dasharray: 339.29;
  stroke-dashoffset: 33.93;
}

.page-about .about-hero__visual.reveal-pending .about-ring--outer {
  stroke-dashoffset: 691.15;
}

.page-about .about-hero__visual.reveal-pending .about-ring--middle {
  stroke-dashoffset: 515.22;
}

.page-about .about-hero__visual.reveal-pending .about-ring--inner {
  stroke-dashoffset: 339.29;
}

.page-about .about-hero__ring-label {
  position: absolute;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: rgba(10, 26, 51, 0.76);
  padding: 7px 13px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.25;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.page-about .about-hero__ring-label--top {
  top: 4%;
  left: 16%;
}

.page-about .about-hero__ring-label--right {
  top: 46%;
  right: 2%;
}

.page-about .about-hero__ring-label--bottom {
  bottom: 5%;
  left: 16%;
}

.page-about .about-hero__ring-label--center {
  background: transparent;
  border: none;
  padding: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.page-about .about-hero__ring-label--center small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
}

.page-about .about-hero__hex {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 14%;
  right: 10%;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  opacity: 0.32;
  pointer-events: none;
}

.page-about .about-hero .orient-note {
  position: absolute;
  right: 2%;
  top: 30%;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}

.page-about .about-origin {
  background: var(--card);
  position: relative;
  padding: 72px 0 64px;
}

.page-about .about-origin::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--violet), var(--cyan));
}

.page-about .about-origin__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-about .about-origin__text .section-eyebrow {
  color: var(--violet);
}

.page-about .about-origin__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.28;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 20em;
}

.page-about .about-origin__text p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.page-about .about-origin__link {
  display: inline-block;
  margin-top: 10px;
  color: var(--violet);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.page-about .about-origin__link:hover {
  border-color: var(--violet);
}

.page-about .about-origin__media {
  position: relative;
}

.page-about .about-origin__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--about-radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.page-about .about-origin__caption {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
}

.page-about .about-data {
  background: var(--paper);
  padding: 72px 0;
  position: relative;
}

.page-about .about-data .section-head {
  display: grid;
  gap: 16px;
}

.page-about .about-data .section-eyebrow {
  color: var(--orange);
}

.page-about .about-data h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.page-about .about-data .section-intro {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
  max-width: 52em;
}

.page-about .about-data__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--about-card-gap);
}

.page-about .about-data__cell {
  grid-column: span 12;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--card);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-about .about-data__cell > * {
  position: relative;
  z-index: 1;
}

.page-about .about-data__cell--sport {
  border-top: 4px solid var(--orange);
}

.page-about .about-data__cell--league {
  border-top: 4px solid var(--violet);
}

.page-about .about-data__cell--season {
  border-top: 4px solid var(--cyan);
}

.page-about .about-data__cell--records {
  background: var(--night);
  border-left: 5px solid var(--orange);
}

.page-about .about-data__cell--records .display-stat__value,
.page-about .about-data__cell--records .display-stat__label {
  color: #fff;
}

.page-about .about-data__cell--install {
  border-bottom: 4px solid var(--cyan);
}

.page-about .about-data__cell--calls {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 90, 31, 0.14), transparent 42%),
    var(--card);
  border: 1px solid var(--line);
}

.page-about .about-data__calls-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.page-about .about-data__cell .display-stat__value {
  font-family: var(--font-num);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  display: block;
}

.page-about .about-data__cell .display-stat__label {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.page-about .about-data__desc {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-about .about-data__cell--calls .about-data__desc {
  max-width: 34em;
}

.page-about .about-review {
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.13) 0%, transparent 38%),
    var(--night-deep);
  color: #fff;
  padding: 76px 0;
  position: relative;
}

.page-about .about-review::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 180px;
  background: linear-gradient(180deg, transparent, rgba(20, 200, 204, 0.1), transparent);
  transform: skewX(-10deg);
  pointer-events: none;
}

.page-about .about-review .section-head {
  display: grid;
  gap: 16px;
}

.page-about .about-review .section-eyebrow {
  color: var(--cyan);
}

.page-about .about-review h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0;
}

.page-about .about-review .section-intro {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.94rem;
  max-width: 48em;
}

.page-about .about-review__steps {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.page-about .about-review__step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-about .about-review__step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.55);
}

.page-about .about-review__num {
  font-family: var(--font-num);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.page-about .about-review__step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.page-about .about-review__step p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 0;
}

.page-about .about-review__tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  background: rgba(20, 200, 204, 0.16);
  border-radius: 20px;
  color: var(--cyan);
  font-weight: 600;
}

.page-about .about-review__media {
  margin-top: 32px;
  position: relative;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
}

.page-about .about-review__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--about-radius-lg);
}

.page-about .about-review__caption {
  display: block;
  margin-top: 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-align: right;
}

.page-about .about-timeline {
  background: var(--card);
  padding: 76px 0;
}

.page-about .about-timeline .section-head {
  display: grid;
  gap: 16px;
}

.page-about .about-timeline .section-eyebrow {
  color: var(--violet);
}

.page-about .about-timeline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.page-about .about-timeline .section-intro {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 46em;
}

.page-about .about-timeline__layout {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.page-about .about-timeline__list {
  position: relative;
  padding-left: 24px;
}

.page-about .about-timeline__list::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--violet), var(--cyan));
  border-radius: 2px;
}

.page-about .about-timeline__item {
  position: relative;
  padding-bottom: 8px;
}

.page-about .about-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--orange);
  box-sizing: border-box;
}

.page-about .about-timeline__year {
  font-family: var(--font-num);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.page-about .about-timeline__toggle {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

.page-about .about-timeline__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.page-about .about-timeline__toggle:hover .about-timeline__title {
  color: var(--orange);
}

.page-about .about-timeline__sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 400;
}

.page-about .about-timeline__panel {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.page-about .about-timeline__panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.9rem;
  margin: 10px 0 0;
  max-width: 48em;
}

.page-about .about-timeline__media {
  position: relative;
}

.page-about .about-timeline__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--about-radius-lg);
  box-shadow: var(--shadow-md);
}

.page-about .about-timeline__note {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
}

.page-about .about-connect {
  background: var(--paper);
  padding: 56px 0 72px;
}

.page-about .about-connect__panel {
  border-radius: var(--about-radius-lg);
  padding: 28px 24px;
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-about .about-connect__text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}

.page-about .about-connect__text p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.page-about .about-connect__trust {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-left: 3px solid var(--cyan);
  padding-left: 12px;
  display: inline-block;
}

.page-about .about-connect__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 540px) {
  .page-about .about-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-about .about-data__cell {
    grid-column: span 6;
  }
}

@media (min-width: 720px) {
  .page-about .about-review__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-about .about-origin__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .page-about .about-connect__panel {
    grid-template-columns: 1fr auto;
    padding: 36px 36px;
  }
}

@media (min-width: 980px) {
  .page-about .about-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 56px;
  }

  .page-about .about-hero {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 88px;
  }

  .page-about .about-hero__visual {
    min-height: 400px;
  }

  .page-about .about-hero__rings {
    width: min(430px, 100%);
  }

  .page-about .about-hero__ring-label {
    font-size: 1.1rem;
  }

  .page-about .about-hero__ring-label--top {
    top: 6%;
    left: 20%;
  }

  .page-about .about-hero__ring-label--right {
    right: 4%;
  }

  .page-about .about-hero__ring-label--bottom {
    bottom: 7%;
    left: 20%;
  }

  .page-about .about-data .section-head {
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
  }

  .page-about .about-data__cell--sport,
  .page-about .about-data__cell--league,
  .page-about .about-data__cell--season {
    grid-column: span 4;
  }

  .page-about .about-data__cell--records,
  .page-about .about-data__cell--install {
    grid-column: span 6;
  }

  .page-about .about-data__cell--calls {
    grid-column: span 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 36px;
  }

  .page-about .about-data__calls-inner {
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 16px;
  }

  .page-about .about-data__cell--calls .about-data__desc {
    margin: 0;
  }

  .page-about .about-review .section-head {
    grid-template-columns: 1fr 0.78fr;
    align-items: end;
  }

  .page-about .about-review__media {
    margin-top: 40px;
  }

  .page-about .about-timeline .section-head {
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
  }

  .page-about .about-timeline__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
  }

  .page-about .about-timeline__img {
    height: 520px;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1200px) {
  .page-about .about-origin {
    padding: 88px 0;
  }

  .page-about .about-data,
  .page-about .about-review,
  .page-about .about-timeline {
    padding: 96px 0;
  }

  .page-about .about-data__grid {
    gap: 20px;
  }
}
