/* ==========================================================================
   Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  padding: calc(var(--nav-height) + 3rem) 0 0;
  overflow: hidden;
}

.hero__canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.hero__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__fade {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-bottom: 3rem;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-family: var(--font-sans);
  font-size: var(--text-huge);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Hero Stats Bar */
.hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-top: auto;
}

.hero__stat {
  flex: 1;
  padding: 2.5rem 0;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-number {
  font-family: var(--font-sans);
  font-size: var(--stat-number);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: var(--text-xxs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .hero__stats {
    flex-wrap: wrap;
  }
  .hero__stat {
    flex: 1 1 33.33%;
    padding: 1.5rem 0;
  }
  .hero__stat-number {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* --------------------------------------------------------------------------
   Mission
   -------------------------------------------------------------------------- */

#mission .section-header__label {
  color: rgba(255, 255, 255, 0.4);
}

#mission .section-header__title {
  color: var(--text-light);
}

.mission__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 2rem;
}

.mission__text:last-of-type {
  margin-bottom: 0;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 2rem 1.75rem;
  background: var(--navy-light);
  color: var(--text-light);
  align-items: center;
  text-align: center;
}

.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-light);
  stroke-width: 1.5;
  fill: none;
}

.pillar__content {
  flex: 1;
}

.pillar__title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.pillar__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.service-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  border: 1px solid var(--border);
  transition: border-color var(--duration);
  overflow: hidden;
  padding: 1.75rem;
  background-color: rgba(255, 255, 255, 0.7);
}

.service-card:hover {
  border-color: var(--border);
}

.service-card__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-light);
  stroke-width: 1.5;
  fill: none;
}

.service-card__body {
  flex: 1;
}

.service-card__title {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.service-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Differentiators
   -------------------------------------------------------------------------- */

.diff-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.diff-item:first-child {
  padding-top: 0;
}

.diff-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diff-item__number {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 0.25rem;
}

.diff-item__title {
  font-family: var(--font-sans);
  font-size: var(--text-med);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.diff-item__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Leadership
   -------------------------------------------------------------------------- */

.leader {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .leader {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

.leader__left {
  text-align: center;
}

@media (min-width: 768px) {
  .leader__left {
    text-align: left;
  }
}

.leader__photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .leader__photo-wrap {
    margin: 0 0 1.5rem;
  }
}

.leader__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #8ba7d7;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.leader__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

.leader__meta {
  text-align: center;
}

@media (min-width: 768px) {
  .leader__meta {
    text-align: left;
  }
}

.leader__name {
  font-family: var(--font-sans);
  font-size: var(--text-med);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.125rem;
}

.leader__role {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.leader__credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .leader__credentials {
    justify-content: flex-start;
  }
}

.leader__credential {
  font-size: var(--text-xxs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.75rem;
}

.leader__right {
  padding-top: 0.5rem;
}

.leader__headline {
  font-size: var(--text-big);
  color: var(--text-light);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.leader__bio {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Experience Timeline */
.leader__timeline {
  display: flex;
  flex-direction: column;
}

.leader__timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border-light);
}

.leader__timeline-item:first-child {
  border-top: 1px solid var(--border-light);
}

.leader__timeline-company {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--text-light);
}

.leader__timeline-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .pricing-card {
    border-right: none;
  }
  .pricing-card:last-child {
    border-right: 1px solid var(--border);
  }
}

.pricing-card.pricing-card--featured {
  background: var(--navy) !important;
  background-color: var(--navy) !important;
  border-color: var(--navy);
  color: var(--text-light);
}

.pricing-card--featured .pricing-card__tier {
  color: var(--text-light);
}

.pricing-card--featured .pricing-card__stage,
.pricing-card--featured .pricing-card__check {
  color: var(--coral);
}

.pricing-card--featured .pricing-card__price {
  color: var(--text-light);
}

.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__feature span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card--featured .pricing-card__feature {
  border-bottom-color: var(--border-light);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: var(--coral);
  color: var(--white);
  font-size: var(--text-xxs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem 0.375rem;
}

.pricing-card__stage {
  font-size: var(--text-xxs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.pricing-card__tier {
  font-size: var(--text-med);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing-card__features {
  margin-bottom: 2rem;
}

.pricing-card__feature {
  font-size: var(--text-sm);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}

.pricing-card__feature:last-child {
  border-bottom: none;
}

.pricing-card__check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--coral);
  margin-top: 3px;
}

.pricing-card__check svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */

.cta-section {
  position: relative;
  background-color: rgba(10, 36, 99, 0.35);
  padding-block: var(--section-gap);
}

.cta-section__title {
  font-size: var(--text-big);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}
