html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 16%, rgba(33, 76, 154, 0.09), transparent 18%),
    radial-gradient(circle at 92% 14%, rgba(159, 184, 232, 0.15), transparent 20%),
    radial-gradient(circle at 85% 82%, rgba(33, 76, 154, 0.06), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 46%, #ffffff 100%);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
}

.bg-side-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.75;
  animation: floatOrb 16s ease-in-out infinite;
}

.orb-left {
  width: 340px;
  height: 340px;
  top: 120px;
  left: -120px;
  background: rgba(33, 76, 154, 0.12);
}

.orb-right {
  width: 320px;
  height: 320px;
  top: 240px;
  right: -110px;
  background: rgba(159, 184, 232, 0.2);
  animation-delay: -5s;
}

.orb-bottom {
  width: 360px;
  height: 360px;
  right: 10%;
  bottom: -160px;
  background: rgba(99, 148, 255, 0.1);
  animation-delay: -9s;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.org-hero {
  padding-top: 64px;
}

.org-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy .badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(33, 76, 154, 0.08);
  box-shadow: 0 14px 30px rgba(27, 50, 98, 0.06);
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.8rem, 5.3vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: #16233b;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: #667085;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* =========================
   SECTION HEAD CENTER
========================= */
.section-head-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-head-center > div {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.section-head-center .section-tag {
  display: inline-block;
  margin: 0 auto 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.07);
  border: 1px solid rgba(33, 76, 154, 0.08);
  backdrop-filter: blur(10px);
}

.section-head-center h2 {
  margin: 10px auto 0;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #16233b;
}

/* =========================
   ORG LAYOUT
========================= */
.org-layout {
  position: relative;
  padding-top: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.org-layout::before,
.org-layout::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.org-layout::before {
  width: 280px;
  height: 280px;
  top: 100px;
  left: -60px;
  background: rgba(33, 76, 154, 0.07);
}

.org-layout::after {
  width: 260px;
  height: 260px;
  bottom: 70px;
  right: -60px;
  background: rgba(159, 184, 232, 0.12);
}

.org-top-line,
.org-main-line {
  width: 2px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    180deg,
    rgba(33, 76, 154, 0.02),
    rgba(33, 76, 154, 0.28),
    rgba(33, 76, 154, 0.04)
  );
  box-shadow: 0 0 16px rgba(33, 76, 154, 0.1);
}

.org-top-line {
  height: 52px;
  margin-bottom: 14px;
}

.org-main-line {
  height: 54px;
  margin-bottom: 24px;
}

.org-top-line::after,
.org-main-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d7e4ff;
  box-shadow:
    0 0 0 4px rgba(215, 228, 255, 0.5),
    0 0 18px rgba(33, 76, 154, 0.16);
}

/* =========================
   LEADER CARD
========================= */
.leader-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;

  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 38px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 18%, rgba(33, 76, 154, 0.09), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(159, 184, 232, 0.2), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 30px 68px rgba(27, 50, 98, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  z-index: 1;
}

.leader-card:hover {
  box-shadow:
    0 38px 82px rgba(27, 50, 98, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  border-color: rgba(33, 76, 154, 0.12);
}

.leader-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(
    90deg,
    rgba(159, 184, 232, 0.9),
    var(--primary),
    rgba(159, 184, 232, 0.9)
  );
  z-index: 3;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: -45% auto auto -20%;
  width: 42%;
  height: 185%;
  transform: rotate(18deg) translateX(-150%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  pointer-events: none;
}

.leader-card:hover::after {
  animation: premiumSweep 1.15s ease;
}

@keyframes premiumSweep {
  0% {
    transform: rotate(18deg) translateX(-150%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: rotate(18deg) translateX(300%);
    opacity: 0;
  }
}

.leader-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(159, 184, 232, 0.26), transparent 36%),
    radial-gradient(circle at 75% 80%, rgba(33, 76, 154, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 244, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.leader-photo-wrap::after {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 30px;
  border: 1px dashed rgba(33, 76, 154, 0.14);
  pointer-events: none;
}

.leader-info {
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: left;
}

.leader-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.08);
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 14px;
  border: 1px solid rgba(33, 76, 154, 0.08);
  box-shadow: 0 12px 24px rgba(27, 50, 98, 0.04);
}

.leader-info h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.9vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #17233b;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.25s ease;
}

.leader-info p {
  max-width: 640px;
  margin: 0;
  font-size: 1.02rem;
  color: #667085;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.leader-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.meta-pill {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.06);
  color: var(--primary);
  font-size: 0.95rem;
  border: 1px solid rgba(33, 76, 154, 0.08);
  box-shadow: 0 8px 18px rgba(27, 50, 98, 0.05);
}

/* =========================
   PHOTO ROTATOR
========================= */
.photo-rotator {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 20%, rgba(159, 184, 232, 0.16), transparent 34%),
    radial-gradient(circle at 80% 78%, rgba(33, 76, 154, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.photo-rotator:hover,
.photo-rotator.is-hovered {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 22px 50px rgba(27, 50, 98, 0.18),
    0 0 0 1px rgba(33, 76, 154, 0.08);
}

.leader-rotator {
  width: 100%;
  max-width: 270px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid rgba(33, 76, 154, 0.08);
  box-shadow:
    0 22px 44px rgba(27, 50, 98, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  z-index: 2;
}

.org-rotator {
  width: 100%;
  max-width: 164px;
  height: 218px;
  margin: 0 auto 22px;
  border-radius: 24px;
  border: 1px solid rgba(33, 76, 154, 0.08);
  box-shadow:
    0 18px 36px rgba(27, 50, 98, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 25% 15%, rgba(159, 184, 232, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.org-rotator::before,
.leader-rotator::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px dashed rgba(33, 76, 154, 0.1);
  pointer-events: none;
  z-index: 2;
}

.photo-rotator::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(15, 23, 42, 0.04)
  );
  pointer-events: none;
}

.photo-rotator::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 70%;
  height: 180%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  animation: photoShine 5.8s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes photoShine {
  0% {
    transform: rotate(20deg) translateX(-180%);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  28% {
    transform: rotate(20deg) translateX(260%);
    opacity: 0;
  }
  100% {
    transform: rotate(20deg) translateX(260%);
    opacity: 0;
  }
}

.photo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.9s ease,
    transform 1.15s ease,
    filter 0.45s ease;
  filter: saturate(1.02) contrast(1.02);
  image-rendering: auto;
  backface-visibility: hidden;
}

.leader-rotator .photo-layer {
  object-fit: cover;
  object-position: center top;
}

.org-rotator .photo-layer {
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.photo-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.is-single-photo .photo-layer.is-active,
.single-motion .photo-layer.is-active {
  opacity: 1;
  animation: subtleFloatZoom 6s ease-in-out infinite;
}

@keyframes subtleFloatZoom {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-4px) scale(1.015);
  }
  50% {
    transform: translateY(-8px) scale(1.028);
  }
  75% {
    transform: translateY(-4px) scale(1.015);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* =========================
   ORG GRID
========================= */
.org-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 420px));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.org-grid::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: min(88%, 820px);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(33, 76, 154, 0),
    rgba(33, 76, 154, 0.18),
    rgba(33, 76, 154, 0),
    rgba(33, 76, 154, 0.18),
    rgba(33, 76, 154, 0)
  );
  box-shadow: 0 0 14px rgba(33, 76, 154, 0.06);
}

.org-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;

  padding: 32px 28px;
  position: relative;
  border-radius: 30px;
  min-height: 100%;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(159, 184, 232, 0.12), transparent 26%),
    radial-gradient(circle at 84% 86%, rgba(33, 76, 154, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 20px 48px rgba(27, 50, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  z-index: 1;
}

.org-card:hover {
  transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(-8px);
  box-shadow: 0 28px 64px rgba(27, 50, 98, 0.16);
  border-color: rgba(33, 76, 154, 0.12);
}

.org-card::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(33, 76, 154, 0.02),
    rgba(33, 76, 154, 0.22)
  );
}

.org-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.34), transparent 28%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.org-card:hover::after {
  opacity: 1;
}

.org-number {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.08);
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 14px;
  border: 1px solid rgba(33, 76, 154, 0.06);
  box-shadow: 0 8px 18px rgba(27, 50, 98, 0.04);
}

.org-card h3 {
  margin: 0 0 10px;
  line-height: 1.35;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  min-height: 2.9em;
  color: #17233b;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.org-card:hover h3 {
  color: var(--primary);
  letter-spacing: 0.03px;
}

.org-role {
  color: var(--primary) !important;
  font-size: 0.97rem;
  margin-top: 0;
  line-height: 1.65;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* =========================
   REVEAL ANIMATION
========================= */
.section-head,
.leader-card,
.org-card,
.org-top-line,
.org-main-line {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.org-top-line,
.org-main-line {
  transform: scaleY(0.7);
  transform-origin: top center;
}

.section-head.is-visible,
.leader-card.is-visible,
.org-card.is-visible,
.org-top-line.is-visible,
.org-main-line.is-visible {
  opacity: 1;
  transform: none;
}

/* text transition */
.text-swapping h3,
.text-swapping p,
.text-swapping .leader-meta {
  opacity: 0.3;
  transform: translateY(4px);
}

.text-restored h3,
.text-restored p,
.text-restored .leader-meta {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .photo-layer,
  .photo-rotator,
  .org-card,
  .leader-card,
  .photo-rotator::before,
  .bg-side-orb,
  .section-head,
  .org-top-line,
  .org-main-line {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .section-head,
  .leader-card,
  .org-card,
  .org-top-line,
  .org-main-line {
    opacity: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
  }

  .section-head-center h2 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
  }

  .leader-card {
    grid-template-columns: 240px 1fr;
    padding: 30px;
  }

  .leader-rotator {
    max-width: 220px;
    height: 308px;
  }

  .org-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    max-width: 860px;
  }

  .org-rotator {
    max-width: 150px;
    height: 200px;
  }

  .leader-info h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 760px) {
  .org-grid,
  .org-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
    line-height: 1.08;
  }

  .section-head-center h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1.12;
  }

  .hero-copy p,
  .hero-panel-text p,
  .leader-info p {
    font-size: 0.98rem;
  }

  .leader-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    gap: 22px;
  }

  .leader-rotator {
    max-width: 210px;
    height: 292px;
    margin: 0 auto;
  }

  .leader-info {
    text-align: center;
  }

  .leader-info p {
    max-width: 100%;
  }

  .leader-meta {
    justify-content: center;
  }

  .org-card::before,
  .org-top-line,
  .org-main-line,
  .org-grid::before {
    display: none;
  }

  .org-rotator {
    max-width: 142px;
    height: 188px;
  }

  .org-card h3 {
    min-height: auto;
  }

  .bg-side-orb {
    opacity: 0.42;
  }

  .page-noise {
    opacity: 0.08;
  }
}

/* =========================================================
   GOLD AWARD BADGE FOR LEADER
   ========================================================= */
.leader-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: #c2410c !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 14px;
}

.leader-award-badge i {
  font-size: 1.05rem;
  color: #ea580c;
  animation: awardPulse 2s infinite ease-in-out;
}

.leader-award-badge:hover {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  border-color: rgba(249, 115, 22, 0.32);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.14);
}

@keyframes awardPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}