:root {
  --blue: #0e2e63;
  --blue2: #0b2550;
  --bg: #ffffff;
  --muted: #6b7280;
  --card: #f3f4f6;
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
  background: var(--bg);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* ========== NAVIGATION ========== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__img {
  height: 54px;
  width: 300px;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 7px;
}

.nav__menu {
  display: flex;
  gap: 10px;
  margin-left: 30px;
}

.nav__menu a {
  text-decoration: none;
  color: #111;
  font-weight: 650;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__menu a:hover {
  color: #0e2e63;
}

.nav__menu a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  margin-right: 4px;
  color: black;
}

/* ========== PAGE HEADER ========== */
.pagebar {
  background: var(--blue);
  color: #fff;
  padding: 22px 0;
}

.pagebar__inner {
  text-align: center;
}

.pagebar h1 {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
}

.pagebar p {
  margin: 4px 0 0;
  font-size: 16px;
  opacity: .9;
  font-weight: 600;
}

/* ========== GENESIS SECTION ========== */
.genesis {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.genesis::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 46, 99, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.genesis__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.genesis__badge {
  display: inline-block;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.genesis__left h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1.2rem;
  margin-top: 0;
  line-height: 1.2;
}

.genesis__desc {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 16px;
}

.genesis__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

.genesis__image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.genesis__image-wrapper:hover {
  transform: scale(1.02);
}

.genesis__right img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== TEAM SECTION - NO BACKGROUND BOXES ========== */
.team {
  padding: 80px 0;
  background: #ffffff;
}

.team__header {
  text-align: center;
  margin-bottom: 50px;
}

.team__badge {
  display: inline-block;
  background: #eef2ff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.team__subtitle {
  color: #6b7280;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid - 4 columns */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 20px;
}

/* Team Member - NO BACKGROUND BOX, just image + text */
.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

/* Round Profile Image Container */
.team-member__image {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

.team-member__image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #f8fafc;
}

.team-member:hover .team-member__image img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

/* Social Icons - Appear on hover */
.team-member__social {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.team-member:hover .team-member__social {
  opacity: 1;
}

.team-member__social a {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.team-member__social a:hover {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

/* Text Information - Under the image */
.team-member__info {
  text-align: center;
}

.team-member__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.team-member:hover .team-member__name {
  color: var(--blue);
}

.team-member__role {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
  background: #0e2e63;
  color: #fff;
  padding: 40px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}

.footer__text {
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .team__title {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .team {
    padding: 60px 0;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .genesis__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .genesis__left h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .team__title {
    font-size: 32px;
  }
  .team__subtitle {
    font-size: 0.95rem;
  }
  .team-member__image img {
    width: 120px;
    height: 120px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 580px) {
  .team__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 280px;
    margin: 0 auto;
  }
  .team__title {
    font-size: 28px;
  }
  .team-member__image img {
    width: 130px;
    height: 130px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .nav__menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}