.page-about {
  --about-accent-glow: rgba(255, 107, 53, .30);
  --about-gold-glow: rgba(255, 215, 0, .14);
  --about-section-pad: 64px;
  --about-card-radius: 28px;
  --about-grid-gap: 32px;
  background: var(--light);
  overflow-x: hidden;
}

.page-about .about-hero {
  position: relative;
  padding: 136px 0 64px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 72%, #0c2148 100%);
  color: #fff;
  overflow: hidden;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 107, 53, .32) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent 0, transparent 55px, rgba(255, 255, 255, .03) 55px, rgba(255, 255, 255, .03) 56px),
    repeating-linear-gradient(90deg, transparent 0, transparent 55px, rgba(255, 255, 255, .03) 55px, rgba(255, 255, 255, .03) 56px);
  pointer-events: none;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--light);
  transform: skewY(-2deg);
  transform-origin: left center;
  pointer-events: none;
}

.page-about .about-hero .container {
  position: relative;
  z-index: 1;
}

.page-about .about-hero .breadcrumbs {
  margin-bottom: 48px;
}

.page-about .about-hero .breadcrumb-link,
.page-about .about-hero .breadcrumb-current {
  color: rgba(255, 255, 255, .70);
}

.page-about .about-hero .breadcrumb-link:hover {
  color: var(--gold);
}

.page-about .about-hero-grid {
  display: grid;
  gap: 32px;
}

.page-about .about-hero-main {
  max-width: 680px;
}

.page-about .about-hero .section-kicker {
  color: var(--gold);
}

.page-about .about-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.16;
  margin: 16px 0 20px;
  letter-spacing: .02em;
  font-weight: 700;
}

.page-about .about-hero-desc {
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.page-about .about-hero-profile {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 215, 0, .25);
  border-radius: var(--about-card-radius);
  padding: 24px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-about .about-profile-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.page-about .about-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.page-about .about-profile-row:first-child {
  padding-top: 0;
}

.page-about .about-profile-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-about .about-profile-row dt {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  margin: 0;
}

.page-about .about-profile-row dd {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--gold);
  font-size: .92rem;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.page-about .section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.page-about .section-head-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-about .section-index {
  font-family: var(--font-data);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-about .section-kicker {
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.page-about .section-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

.page-about .section-desc {
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 6px 0 0;
  font-size: .95rem;
}

.page-about .section-head.light .section-title {
  color: #fff;
}

.page-about .section-head.light .section-desc {
  color: rgba(255, 255, 255, .72);
}

.page-about .section-head.light .section-kicker {
  color: var(--gold);
}

.page-about .about-split-grid {
  display: grid;
  gap: var(--about-grid-gap);
  align-items: center;
}

.page-about .about-brand-story {
  padding: var(--about-section-pad) 0;
  background: var(--light);
}

.page-about .about-story-copy {
  background: #fff;
  border-radius: var(--about-card-radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.page-about .about-story-copy p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 18px;
  font-size: .96rem;
}

.page-about .about-story-copy p:last-child {
  margin-bottom: 0;
}

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

.page-about .about-journey {
  padding: var(--about-section-pad) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.page-about .about-journey-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-about .about-journey-copy p {
  color: var(--text);
  line-height: 1.78;
  margin: 0;
  font-size: .96rem;
}

.page-about .about-journey-quote {
  background: var(--light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 6px;
  position: relative;
}

.page-about .quote-mark {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  color: var(--orange);
  line-height: .6;
  display: block;
  margin-bottom: 8px;
}

.page-about .about-journey-quote p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.6;
}

.page-about .about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--gold), var(--navy));
  border-radius: 2px;
}

.page-about .timeline-item {
  position: relative;
  padding-left: 48px;
}

.page-about .timeline-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .15);
}

.page-about .timeline-phase {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--pill);
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.page-about .timeline-item p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  font-size: .95rem;
}

.page-about .about-data-section {
  padding: var(--about-section-pad) 0 72px;
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.page-about .about-data-section::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--about-gold-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-about .about-data-section::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--light);
  transform: skewY(2deg);
  transform-origin: right center;
  pointer-events: none;
}

.page-about .about-data-section .container {
  position: relative;
  z-index: 1;
}

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

.page-about .stat-group {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}

.page-about .stat-group:hover {
  border-color: rgba(255, 107, 53, .6);
  transform: translateY(-2px);
}

.page-about .stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-about .stat-label {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  margin-top: 8px;
  line-height: 1.4;
}

.page-about .about-data-img {
  width: 100%;
  height: auto;
  border-radius: var(--about-card-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 215, 0, .25);
  display: block;
}

.page-about .about-data-note {
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  font-size: .95rem;
  margin: 32px 0 0;
  max-width: 720px;
}

.page-about .about-service {
  padding: var(--about-section-pad) 0;
  background: var(--light);
}

.page-about .about-service-grid {
  display: grid;
  gap: 20px;
}

.page-about .service-card {
  background: #fff;
  border-radius: var(--about-card-radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.page-about .service-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  border-radius: 0 var(--radius) 0 0;
  opacity: .45;
  pointer-events: none;
}

.page-about .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 68, .1);
}

.page-about .service-code {
  font-family: var(--font-data);
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 107, 53, .10);
  padding: 4px 12px;
  border-radius: var(--pill);
  display: inline-block;
  margin-bottom: 18px;
}

.page-about .service-title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.page-about .service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: .93rem;
  margin: 0;
}

.page-about .about-milestone {
  padding: var(--about-section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.page-about .about-milestone::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--about-accent-glow), transparent 70%);
  pointer-events: none;
}

.page-about .about-milestone .container {
  position: relative;
  z-index: 1;
}

.page-about .about-milestone-list {
  display: grid;
  gap: 14px;
}

.page-about .milestone-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  align-items: flex-start;
  transition: background .3s ease, border-color .3s ease;
}

.page-about .milestone-item:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 215, 0, .35);
}

.page-about .milestone-tag {
  font-family: var(--font-data);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: var(--pill);
  white-space: nowrap;
  align-self: center;
}

.page-about .milestone-item p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
  font-size: .92rem;
  margin: 0;
}

.page-about .about-milestone-img {
  width: 100%;
  height: auto;
  border-radius: var(--about-card-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .12);
  display: block;
}

.page-about .about-explore {
  padding: var(--about-section-pad) 0;
  background: var(--light);
}

.page-about .about-explore-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 12px;
}

.page-about .about-explore-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 0 32px;
  font-size: .95rem;
}

.page-about .about-explore-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.page-about .about-explore-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 16px 24px;
  border-radius: var(--pill);
  border: 1px solid var(--border);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .2s ease;
}

.page-about .about-explore-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .page-about {
    --about-section-pad: 96px;
    --about-grid-gap: 48px;
  }

  .page-about .about-hero {
    padding: 184px 0 96px;
  }

  .page-about .about-hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: end;
  }

  .page-about .about-hero-title {
    font-size: 3.2rem;
  }

  .page-about .about-hero-profile {
    padding: 28px 30px;
  }

  .page-about .section-head {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .page-about .section-index {
    font-size: 2.6rem;
    min-width: 56px;
  }

  .page-about .about-split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-about .about-story-copy {
    padding: 40px;
  }

  .page-about .about-journey-grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
  }

  .page-about .about-journey-copy {
    position: sticky;
    top: 140px;
  }

  .page-about .about-data-stats {
    gap: 20px;
  }

  .page-about .stat-group {
    padding: 28px 20px;
  }

  .page-about .stat-num {
    font-size: 2rem;
  }

  .page-about .about-service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .page-about .about-milestone-list {
    gap: 18px;
  }

  .page-about .milestone-item {
    padding: 20px 22px;
  }

  .page-about .about-explore-links {
    grid-template-columns: repeat(4, 1fr);
    max-width: 760px;
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .page-about .about-hero-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .page-about .about-story-grid {
    grid-template-columns: 1.1fr .9fr;
  }

  .page-about .about-data-grid {
    grid-template-columns: 1fr 1fr;
  }
}
