.page-about {
  --about-gap: 48px;
  --about-grid-col: 200px;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  overflow-x: hidden;
}

.page-about .breadcrumb {
  padding: 16px 20px 0;
  font-size: 13px;
  color: var(--muted-ink);
  max-width: var(--container-w);
  margin: 0 auto;
}

.page-about .breadcrumb-link {
  color: var(--cobalt);
  text-decoration: none;
}

.page-about .breadcrumb-link:hover {
  color: var(--red-orange);
}

.page-about .breadcrumb-item--current {
  color: var(--muted-ink);
}

.page-about .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--red-orange);
  margin: 0 0 8px;
}

.page-about .section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}

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

@media (min-width: 768px) {
  .page-about .about-grid {
    grid-template-columns: var(--about-grid-col) minmax(0, 1fr);
    gap: var(--about-gap);
  }
}

.page-about .about-hero {
  position: relative;
  background: var(--deep-blue);
  color: var(--cream);
  padding: 56px 0 52px;
  overflow: hidden;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--highlight) 0 60%, var(--red-orange) 60% 100%);
  z-index: 2;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(-45deg, var(--red-orange) 0 14px, #c64515 14px 28px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
  opacity: 0.85;
  z-index: 0;
}

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

@media (min-width: 768px) {
  .page-about .about-hero {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .page-about .about-hero__inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 56px;
    align-items: start;
  }
}

.page-about .about-hero__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--highlight);
  border-left: 3px solid var(--red-orange);
  padding-left: 12px;
  margin: 0 0 20px;
}

.page-about .about-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 720px;
}

.page-about .about-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
  max-width: 640px;
  margin: 0;
}

.page-about .about-hero__aside {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.14);
  padding: 20px 20px 16px;
}

.page-about .about-hero__aside-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin: 0 0 8px;
  font-family: var(--font-mono);
}

.page-about .about-hero__links {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
}

.page-about .about-hero__links li {
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.page-about .about-hero__links a {
  display: block;
  padding: 10px 2px;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-about .about-hero__links a:hover {
  color: var(--highlight);
  padding-left: 8px;
}

.page-about .about-hero__meta {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  font-family: var(--font-mono);
}

.page-about .about-position {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}

.page-about .about-position::after {
  content: "01";
  position: absolute;
  right: -20px;
  top: 10px;
  font-family: var(--font-mono);
  font-size: 150px;
  font-weight: 800;
  color: rgba(30, 90, 138, 0.06);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

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

.page-about .about-grid__content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
}

.page-about .about-grid__content p {
  margin: 0 0 16px;
}

.page-about .about-grid__content a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-about .about-grid__content a:hover {
  color: var(--red-orange);
}

.page-about .about-position__stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 460px;
}

@media (min-width: 768px) {
  .page-about .about-position__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
  }
}

.page-about .about-position__stats li {
  background: var(--deep-blue);
  color: var(--cream);
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-about .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1.2;
}

.page-about .about-evolution {
  position: relative;
  padding: 56px 0 72px;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(18, 58, 92, 0.025) 14px 15px), var(--cream);
  overflow: hidden;
}

.page-about .about-evolution::after {
  content: "02";
  position: absolute;
  left: -20px;
  bottom: 0;
  font-family: var(--font-mono);
  font-size: 170px;
  font-weight: 800;
  color: rgba(232, 93, 38, 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.page-about .about-evolution .container,
.page-about .about-announcement .container,
.page-about .about-team .container,
.page-about .about-contact .container {
  position: relative;
  z-index: 1;
}

.page-about .about-evolution__intro,
.page-about .about-announcement__intro,
.page-about .about-team__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-ink);
  margin: 0;
  max-width: 640px;
}

.page-about .about-evolution__body {
  margin-top: 36px;
}

.page-about .timeline {
  margin: 0;
}

.page-about .timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .page-about .timeline__item {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 28px;
    padding-bottom: 40px;
  }
}

.page-about .timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 34px;
  bottom: -6px;
  width: 2px;
  background: rgba(30, 90, 138, 0.15);
}

@media (min-width: 768px) {
  .page-about .timeline__item::before {
    left: 5px;
    top: 36px;
  }
}

.page-about .timeline__item:last-child::before {
  display: none;
}

.page-about .timeline__year {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--cobalt);
  display: flex;
  align-items: center;
}

.page-about .timeline__year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--red-orange);
  box-shadow: 0 0 0 0 rgba(232, 93, 38, 0.14);
  transition: box-shadow 0.25s ease;
}

.page-about .timeline__item:hover .timeline__year::before {
  box-shadow: 0 0 0 6px rgba(232, 93, 38, 0.14);
}

.page-about .timeline__content {
  padding: 0;
  transition: background 0.2s ease, padding 0.2s ease;
}

.page-about .timeline__content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-about .timeline__content p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted-ink);
  font-size: 15px;
}

@media (hover: hover) {
  .page-about .timeline__item:hover .timeline__content {
    background: rgba(255, 209, 102, 0.14);
    padding-left: 16px;
  }
}

.page-about .timeline__item--highlight .timeline__year {
  color: var(--red-orange);
}

.page-about .timeline__item--highlight .timeline__year::before {
  width: 12px;
  height: 12px;
  background: var(--red-orange);
  box-shadow: 0 0 0 5px rgba(232, 93, 38, 0.18);
}

.page-about .timeline__item--highlight .timeline__content {
  background: rgba(232, 93, 38, 0.07);
  border-left: 3px solid var(--red-orange);
  padding: 16px;
}

.page-about .timeline__item--highlight .timeline__content h3 {
  color: var(--red-orange);
}

.page-about .timeline__item--highlight .timeline__content p {
  color: var(--ink);
}

.page-about .timeline__visual {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 32px auto 0;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

@media (min-width: 1024px) {
  .page-about .timeline-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
    align-items: start;
  }

  .page-about .timeline__visual {
    margin: 0;
    position: sticky;
    top: 96px;
  }
}

.page-about .about-announcement {
  background: var(--deep-blue);
  color: var(--cream);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-about .about-announcement::after {
  content: "03";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--font-mono);
  font-size: 150px;
  font-weight: 800;
  color: rgba(245, 240, 232, 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.page-about .about-announcement .section-title {
  color: var(--cream);
}

.page-about .about-announcement__intro {
  color: rgba(245, 240, 232, 0.75);
}

.page-about .about-announcement__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .page-about .about-announcement__body {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    gap: 40px;
    align-items: start;
  }
}

.page-about .announcement-panel {
  background: var(--cream);
  color: var(--ink);
  padding: 28px 28px 20px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about .panel-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-orange);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--surface);
}

.page-about .announcement-quote {
  margin: 0;
}

.page-about .announcement-quote p {
  margin: 0 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--red-orange);
  font-size: 15px;
  line-height: 1.65;
}

.page-about .announcement-quote p:last-child {
  margin-bottom: 0;
}

.page-about .announcement-details {
  margin-top: 20px;
  border-top: 1px solid rgba(31, 27, 22, 0.12);
  padding-top: 14px;
}

.page-about .announcement-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--red-orange);
  font-size: 14px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-about .announcement-details summary::-webkit-details-marker {
  display: none;
}

.page-about .announcement-details summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 16px;
  transition: transform 0.2s ease;
}

.page-about .announcement-details[open] summary::after {
  content: "−";
}

.page-about .announcement-details__body {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-ink);
}

.page-about .about-announcement__visual {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.page-about .about-team {
  padding: 64px 0 72px;
  position: relative;
}

.page-about .about-team::after {
  content: "04";
  position: absolute;
  left: -16px;
  bottom: 0;
  font-family: var(--font-mono);
  font-size: 160px;
  font-weight: 800;
  color: rgba(30, 90, 138, 0.05);
  line-height: 1;
  pointer-events: none;
}

.page-about .about-team__body {
  margin-top: 36px;
}

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

@media (min-width: 768px) {
  .page-about .team-roles {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.page-about .team-role {
  background: var(--surface);
  padding: 24px 22px;
  border-left: 4px solid var(--cobalt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .page-about .team-role:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: var(--shadow-soft);
  }
}

.page-about .team-role h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}

.page-about .team-role p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-ink);
  margin: 0;
}

.page-about .team-role__mark {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cobalt);
  background: rgba(30, 90, 138, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.page-about .about-team__visual {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-about .about-contact {
  background: var(--deep-blue);
  color: var(--cream);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-about .about-contact::after {
  content: "05";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--font-mono);
  font-size: 160px;
  font-weight: 800;
  color: rgba(245, 240, 232, 0.04);
  line-height: 1;
  pointer-events: none;
}

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

.page-about .about-contact .section-title {
  color: var(--cream);
}

.page-about .about-contact__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.72);
  margin: 12px 0 0;
  max-width: 520px;
}

.page-about .contact-list {
  margin: 32px 0 0;
  padding: 0;
}

.page-about .contact-list__item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
}

@media (min-width: 768px) {
  .page-about .contact-list__item {
    flex-direction: row;
    align-items: baseline;
    gap: 32px;
  }
}

.page-about .contact-list__item dt {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.55);
  min-width: 90px;
}

.page-about .contact-list__item dd {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .page-about .contact-list__item dd {
    margin: 0;
  }
}

.page-about .contact-list__item a {
  color: var(--highlight);
  text-decoration: none;
}

.page-about .contact-list__item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-about .about-contact__note {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-mono);
}
