
  .page-hero { background: var(--navy); padding: 5rem 2rem 5rem; position: relative; overflow: hidden; }
  .page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,201,167,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,201,167,0.04) 1px, transparent 1px); background-size: 64px 64px; }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .page-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,201,167,0.12); border: 1px solid rgba(0,201,167,0.2); color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 1.25rem; }
  .page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.12; color: white; margin-bottom: 1.25rem; max-width: 780px; }
  .page-hero h1 em { font-style: italic; color: var(--teal); }
  .page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 700px; font-weight: 300; }

  section { padding: 5rem 0; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
  .section-heading { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.15; color: var(--navy); margin-bottom: 1.25rem; }
  .section-sub { font-size: 17px; color: var(--gray-600); line-height: 1.65; max-width: 640px; font-weight: 300; }

  /* MISSION */
  .mission-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .mission-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .mission-stat {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
  }

  .ms-num { font-family: var(--font-display); font-size: 2.2rem; color: white; line-height: 1; margin-bottom: 4px; }
  .ms-num span { color: var(--teal); }
  .ms-label { font-size: 13px; color: rgba(255,255,255,0.5); }

  /* VALUES */
  .values-sec { background: var(--off-white); }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .value-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }

  .value-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .value-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--navy); margin-bottom: 0.75rem; }
  .value-desc { font-size: 14.5px; color: var(--gray-600); line-height: 1.65; }

  /* TEAM */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .team-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0 auto 1.25rem;
  }

  .team-name { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .team-title { font-size: 14px; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.4; }
  .team-bio { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

  /* INVESTORS */
  .investors-sec { background: var(--navy); }
  .investors-sec .section-heading { color: white; }
  .investors-sec .section-sub { color: rgba(255,255,255,0.55); }

  .investors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .investor-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
  }

  .investor-card:hover { background: rgba(255,255,255,0.08); }

  .inv-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .inv-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
  .inv-type { font-size: 12px; color: rgba(255,255,255,0.4); }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .contact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
  }

  .contact-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .contact-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
  .contact-desc { font-size: 14px; color: var(--gray-600); line-height: 1.55; margin-bottom: 1.25rem; }
  .contact-link { display: inline-block; font-size: 14px; font-weight: 600; color: var(--teal); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
  .contact-link:hover { border-color: var(--teal); }

  /* TIMELINE */
  .timeline { position: relative; margin-top: 3rem; }
  .timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }

  .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
  }

  .tl-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    width: 72px;
    flex-shrink: 0;
    text-align: right;
    padding-top: 2px;
  }

  .tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--teal);
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 2;
  }

  .tl-content { flex: 1; }
  .tl-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .tl-desc { font-size: 14px; color: var(--gray-600); line-height: 1.55; }