/* =========================
  BANNER SECTION
=========================  */
.premium-banner {
  position: relative;
  width: 100%;
  height: clamp(400px, 55vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* Cinematic Background Animation */
.banner-bg-image {
  position: absolute;
  inset: -5%;
  background-image: url("../img/banner/team.avif");
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: cinematicPan 25s linear infinite alternate;
}

/* Vignette / Spotlight Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 15, 15, 0.2) 0%,
    rgba(15, 15, 15, 0.8) 100%
  );
  z-index: 1;
}

/* Content Container */
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* --- ADVANCED GLASSMORPHISM BREADCRUMB --- */
.breadcrumb {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s var(--premium-ease) forwards;
  margin-bottom: var(--space-3);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb li {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-surface);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-surface);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* SVG Chevron Separator */
.breadcrumb .separator {
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.breadcrumb .current {
  color: var(--color-yellow);
  font-weight: 600;
  opacity: 1;
}

/* --- TYPOGRAPHY --- */
.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page-title {
  font-size: var(--fs-xxl);
  color: var(--color-surface);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.2s forwards;
  margin-bottom: 0;
}

.page-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.4s forwards;
}

/* --- GLOWING BRAND ACCENT LINE --- */
.brand-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* Subtle glow beneath the line */
.brand-accent-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 2;
  filter: blur(8px);
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* --- KEYFRAMES --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicPan {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* =========================
  TEAM SECTION
========================= */

.department-section {
  position: relative;
  overflow: hidden;
}

/* HEADER */
.department-header {
  margin-bottom: var(--space-5);
}

.department-subtitle {
  max-width: 65ch;
  color: var(--color-text-muted);
}

/* =========================
  GRID
========================= */
.landscape-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* =========================
  CARD
========================= */
.landscape-member-card {
  position: relative;
  display: flex;
  gap: 0;
  overflow: hidden;
  min-height: 380px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.45s var(--premium-ease);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* HOVER */
.landscape-member-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 10px 40px rgba(66, 133, 244, 0.12);
}

/* FEATURED */
.featured-landscape-card {
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.06)),
    rgba(255, 255, 255, 0.8);
}

/* FEATURED TAG */
.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

/* =========================
  IMAGE
========================= */
.member-photo {
  position: relative;
  width: 42%;
  min-width: 42%;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.8s var(--premium-ease);
}

.landscape-member-card:hover img {
  transform: scale(1.08);
}

/* ONLINE BADGE */
.online-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.online-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}

/* =========================
  CONTENT
========================= */
.member-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

/* TOP */
.member-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.member-position {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(66, 133, 244, 0.08);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-top h3 {
  font-size: 2rem;
  line-height: 1.1;
}

.member-experience {
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* DESC */
.member-description {
  margin-bottom: 26px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* SKILLS */
.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.member-skills span {
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.member-skills span:hover {
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  color: #fff;
  transform: translateY(-2px);
}

/* FOOTER */
.member-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* SOCIALS */
.member-socials {
  display: flex;
  gap: 10px;
}

.member-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-text);
  transition: var(--transition);
}

.member-socials a:hover {
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  color: #fff;
  transform: translateY(-3px);
}

/* CTA */
.member-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.member-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .landscape-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landscape-member-card {
    flex-direction: column;
  }

  .member-photo {
    width: 100%;
    min-width: 100%;
    height: 320px;
  }

  .member-details {
    padding: 24px;
  }

  .member-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-top {
    flex-direction: column;
  }

  .member-top h3 {
    font-size: 1.7rem;
  }
}

/* =========================
  FOUNDER SECTION
========================= */
.founder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
      rgba(66, 133, 244, 0.08),
      transparent 35%),
    radial-gradient(circle at bottom right,
      rgba(52, 168, 83, 0.08),
      transparent 35%),
    var(--color-bg);
}

/* GLOWS */
.founder-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.founder-glow-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
  background: rgba(66, 133, 244, 0.15);
}

.founder-glow-2 {
  width: 280px;
  height: 280px;
  bottom: -100px;
  right: -80px;
  background: rgba(52, 168, 83, 0.12);
}

/* CARD */
.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* IMAGE */
.founder-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.founder-image-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.8s var(--premium-ease);
}

.founder-card:hover .founder-image-wrap img {
  transform: scale(1.05);
}

/* BADGE */
.founder-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* CONTENT */
.founder-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.founder-title span {
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-name {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
}

.founder-description {
  max-width: 65ch;
  margin-bottom: 34px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* HIGHLIGHTS */
.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.founder-highlight-card {
  min-width: 160px;
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.founder-highlight-card h4 {
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-highlight-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

/* SOCIALS */
.founder-socials {
  display: flex;
  gap: 14px;
}

.founder-socials a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-text);
  transition: var(--transition);
}

.founder-socials a:hover {
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-green)
  );
  color: #fff;
  transform: translateY(-4px);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-wrap img {
    height: 520px;
  }
}

@media (max-width: 768px) {
  .founder-card {
    padding: 22px;
    border-radius: 28px;
  }

  .founder-title {
    font-size: 2.3rem;
  }

  .founder-image-wrap img {
    height: 420px;
  }

  .founder-highlights {
    flex-direction: column;
  }

  .founder-highlight-card {
    width: 100%;
  }

  .founder-socials {
    flex-wrap: wrap;
  }
}