/* Experimental About page — keep separate from homepage until approved */

html {
  scroll-padding-top: 7.5rem;
}

.page-hero {
  position: relative;
  padding: 9rem 0 4.25rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(var(--brand-rgb), 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(var(--brand-rgb), 0.08), transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-hero-kicker::before,
.page-hero-kicker::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brand);
}

.page-hero h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 1.15rem;
}

.page-hero-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.about-jump {
  position: sticky;
  top: 4.55rem;
  z-index: 50;
  background: rgba(6, 21, 37, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.about-jump-inner {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.7rem 0;
  scrollbar-width: none;
}

.about-jump-inner::-webkit-scrollbar {
  display: none;
}

.about-jump a {
  flex: 0 0 auto;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 238, 244, 0.7);
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.about-jump a:hover,
.about-jump a.is-active {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.14);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.about-section-block {
  scroll-margin-top: 8.25rem;
}

.about-intro {
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(var(--brand-rgb), 0.08), transparent 50%),
    linear-gradient(180deg, #071a2c 0%, #0a2034 100%);
}

.about-intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.about-intro-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(2, 11, 20, 0.4);
}

.about-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.about-intro-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.chairman-section {
  background: var(--navy);
}

.chairman-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 880px) {
  .chairman-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.chairman-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-elevated);
}

.chairman-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.chairman-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(6, 21, 37, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chairman-photo figcaption strong {
  display: block;
  font-size: 1rem;
}

.chairman-photo figcaption span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
}

.chairman-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.05rem;
}

.chairman-copy p:last-child {
  margin-bottom: 0;
}

.team-section {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%),
    var(--navy-mid);
}

.team-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 46rem;
    margin-inline: auto;
  }
}

.team-card {
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.team-card-body {
  padding: 1.25rem 1.35rem 1.45rem;
  text-align: center;
}

.team-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-card-body p {
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
}

.values-section {
  background: var(--navy);
}

.values-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-card {
  background: linear-gradient(180deg, #071a2c 0%, #0a2034 100%);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.6rem 1.55rem 1.45rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  transform: translateY(-4px);
}

.value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*width: 2rem;*/
  /*height: 2rem;*/
  /*margin-bottom: 0.9rem;*/
  /*border-radius: 0.6rem;*/
  /*background: rgba(var(--brand-rgb), 0.14);*/
  color: var(--brand-600);
  font-size: 3.78rem;
  font-weight: 300;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.value-card ul {
  list-style: none;
}

.value-card li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-card li:last-child {
  margin-bottom: 0;
}

.value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--brand);
}

.accred-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%),
    linear-gradient(180deg, #071a2c 0%, var(--navy) 100%);
}

.accred-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .accred-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.accred-card {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.15rem;
  align-items: center;
  background: var(--navy-elevated);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.25rem 1.35rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.accred-card:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  transform: translateY(-4px);
}

.accred-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: #fff;
}

.accred-logo img {
  max-height: 4.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.accred-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.accred-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .accred-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .accred-logo {
    margin-inline: auto;
    width: 8.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .value-card,
  .accred-card {
    transition: none;
  }

  .team-card:hover,
  .value-card:hover,
  .accred-card:hover {
    transform: none;
  }
}
