.le-page {
  --le-brand: #3384fc;
  --le-ink: #0f172a;
  --le-muted: #64748b;
  --le-line: #93c5fd;
  color: var(--le-ink);
}

.le-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.le-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(51, 132, 252, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(124, 58, 237, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fafc, #fff);
}

.le-hero-inner {
  position: relative;
  padding: 6.5rem 0 3.25rem;
  max-width: 48rem;
}

.le-hero-shell {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .le-hero-shell {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .le-hero-inner {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }
}

.le-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .le-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.le-hero-visual {
  position: relative;
}

.le-stamp-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(51, 132, 252, 0.2), rgba(124, 58, 237, 0.12));
  filter: blur(28px);
}

.le-stamp {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 24px 60px -24px rgba(51, 132, 252, 0.22);
}

.le-stamp-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #f8fafc, #fff);
  padding: 0.75rem 1rem;
}

.le-stamp-dot {
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
}

.le-stamp-url {
  margin-left: 0.25rem;
  flex: 1;
  text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.le-stamp-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.le-stamp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.le-stamp-tags span {
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(51, 132, 252, 0.2);
  background: rgba(239, 246, 255, 0.9);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1d4ed8;
}

.le-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.le-hero-highlights li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(51, 132, 252, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
}

.le-hero-highlights strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--le-ink);
  line-height: 1.35;
}

.le-hero-highlights span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0284c7;
}

.le-aeo {
  padding: 2rem 0 0;
  margin-bottom: 28px;
}

.le-aeo-panel {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(51, 132, 252, 0.2);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.le-aeo-panel h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.le-aeo-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.le-aeo-panel strong {
  font-weight: 650;
  color: #1e3a8a;
}

.le-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.le-crumb a {
  color: #64748b;
}

.le-crumb a:hover {
  color: var(--le-brand);
}

.le-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
}

.le-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.le-lead {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

.le-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.le-tree-section,
.le-roles {
  padding: 4rem 0;
}

.le-tree-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(51, 132, 252, 0.06), transparent 60%),
    #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.le-tree-section--modern {
  background: #fff;
}

.le-section-head {
  max-width: 46rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.le-section-head h2,
.le-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.le-section-head p,
.le-role-card p,
.le-cta p,
.le-roles-note {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.75;
}

.le-roles-note a {
  color: #0369a1;
  font-weight: 600;
}

.le-tree-canvas {
  overflow: auto;
  padding: 2rem 1rem 2.25rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94)),
    repeating-linear-gradient(to right, transparent, transparent 31px, rgba(148, 163, 184, 0.07) 32px);
  box-shadow: 0 24px 60px -36px rgba(15, 23, 42, 0.35);
}

.le-chart-node {
  position: relative;
  z-index: 1;
  width: min(100%, 18rem);
  margin: 0 auto;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 28px -20px rgba(15, 23, 42, 0.4);
  text-align: center;
}

.le-chart-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0284c7;
}

.le-chart-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.le-chart-note {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
}

.le-chart-node--root {
  width: min(100%, 16.5rem);
  border-color: rgba(51, 132, 252, 0.4);
  background: linear-gradient(135deg, #eff6ff, #fff 48%, #f5f3ff);
}

.le-chart-node--root .le-chart-title {
  font-size: 1.15rem;
}

.le-chart-node--exec {
  width: min(100%, 17.5rem);
  border-color: rgba(99, 102, 241, 0.35);
}

.le-chart-node--pm {
  width: min(100%, 19rem);
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(180deg, #fffbeb, #fff);
}

.le-current,
.le-current ol,
.le-modern,
.le-modern ol {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.le-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36rem;
}

.le-current-root {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.le-current-exec,
.le-current-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  width: 100%;
  max-width: 42rem;
  position: relative;
}

.le-current-exec,
.le-current-pm,
.le-current-tracks,
.le-current-track > ol > li {
  position: relative;
}

.le-current-exec,
.le-current-pm,
.le-current-tracks {
  padding-top: 3rem;
}

.le-current-exec {
  padding-bottom: 3rem;
}

.le-current-track > ol > li + li {
  padding-top: 2.5rem;
}

.le-current-root > .le-chart-node--root::after,
.le-current-exec::before,
.le-current-pm::before,
.le-current-tracks::before,
.le-current-track > ol > li + li::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: linear-gradient(#93c5fd, #6366f1);
  transform: translateX(-50%);
}

.le-current-root > .le-chart-node--root::after {
  top: 100%;
  height: 3rem;
}

.le-current-exec::before,
.le-current-pm::before,
.le-current-tracks::before {
  top: 0;
  height: 1.55rem;
}

.le-current-track > ol > li + li::before {
  top: 0;
  height: 2.5rem;
}

.le-current-exec::after,
.le-current-tracks::after {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #93c5fd;
}

.le-current-exec > li,
.le-current-tracks > li {
  position: relative;
  display: flex;
  justify-content: center;
}

.le-current-track > ol {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.le-current-exec > li::before,
.le-current-tracks > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 1.45rem;
  background: #93c5fd;
  transform: translateX(-50%);
}

.le-current-exec > li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 3rem;
  background: #93c5fd;
  transform: translateX(-50%);
}

.le-current-exec {
  background-image: linear-gradient(#93c5fd, #93c5fd);
  background-repeat: no-repeat;
  background-size: 50% 2px;
  background-position: 25% 100%;
}

.le-current-pm {
  width: 100%;
  display: flex;
  justify-content: center;
}

.le-tree--on .le-chart-node,
.le-tree--on .le-modern-item {
  animation: le-rise 0.5s ease forwards;
}

.le-chart-node,
.le-modern-item {
  opacity: 0;
  transform: translateY(12px);
}

@keyframes le-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.le-modern {
  max-width: 42rem;
  margin: 0 auto;
}

.le-modern-root {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.le-modern-root > .le-chart-node--root {
  position: relative;
}

.le-modern-root > .le-chart-node--root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 4.75rem;
  background: linear-gradient(#93c5fd, #6366f1);
  transform: translateX(-50%);
}

.le-modern-exec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3.25rem;
  width: 100%;
  max-width: 42rem;
  position: relative;
  padding: 4.75rem 0 4.5rem;
}

.le-modern-exec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 2.15rem;
  background: linear-gradient(#93c5fd, #6366f1);
  transform: translateX(-50%);
}

.le-modern-exec::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #93c5fd;
}

.le-modern-exec > li {
  position: relative;
  display: flex;
  justify-content: center;
}

.le-modern-exec > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 2.6rem;
  background: #93c5fd;
  transform: translateX(-50%);
}

.le-modern-exec > li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 4.5rem;
  background: #93c5fd;
  transform: translateX(-50%);
}

.le-modern-exec {
  background-image: linear-gradient(#93c5fd, #93c5fd);
  background-repeat: no-repeat;
  background-size: 50% 2px;
  background-position: 25% 100%;
}

.le-modern-list {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-left: 1.75rem;
}

.le-modern-list::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 1.1rem;
  width: 2px;
  background: linear-gradient(#93c5fd, #6366f1);
}

.le-modern-list > li {
  position: relative;
  padding: 0.7rem 0;
}

.le-modern-list > li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 1.55rem;
  width: 1.15rem;
  height: 2px;
  background: #93c5fd;
}

.le-modern-list > li::after {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 1.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid #3384fc;
  border-radius: 9999px;
  background: #fff;
}

.le-modern-item {
  width: 100%;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.9rem;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.4);
}

.le-modern-item .le-chart-title {
  font-size: 1rem;
}

.le-roles-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .le-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.le-role-card {
  height: 100%;
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.1rem;
  background: #fff;
}

.le-role-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.le-role-card h3 a {
  color: inherit;
  text-decoration: none;
}

.le-role-card h3 a:hover {
  color: #1d4ed8;
}

.le-role-layer {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0284c7;
}

.le-cta {
  padding: 0 0 4.5rem;
}

.le-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(51, 132, 252, 0.18);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(245, 243, 255, 0.9));
}

.le-cta-inner h2,
.le-cta-inner p {
  margin-bottom: 0.4rem;
}

.le-cta-inner p {
  max-width: 36rem;
}

.le-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 720px) {
  .le-current {
    min-width: 20rem;
  }

  .le-current-exec,
  .le-current-tracks,
  .le-modern-exec {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

  .le-modern-exec {
    padding-top: 4.75rem;
    padding-bottom: 4.5rem;
  }

  .le-current-exec::after,
  .le-current-tracks::after,
  .le-modern-exec::after,
  .le-current-exec > li::before,
  .le-current-tracks > li::before,
  .le-modern-exec > li::before {
    display: none;
  }

  .le-current-exec > li + li,
  .le-current-tracks > li + li,
  .le-modern-exec > li + li {
    padding-top: 2.25rem;
  }

  .le-modern-exec > li::after {
    display: none;
  }

  .le-modern-exec > li:last-child::after {
    display: block;
    height: 4.5rem;
  }

  .le-current-exec > li + li::before,
  .le-current-tracks > li + li::before,
  .le-modern-exec > li + li::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 2.25rem;
    background: #93c5fd;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .le-tree-section,
  .le-roles {
    padding: 3rem 0;
  }

  .le-tree-canvas {
    padding: 1.25rem 0.75rem 1.5rem;
  }
}
