.page-about {
  --about-orange-track: rgba(255, 107, 44, 0.18);
  --about-green-line: rgba(46, 229, 157, 0.32);
  --about-deep-panel: #0A1528;
  --about-card-bg: #101D36;
  --about-timeline-width: 4px;
  background: var(--background-dark);
  color: var(--text-primary);
}

.page-about__breadcrumb {
  padding: 18px max(24px, calc((100vw - var(--container-max)) / 2 + 24px)) 0;
  border-bottom: 1px solid var(--line-subtle);
}

.page-about__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background:
    linear-gradient(115deg, rgba(6, 11, 20, 0.92) 0%, rgba(11, 27, 58, 0.82) 55%, rgba(20, 35, 61, 0.55) 100%),
    var(--background-dark);
}

.page-about__hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46, 229, 157, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-about__hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-about__hero-title {
  max-width: 14em;
  margin: 12px 0 20px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-about__hero-lead {
  max-width: 58ch;
  margin: 0 0 40px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--text-secondary);
}

.page-about__hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.page-about__hero-stats .stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 20px;
  border: 2px solid var(--line-subtle);
  background: rgba(11, 27, 58, 0.6);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease;
}

.page-about__hero-stats .stat:hover {
  border-color: var(--line-strong);
}

.page-about__hero-stats .stat-value {
  font-family: var(--font-headings);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--bright-orange);
  line-height: 1;
}

.page-about__hero-stats .stat-label {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.page-about__hero-deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--bright-orange);
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.page-about__hero-deco-bar {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--highlight-green);
  opacity: 0.7;
}

.page-about__hero-deco-dot {
  position: absolute;
  top: 3px;
  right: 60px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--highlight-green);
  box-shadow: 0 0 12px var(--green-glow);
}

.page-about__story {
  background: var(--deep-space-blue);
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__story-media .image-frame {
  border: var(--border-med) solid var(--line-subtle);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.38);
}

.page-about__story-copy .section-title {
  margin: 8px 0 16px;
}

.page-about__story-copy .content {
  max-width: var(--content-max);
}

.page-about__story-copy .content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.page-about__story-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 4px solid var(--bright-orange);
  background: var(--about-orange-track);
  font-family: var(--font-headings);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}

.page-about__milestones {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
  padding: clamp(64px, 8vw, 88px) 0 clamp(88px, 10vw, 120px);
  background: var(--about-deep-panel);
}

.page-about__milestones::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(46, 229, 157, 0.04);
  border-radius: 50%;
}

.page-about__milestones-head {
  max-width: 560px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.page-about__milestones-head .section-title {
  margin-top: 8px;
}

.page-about__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-about__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: var(--about-timeline-width);
  background: linear-gradient(to bottom, var(--bright-orange) 0%, var(--bright-orange) 78%, var(--highlight-green) 100%);
  transform: skewX(-20deg);
  opacity: 0.7;
}

.page-about__timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 0 0 40px 0;
}

.page-about__timeline-item:last-child {
  padding-bottom: 0;
}

.page-about__timeline-year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-space-blue);
  border: 3px solid var(--bright-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.16);
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  color: var(--bright-orange);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.page-about__timeline-body {
  padding: 20px 24px;
  border: var(--border-med) solid var(--line-subtle);
  background: rgba(11, 27, 58, 0.72);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-about__timeline-item:hover .page-about__timeline-body {
  border-color: var(--line-strong);
  transform: translateX(6px);
}

.page-about__timeline-body .subsection-title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.page-about__timeline-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-about__team {
  background: var(--background-dark);
}

.page-about__team-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.page-about__team-head .section-title {
  margin: 8px 0 16px;
}

.page-about__team-head .content p {
  color: var(--text-secondary);
}

.page-about__team-grid {
  gap: 28px;
}

.page-about__team-card {
  padding: 32px 28px 28px;
  background: var(--about-card-bg);
  border: var(--border-med) solid var(--line-subtle);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-about__team-card:hover {
  border-color: var(--line-strong);
  box-shadow: 8px 8px 0 rgba(255, 107, 44, 0.18);
}

.page-about__team-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  background: var(--about-orange-track);
  border: 2px solid var(--line-subtle);
  transform: rotate(-3deg);
}

.page-about__team-icon svg {
  transform: rotate(3deg);
}

.page-about__team-card .card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.page-about__team-card .card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-about__team-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 26px;
  border: 1px dashed var(--about-green-line);
  background: rgba(46, 229, 157, 0.05);
}

.page-about__team-note-mark {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: var(--highlight-green);
  box-shadow: 0 0 10px var(--green-glow);
  transform: rotate(45deg);
}

.page-about__team-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-about__credentials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B1B3A 0%, #101D36 60%, #071021 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
  padding: clamp(64px, 8vw, 96px) 0;
}

.page-about__credentials::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 40px solid rgba(255, 107, 44, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.page-about__credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-about__credentials-copy .section-title {
  margin: 8px 0 16px;
}

.page-about__credentials-copy .content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.page-about__credential-list {
  margin-top: 24px;
}

.page-about__credential-list li {
  margin-bottom: 10px;
}

.page-about__credentials-side {
  display: grid;
  gap: 24px;
}

.page-about__credentials-img {
  border: 2px solid var(--line-subtle);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.35);
}

.page-about__credential-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: var(--border-thick) solid var(--bright-orange);
  background: rgba(255, 107, 44, 0.08);
  box-shadow: var(--shadow-card);
}

.page-about__credential-badge {
  flex: 0 0 auto;
}

.page-about__credential-card .subsection-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.page-about__credential-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-about__cta {
  background: var(--background-dark);
}

.page-about__cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 48px) 0;
}

.page-about__cta-inner .section-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
}

.page-about__cta-inner p {
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-about__cta-actions .btn {
  white-space: nowrap;
}

@media (min-width: 640px) {
  .page-about__hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-about__timeline::before {
    left: 50%;
    margin-left: -2px;
  }

  .page-about__timeline-item {
    grid-template-columns: 1fr 64px 1fr;
    gap: 28px;
    padding: 0 0 48px 0;
    align-items: center;
  }

  .page-about__timeline-item:nth-child(odd) .page-about__timeline-body {
    grid-column: 1;
    grid-row: 1;
  }

  .page-about__timeline-item:nth-child(even) .page-about__timeline-body {
    grid-column: 3;
    grid-row: 1;
  }

  .page-about__timeline-year {
    grid-column: 2;
    grid-row: 1;
    width: 56px;
    height: 56px;
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  .page-about__story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 56px;
  }

  .page-about__credentials-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: start;
  }

  .page-about__cta-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-about__story {
    position: relative;
  }

  .page-about__story::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bright-orange) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.08;
    pointer-events: none;
  }

  .page-about__credentials-side {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-about__timeline-body {
    transition: border-color 0.25s ease, transform 0.25s ease;
  }

  .page-about__team-card {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
}
