.page-about {
  --story-line: rgba(255, 255, 255, 0.05);
  --story-blue-dim: rgba(0, 180, 216, 0.25);
  --story-green-dim: rgba(198, 255, 0, 0.12);
  position: relative;
  color: #FFFFFF;
}

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

.page-about > * {
  position: relative;
}

.page-about .breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #B0B3B8;
}

.page-about .breadcrumb a {
  color: #00B4D8;
  text-decoration: none;
  transition: color 0.25s;
}

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

.page-about .story-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 20px 56px;
}

.page-about .story-hero__kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.page-about .story-hero__code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #B0B3B8;
  white-space: nowrap;
}

.page-about .page-title {
  margin: 0 0 18px;
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 920px;
}

.page-about .page-title em {
  font-style: normal;
  color: #C6FF00;
}

.page-about .lead {
  margin: 0;
  max-width: 720px;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.8;
  color: #B0B3B8;
}

.page-about .story-hero__ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-about .story-hero__ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #C6FF00;
  background: rgba(27, 38, 59, 0.85);
  border: 1px solid rgba(198, 255, 0, 0.22);
  border-radius: 999px;
  padding: 7px 14px;
}

.page-about .story-hero__ribbon-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C6FF00;
  box-shadow: 0 0 8px #C6FF00;
}

.page-about .story-hero__media {
  position: relative;
  margin-top: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-bg-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 9;
}

.page-about .story-hero__media::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, transparent 49%, rgba(198, 255, 0, 0.85) 50%, rgba(198, 255, 0, 0.9) 100%);
  border-radius: 0 0 23px 0;
}

.page-about .story-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-about .story-hero__chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-about .story-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(27, 38, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.page-about .story-chapter-link:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  transform: translateY(-2px);
}

.page-about .story-origin,
.page-about .story-milestones,
.page-about .story-strength,
.page-about .story-vision {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

.page-about .story-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.page-about .story-section-head__num {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 180, 216, 0.42);
  min-width: 56px;
}

.page-about .story-section-head__body .eyebrow {
  color: #00B4D8;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.page-about .story-section-head__body .section-title {
  margin: 6px 0 0;
}

.page-about .story-origin__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-about .story-origin__main p {
  margin: 0 0 14px;
  color: #B0B3B8;
  font-size: 0.95rem;
  line-height: 1.85;
}

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

.page-about .story-origin__aside {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.page-about .story-origin__aside-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.12);
  color: #0D1B2A;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-about .story-origin__aside p {
  margin: 16px 0 12px;
  color: rgba(13, 27, 42, 0.78);
  font-size: 0.9rem;
  line-height: 1.8;
}

.page-about .story-origin__aside-num-md {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #0D1B2A;
}

.page-about .story-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-about .story-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-about .story-timeline__list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, #00B4D8, #C6FF00);
  border-radius: 2px;
}

.page-about .story-timeline__item {
  position: relative;
  padding: 0 0 36px 40px;
}

.page-about .story-timeline__item:last-child {
  padding-bottom: 0;
}

.page-about .story-timeline__item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C6FF00;
  box-shadow: 0 0 0 4px rgba(198, 255, 0, 0.15), 0 0 18px rgba(198, 255, 0, 0.5);
  z-index: 1;
}

.page-about .story-timeline__item--now::before {
  background: #FCA311;
  box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.16), 0 0 24px rgba(252, 163, 17, 0.55);
}

.page-about .story-timeline__year {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #C6FF00;
}

.page-about .story-timeline__item--now .story-timeline__year {
  color: #FCA311;
}

.page-about .story-timeline__body h3 {
  margin: 10px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.page-about .story-timeline__body p {
  margin: 0;
  color: #B0B3B8;
  font-size: 0.9rem;
  line-height: 1.75;
}

.page-about .story-timeline__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-about .story-timeline__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 110px;
  padding: 20px 16px;
  background: var(--c-bg-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.page-about .story-timeline__card--alt .story-timeline__card-num {
  color: #FCA311;
}

.page-about .story-timeline__card-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #C6FF00;
}

.page-about .story-timeline__card-label {
  font-size: 0.78rem;
  color: #B0B3B8;
}

.page-about .story-timeline__side img {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about .story-strength__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-about .story-strength__item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
  padding: 24px 22px;
  background: linear-gradient(160deg, rgba(27, 38, 59, 0.88), rgba(13, 27, 42, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: transform 0.3s, border-color 0.3s;
}

.page-about .story-strength__item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.5);
}

.page-about .story-strength__item::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.22), transparent 70%);
}

.page-about .story-strength__num {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-blue);
  margin-bottom: 10px;
  position: relative;
}

.page-about .story-strength__label {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

.page-about .story-strength__item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #B0B3B8;
  position: relative;
}

.page-about .story-strength__item--paper {
  background: var(--c-paper);
  border-color: transparent;
  color: #0D1B2A;
}

.page-about .story-strength__item--paper .story-strength__num,
.page-about .story-strength__item--paper .story-strength__label {
  color: #0D1B2A;
}

.page-about .story-strength__item--paper p {
  color: rgba(13, 27, 42, 0.8);
}

.page-about .story-strength__item--paper::before {
  background: radial-gradient(circle, rgba(252, 163, 17, 0.2), transparent 70%);
}

.page-about .story-strength__media {
  margin: 0;
}

.page-about .story-strength__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about .story-vision__intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-about .story-vision__intro p {
  margin: 0;
  color: #B0B3B8;
  font-size: 0.95rem;
  line-height: 1.85;
}

.page-about .story-vision__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-about .story-vision__card {
  padding: 28px 24px;
  background: linear-gradient(150deg, rgba(27, 38, 59, 0.92), rgba(13, 27, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
}

.page-about .story-vision__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #0D1B2A;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.page-about .story-vision__card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-about .story-vision__card p {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #B0B3B8;
}

.page-about .story-vision__badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 0, 0.3);
  color: #C6FF00;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.page-about .story-vision__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .page-about .breadcrumb {
    padding: 24px 32px 0;
  }

  .page-about .story-hero {
    padding: 44px 32px 64px;
  }

  .page-about .story-origin,
  .page-about .story-milestones,
  .page-about .story-strength,
  .page-about .story-vision {
    padding: 64px 32px;
  }

  .page-about .story-origin__grid {
    grid-template-columns: 1.7fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-about .story-origin__aside {
    min-height: 260px;
  }

  .page-about .story-timeline {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }

  .page-about .story-timeline__side {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .page-about .story-strength__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .story-strength__item--paper {
    grid-column: 1 / -1;
  }

  .page-about .story-strength__media {
    grid-column: 1 / -1;
  }

  .page-about .story-vision__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .page-about .story-hero {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .page-about .page-title {
    font-size: var(--text-display);
    max-width: 1000px;
  }

  .page-about .story-origin,
  .page-about .story-milestones,
  .page-about .story-strength,
  .page-about .story-vision {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-about .story-section-head {
    margin-bottom: 48px;
    gap: 24px;
  }

  .page-about .story-section-head__num {
    font-size: 5rem;
    min-width: 90px;
  }

  .page-about .story-strength__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-about .story-strength__item--wide {
    grid-column: span 2;
  }

  .page-about .story-strength__item--paper {
    grid-column: span 1;
  }

  .page-about .story-strength__item--team {
    grid-column: span 1;
  }

  .page-about .story-strength__media {
    grid-column: 1 / -1;
  }

  .page-about .story-strength__media img {
    aspect-ratio: 21 / 9;
  }

  .page-about .story-vision__cards {
    grid-template-columns: repeat(3, 1fr);
  }

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