﻿:root {
  --page-dark: #1f1f23;
  --page-dark-2: #2a2a30;
  --page-accent: #1cd7c5;
  --page-muted: #f5f4f9;
  --page-card: #ffffff;
  --page-border: #e1e1ea;
  --page-text: #121127;
  --page-subtext: #4b4b63;
}

.nav-item {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(18, 17, 39, 0.15);
  padding: 10px 0;
  display: none;
  z-index: 60;
}

.nav-menu-item {
  display: block;
  padding: 10px 18px;
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu-item:hover,
.nav-menu-item:focus {
  background: #f2f2f7;
  color: #0f0f18;
}

.nav-menu-item.nav-sub {
  padding-left: 30px;
  font-size: 13px;
  color: #4b4b63;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  display: block;
}

.page-hero {
  position: relative;
  color: #ffffff;
  background: linear-gradient(120deg, #111117 0%, #2c2c33 50%, #1e1e24 100%);
  padding: 56px 0 48px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(28, 215, 197, 0.25), transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 24px;
}

.page-breadcrumbs {
  font-size: 12px;
  color: #d6d6e2;
  margin-bottom: 10px;
}

.page-breadcrumbs a {
  color: #d6d6e2;
  text-decoration: none;
}

.page-breadcrumbs a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  margin: 0;
}

.page-section {
  padding: 60px 0;
}

.page-section--muted {
  background: var(--page-muted);
}

.page-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 24px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.page-grid--top {
  align-items: start;
}

.page-card {
  background: var(--page-card);
  border: 1px solid var(--page-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(18, 17, 39, 0.08);
}

.page-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--page-text);
}

.page-card p {
  margin: 0;
  color: var(--page-subtext);
  line-height: 1.7;
}

.page-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(18, 17, 39, 0.18);
}

.page-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--page-text);
  margin: 0 0 16px;
}

.page-paragraph {
  color: var(--page-subtext);
  line-height: 1.8;
  margin: 0 0 16px;
}

.page-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-pill {
  background: #f0eff6;
  color: #2b2b36;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card-grid .page-card {
  min-height: 160px;
}

.list-clean {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--page-subtext);
}

.strategy-highlight {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ebebf3;
}

.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #dcdce2;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -3px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 4px rgba(28, 215, 197, 0.25);
}

.timeline-content {
  padding-left: 26px;
}

.timeline-date {
  font-weight: 600;
  color: var(--page-text);
  margin-bottom: 8px;
}

.leader-hero {
  background: #ffffff;
}

.leader-main {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e7e7ef;
  box-shadow: 0 12px 26px rgba(18, 17, 39, 0.08);
}

.leader-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.leader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-outline,
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline {
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background: #ffffff;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.btn-solid {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #1a1a1a;
}

.btn-solid:hover {
  background: var(--page-accent);
  color: #121127;
  border-color: var(--page-accent);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.leader-card {
  background: #ffffff;
  border: 1px solid #e7e7ef;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leader-card img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 26px;
  align-items: center;
  margin-top: 24px;
}

.logo-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ececf2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.logo-card img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
}

.page-divider {
  height: 1px;
  background: #dadbe6;
  margin: 30px 0 10px;
}

.helpful-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.helpful-row button {
  border: 1px solid #1a1a1a;
  background: #ffffff;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
}

.helpful-row button:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.callout {
  background: #f1f1f6;
  border-radius: 12px;
  padding: 18px;
  border-left: 4px solid var(--page-accent);
}

@media (max-width: 900px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
  .leader-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 40px 0;
  }
  .page-section {
    padding: 40px 0;
  }
  .nav-menu {
    min-width: 200px;
  }
}

.page-hero--compact {
  padding: 36px 0 32px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f0fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #413258;
  margin-bottom: 12px;
}

.icon-badge img {
  width: 22px;
  height: 22px;
}

nav[aria-label="Main navigation"] {
  overflow: visible !important;
}
nav[aria-label="Main navigation"] > div {
  overflow: visible;
}
