.page-about {
  --about-hero-deep: #080F24;
  --about-orange-soft: rgba(255, 77, 0, 0.14);
  --about-cyan-soft: rgba(0, 229, 255, 0.12);
  --about-lime-soft: rgba(57, 211, 83, 0.16);
  --about-purple-soft: rgba(122, 0, 230, 0.18);
  --about-text-soft: rgba(255, 255, 255, 0.65);
  --about-line-soft: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

.page-about .page-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5.2vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-top: 0;
  margin-bottom: 18px;
}

.page-about .page-desc {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 0 28px;
}

.page-about .section-head {
  margin-bottom: 34px;
}

.page-about .section-kicker {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--color-accent);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.page-about .section-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.25;
  margin: 0;
}

.page-about .section-desc {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
  margin-top: 10px;
}

/* ---------- Hero ---------- */
.page-about-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 56px;
  background: linear-gradient(180deg, var(--about-hero-deep) 0%, var(--color-bg) 55%, var(--color-bg-deep) 100%);
}

.page-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 229, 255, 0.13), transparent 42%),
    radial-gradient(circle at 18% 92%, rgba(255, 77, 0, 0.12), transparent 44%),
    radial-gradient(circle at 50% 40%, rgba(122, 0, 230, 0.08), transparent 55%);
  pointer-events: none;
}

.page-about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-purple) 42%, var(--color-electric) 78%, var(--color-lime) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.page-about-hero .crumb {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.page-about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-about-hero-copy {
  max-width: 720px;
}

.page-about-hero-copy .badge {
  margin-bottom: 16px;
}

.page-about-hero-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
}

.hero-stat-card {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 16px 14px;
  backdrop-filter: blur(4px);
}

.hero-stat-card::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.16;
  pointer-events: none;
}

.hero-stat-card:nth-child(2)::after {
  background: var(--color-electric);
}

.hero-stat-card:nth-child(3)::after {
  background: var(--color-purple);
}

.hero-stat-card:nth-child(4)::after {
  background: var(--color-lime);
}

.hero-stat-card:first-child {
  transform: rotate(-1deg);
}

.hero-stat-card:last-child {
  transform: rotate(1.5deg);
}

.hero-stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-stat-card:nth-child(1) .hero-stat-num {
  color: var(--color-accent);
}

.hero-stat-card:nth-child(2) .hero-stat-num {
  color: var(--color-electric);
}

.hero-stat-card:nth-child(4) .hero-stat-num {
  color: var(--color-lime);
}

.hero-stat-label {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-muted);
}

/* ---------- Origin ---------- */
.page-about-origin {
  position: relative;
  padding: 68px 0 64px;
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(11, 29, 58, 0.92) 100%);
  overflow: hidden;
}

.page-about-origin::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--color-purple);
  opacity: 0.14;
  filter: blur(90px);
  pointer-events: none;
}

.origin-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.origin-media {
  position: relative;
}

.origin-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px 24px 24px 6px;
  border: 1px solid var(--color-line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.origin-copy p {
  color: var(--about-text-soft);
  line-height: 1.75;
  margin: 0 0 16px;
  font-size: 15px;
}

.origin-lead {
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-weight: 600;
  color: var(--color-text) !important;
}

.origin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* ---------- Journey / Timeline ---------- */
.page-about-journey {
  position: relative;
  padding: 68px 0 76px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, 0.014) 18px 36px),
    var(--color-bg);
  overflow: hidden;
}

.page-about-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-purple), var(--color-electric));
  opacity: 0.75;
  pointer-events: none;
}

.timeline {
  margin-top: 42px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 16px 1fr;
  gap: 4px 12px;
  align-items: start;
  margin-bottom: 18px;
  position: relative;
}

.timeline-year {
  font-family: var(--font-data);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
  padding-top: 6px;
  padding-right: 4px;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--color-electric);
}

.timeline-rail {
  position: relative;
  height: 100%;
  min-height: 74px;
  display: flex;
  justify-content: center;
}

.timeline-rail::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: -19px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.5), rgba(0, 229, 255, 0.18));
}

.timeline-item:last-child .timeline-rail::after {
  display: none;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.18);
}

.timeline-item:nth-child(even) .timeline-dot {
  background: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.16);
}

.timeline-card {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 18px 18px 18px 4px;
  padding: 18px 18px 16px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), var(--color-electric));
  opacity: 0.65;
}

.timeline-card::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-electric);
  border-bottom: 2px solid var(--color-electric);
  opacity: 0.4;
  transition: opacity var(--dur) var(--ease);
}

.page-about .timeline-item[data-reveal].is-revealed .timeline-card {
  border-color: var(--color-line-strong);
  background: rgba(255, 255, 255, 0.095);
}

.page-about .timeline-item[data-reveal].is-revealed .timeline-card::after {
  opacity: 1;
}

.timeline-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--about-orange-soft);
  color: #FF8A5C;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.timeline-item:nth-child(even) .timeline-tag {
  background: var(--about-cyan-soft);
  color: #6EEFFF;
}

.timeline-title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--font-headline);
}

.timeline-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.journey-more {
  margin-top: 32px;
  text-align: center;
}

/* ---------- Team ---------- */
.page-about-team {
  position: relative;
  padding: 68px 0 64px;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg) 100%);
  overflow: hidden;
}

.page-about-team::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--color-electric);
  opacity: 0.06;
  filter: blur(70px);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.team-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px 22px 6px 22px;
  border: 1px solid var(--color-line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-copy .team-lead {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 14px;
}

.team-copy > p {
  color: var(--about-text-soft);
  line-height: 1.75;
  font-size: 15px;
  margin: 0 0 16px;
}

.team-roles {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.team-role {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 16px 16px 14px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.team-role:hover {
  transform: translateY(-2px);
  border-color: var(--color-line-strong);
}

.team-role-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 16px;
  color: var(--color-electric);
  background: var(--about-cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.26);
}

.team-role-title {
  margin: 12px 0 6px;
  font-size: 16px;
  font-family: var(--font-headline);
}

.team-role p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
}

.team-contact-link {
  margin-top: 18px;
}

.team-contact-link a {
  color: var(--color-electric);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Accreditation ---------- */
.page-about-accred {
  position: relative;
  padding: 68px 0 72px;
  background:
    radial-gradient(circle at 10% 20%, rgba(122, 0, 230, 0.1), transparent 38%),
    var(--color-bg-dark);
  overflow: hidden;
}

.accred-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.accred-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accred-visual img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: 26px 26px 26px 6px;
  border: 1px solid var(--color-line);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.accred-visual-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.3px;
}

.accred-list {
  display: grid;
  gap: 16px;
}

.accred-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 20px 18px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.accred-item:hover,
.accred-item:focus-within {
  transform: translateX(4px);
  border-color: var(--color-line-strong);
  background: rgba(255, 255, 255, 0.09);
}

.accred-item-icon-wrap {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--about-cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: var(--color-electric);
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: default;
}

.accred-item:nth-child(1) .accred-item-icon-wrap {
  background: var(--about-orange-soft);
  border-color: rgba(255, 77, 0, 0.26);
  color: #FF8A5C;
}

.accred-item:nth-child(3) .accred-item-icon-wrap {
  background: var(--about-lime-soft);
  border-color: rgba(57, 211, 83, 0.28);
  color: var(--color-lime);
}

.accred-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

.accred-item-body .accred-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-family: var(--font-headline);
}

.accred-item-body .accred-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
}

/* ---------- CTA ---------- */
.page-about-cta {
  padding: 56px 0 84px;
  background: var(--color-bg-dark);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--color-line);
  padding: 38px 22px 36px;
  background: linear-gradient(135deg, rgba(122, 0, 230, 0.2), rgba(0, 229, 255, 0.08)), var(--color-bg-deep);
}

.cta-inner::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--color-purple);
  opacity: 0.24;
  filter: blur(90px);
  pointer-events: none;
}

.cta-inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-purple), var(--color-electric), var(--color-lime));
  opacity: 0.9;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-title {
  margin: 0 0 10px;
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.35;
}

.cta-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .team-roles {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .cta-inner {
    padding: 46px 32px;
  }

  .cta-title {
    font-size: 30px;
  }
}

@media (min-width: 860px) {
  .page-about-hero {
    padding: 52px 0 72px;
  }

  .page-about-hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: center;
  }

  .page-about-hero-stats {
    gap: 14px;
  }

  .hero-stat-card {
    padding: 20px 16px;
  }

  .hero-stat-num {
    font-size: 36px;
  }

  .origin-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .page-about-origin,
  .page-about-journey,
  .page-about-team,
  .page-about-accred {
    padding: 88px 0;
  }

  .timeline-item {
    grid-template-columns: 140px 40px minmax(0, 1fr);
    gap: 6px 22px;
    margin-bottom: 22px;
  }

  .timeline-year {
    font-size: 34px;
  }

  .timeline-card {
    padding: 20px 22px 18px;
  }

  .team-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
  }

  .accred-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 52px;
    align-items: center;
  }

  .accred-item {
    padding: 22px 20px;
  }

  .cta-inner {
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .cta-actions {
    margin-top: 0;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .accred-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    width: max-content;
    max-width: 220px;
    margin-top: 0;
    background: var(--color-bg-deep);
    border: 1px solid var(--color-line);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 6;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
  }

  .accred-item-icon-wrap:hover .accred-tip,
  .accred-item-icon-wrap:focus-visible .accred-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .page-about .timeline-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-line-strong);
  }
}
