.page-about {
  --about-red: #E53935;
  --about-deep: #1A237E;
  --about-gold: #FFD54F;
  --about-dark: #0D0D0D;
  --about-grid-line: rgba(255, 255, 255, 0.06);
  overflow-x: hidden;
  color: var(--color-text);
}

.page-about .about-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + 56px) 0 68px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 213, 79, 0.16), transparent 44%),
    radial-gradient(circle at 12% 85%, rgba(229, 57, 53, 0.18), transparent 38%),
    linear-gradient(140deg, #1A237E 0%, #111A52 52%, #0D0D0D 100%);
  color: #ffffff;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--about-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--about-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 8px;
  background: linear-gradient(90deg, var(--about-red), var(--about-gold));
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-about .about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 36px 24px 0;
}

.page-about .about-breadcrumb {
  position: absolute;
  top: calc(var(--header-h) + 14px);
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 24px;
  z-index: 3;
}

.page-about .about-breadcrumb a,
.page-about .about-breadcrumb span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
}

.page-about .about-breadcrumb a:hover {
  color: #ffffff;
}

.page-about .about-breadcrumb .breadcrumb-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.page-about .about-hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--about-gold);
}

.page-about .about-hero-eyebrow span + span::before {
  content: "·";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.page-about .about-hero-title {
  margin: 0 0 22px;
  max-width: 880px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-wrap: balance;
}

.page-about .about-hero-lead {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.page-about .about-hero-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.page-about .about-hero-legend .legend-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.page-about .about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page-about .about-story {
  background: #ffffff;
  padding: 88px 0 84px;
}

.page-about .about-story .section-head,
.page-about .about-milestones .section-head,
.page-about .about-commitment .section-head {
  margin-bottom: 48px;
}

.page-about .about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-about .about-story-intro {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.5;
  color: var(--about-deep);
}

.page-about .about-story-copy p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a4a;
}

.page-about .about-story-btn {
  margin-top: 14px;
}

.page-about .about-story-media {
  position: relative;
  margin: 0;
}

.page-about .about-story-media::before {
  content: "01 · STORY";
  position: absolute;
  top: -14px;
  left: 16px;
  z-index: 1;
  background: #ffffff;
  padding: 2px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--about-red);
}

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

.page-about .about-milestones {
  background: var(--color-light);
  padding: 88px 0;
}

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

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--about-gold) 0%, var(--about-red) 60%, var(--about-deep) 100%);
  opacity: 0.5;
}

.page-about .about-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.page-about .about-timeline-item:last-child {
  margin-bottom: 0;
}

.page-about .about-timeline-marker {
  position: absolute;
  left: -72px;
  top: 4px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--about-gold);
  color: var(--about-deep);
  font-family: var(--font-heading);
  font-size: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-timeline-item:hover .about-timeline-marker {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(255, 213, 79, 0.18);
}

.page-about .about-timeline-card {
  position: relative;
  padding: 28px 28px 30px;
  background: #ffffff;
  border-radius: var(--radius);
  border-left: 4px solid var(--about-red);
  box-shadow: 0 2px 14px rgba(13, 13, 13, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-timeline-item:hover .about-timeline-card {
  border-left-color: var(--about-gold);
  box-shadow: 0 8px 28px rgba(13, 13, 13, 0.1);
}

.page-about .about-timeline-year {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--about-deep);
  color: var(--about-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-about .about-timeline-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.3;
  color: var(--about-dark);
}

.page-about .about-timeline-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a5a;
}

.page-about .about-timeline-media {
  margin-top: 18px;
}

.page-about .about-timeline-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.page-about .about-milestones-footer {
  margin-top: 44px;
  text-align: center;
  font-size: 14px;
  color: #5f6368;
}

.page-about .about-milestones-footer a {
  color: var(--about-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 57, 53, 0.4);
}

.page-about .about-commitment {
  position: relative;
  overflow: hidden;
  background: var(--about-dark);
  padding: 88px 0;
  color: #ffffff;
}

.page-about .about-commitment::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 60%;
  background: radial-gradient(circle at 70% 30%, rgba(229, 57, 53, 0.35), transparent 70%);
  pointer-events: none;
}

.page-about .about-commitment .section-index {
  color: var(--about-gold);
}

.page-about .about-commitment .section-title {
  color: #ffffff;
}

.page-about .about-commitment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-about .about-commitment-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.page-about .about-commitment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 213, 79, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.page-about .about-commitment-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-gold);
}

.page-about .about-commitment-num {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 64px);
  line-height: 1;
  color: #ffffff;
}

.page-about .about-commitment-num span {
  margin-left: 4px;
  font-size: 18px;
  color: var(--about-gold);
}

.page-about .about-commitment-title {
  margin: 14px 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

.page-about .about-commitment-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-about .about-commitment-media {
  margin: 40px 0 0;
}

.page-about .about-commitment-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.page-about .about-cta {
  margin-top: 44px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--about-gold);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.page-about .about-cta a {
  color: var(--about-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 213, 79, 0.5);
}

@media (min-width: 960px) {
  .page-about .about-hero-inner {
    padding-top: 48px;
  }

  .page-about .about-story-grid {
    grid-template-columns: 7fr 5fr;
    gap: 72px;
  }

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

@media (min-width: 900px) {
  .page-about .about-timeline {
    padding-left: 0;
  }

  .page-about .about-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-about .about-timeline-item {
    width: calc(50% - 72px);
    margin-left: 0;
    text-align: right;
  }

  .page-about .about-timeline-item:nth-child(even) {
    margin-left: calc(50% + 72px);
    text-align: left;
  }

  .page-about .about-timeline-marker {
    left: auto;
    right: -26px;
  }

  .page-about .about-timeline-item:nth-child(even) .about-timeline-marker {
    right: auto;
    left: -26px;
  }

  .page-about .about-timeline-card {
    border-left: none;
    border-right: 4px solid var(--about-red);
  }

  .page-about .about-timeline-item:nth-child(even) .about-timeline-card {
    border-right: none;
    border-left: 4px solid var(--about-red);
  }

  .page-about .about-timeline-item:hover .about-timeline-card {
    border-right-color: var(--about-gold);
    border-left-color: transparent;
  }

  .page-about .about-timeline-item:nth-child(even):hover .about-timeline-card {
    border-left-color: var(--about-gold);
    border-right-color: transparent;
  }
}
