.fdg_stage {
  position: relative;
  width: 100%;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

.fdg_stage .body[data-anm-fdg-tile] {
  position: relative;
  cursor: pointer;
  padding-right: 72px;
}

.fdg_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--teal);
}

.fdg_toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #d5e2e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
}

.fdg_toggle:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal);
}

.fdg_toggle:focus-visible,
.fdg_close:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.fdg_glyph {
  width: 16px;
  height: 16px;
}

.fdg_overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(4, 8, 16, 0);
  backdrop-filter: blur(var(--fdg-blur, 0px));
  -webkit-backdrop-filter: blur(var(--fdg-blur, 0px));
  pointer-events: none;
  z-index: 80;
}

.fdg_modal {
  position: fixed;
  inset: 0;
  top: var(--nav-h, 73px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(128px);
  pointer-events: none;
  z-index: 90;
}

.fdg_stage.is-open .fdg_overlay,
.fdg_stage.is-open .fdg_modal {
  pointer-events: auto;
}

.fdg_panel {
  position: relative;
  width: min(880px, 100%);
}

.fdg_panel_wide {
  width: min(980px, 100%);
}

.fdg_gradient {
  background-image:
    radial-gradient(16% 88% at 22% 100%, rgba(42, 212, 232, 0.55) 0%, rgba(42, 212, 232, 0) 100%),
    radial-gradient(30% 52% at 34% 100%, rgba(13, 127, 122, 0.55) 0%, rgba(13, 127, 122, 0) 100%),
    radial-gradient(14% 70% at 58% 100%, rgba(42, 212, 232, 0.7) 0%, rgba(42, 212, 232, 0) 100%),
    radial-gradient(24% 96% at 74% 100%, rgba(30, 100, 200, 0.45) 0%, rgba(30, 100, 200, 0) 100%),
    radial-gradient(58% 44% at 10% 100%, rgba(42, 212, 232, 0.4) 0%, rgba(42, 212, 232, 0) 100%),
    radial-gradient(40% 60% at 90% 100%, rgba(13, 127, 122, 0.6) 0%, rgba(13, 127, 122, 0) 100%),
    radial-gradient(82% 78% at 50% 100%, #0d7f7a 0%, rgba(13, 127, 122, 0) 100%);
  filter: blur(22px);
}

.fdg_panel_gradient {
  position: absolute;
  left: -30px;
  right: -30px;
  bottom: -30px;
  height: calc(20% + 30px);
  z-index: 0;
  pointer-events: none;
}

.fdg_sheet {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
  max-height: calc(100dvh - var(--nav-h, 73px));
  overflow-y: auto;
  overflow-x: hidden;
}

.fdg_close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 34, 53, 0.06);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
}

.fdg_close:hover {
  background-color: rgba(15, 34, 53, 0.1);
}

.fdg_sheet_inner {
  padding: clamp(28px, 4vw, 48px);
  padding-top: clamp(56px, 6vw, 64px);
}

.fdg_sheet_grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.fdg_title_mask {
  overflow-x: visible;
  overflow-y: clip;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

.fdg_sheet_kicker {
  margin: 0 0 10px;
  font-family: Figtree, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}

.fdg_sheet_title {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 18ch;
}

.fdg_sheet_lead {
  margin: 12px 0 0;
  max-width: 28ch;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: var(--ink);
}

.fdg_sheet_text {
  margin: 16px 0 0;
  max-width: 440px;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.fdg_list {
  margin: 0;
  padding: 0 36px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.fdg_list_item {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid #e8eff2;
  font-size: .97rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.fdg_list_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--teal);
}

.fdg_list_item_last {
  border-bottom: none;
}

.fdg_media_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(24px, 3vw, 40px);
}

.fdg_media_cell,
.fdg_sheet_media {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #07131a;
}

.fdg_sheet_media {
  margin-top: clamp(24px, 3vw, 40px);
}

.fdg_sheet_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fdg_sheet_media_full {
  height: auto;
}

.fdg_sheet_media_full .fdg_sheet_img {
  height: auto;
  object-fit: contain;
}

.fdg_video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fdg_video_frame {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #07131a;
  border: 1px solid rgba(42, 212, 232, .18);
}

.fdg_video_frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.82);
}

.fdg_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(4, 8, 16, .72);
  border: 1px solid rgba(42, 212, 232, .45);
  display: grid;
  place-items: center;
  color: var(--cyan);
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.fdg_video_play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.fdg_video_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(4, 8, 16, .72);
  border: 1px solid rgba(42, 212, 232, .28);
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fdg_video_scrub {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .22);
  overflow: hidden;
}

.fdg_video_scrub span {
  display: block;
  width: 22%;
  height: 100%;
  background: var(--cyan);
}

.fdg_video_cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.fdg_video_time {
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fdg_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid #e8eff2;
}

.fdg_stat_num {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--ink);
}

.fdg_stat_label {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}

.fdg_outro {
  margin: clamp(32px, 4vw, 56px) auto 12px;
  max-width: 540px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.fdg_live {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
  margin-top: clamp(32px, 4vw, 48px);
  margin-inline: auto;
  max-width: 760px;
}

.fdg_live_video {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #07131a;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(42, 212, 232, .18);
}

.fdg_live_video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fdg_wide_video {
  position: relative;
  margin-top: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  overflow: hidden;
  background: #07131a;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(42, 212, 232, .18);
}

.fdg_wide_video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fdg_live_copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: 42ch;
}

.fdg_live_copy .fdg_sheet_title {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  max-width: 16ch;
}

.fdg_live_copy .fdg_sheet_text {
  max-width: none;
}

.fdg_live_copy .fdg_sheet_text + .fdg_sheet_text {
  margin-top: 14px;
}

.fdg_sectors_band {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  background: var(--deep);
  border-radius: 22px;
  color: #fff;
}

.fdg_sectors_head {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 28px;
}

.fdg_sectors_head h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  color: #fff;
  max-width: none;
}

.fdg_sectors_head p {
  margin: 0;
  color: var(--fog);
  font-size: .98rem;
}

.fdg_sectors {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
}

.fdg_sectors_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-column: 1 / -1;
}

.fdg_sector {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
}

.fdg_sector_icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(13, 127, 122, .1);
  color: var(--teal);
}

.fdg_sector_icon iconify-icon {
  font-size: 1.35rem;
}

.fdg_sector h4 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}

.fdg_sector_tag {
  margin: 0 0 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--teal);
}

.fdg_sector p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 767px) {
  .fdg_stage .body[data-anm-fdg-tile] {
    padding-right: 28px;
    padding-top: 64px;
  }

  .fdg_toggle {
    top: 16px;
    right: 16px;
  }

  .fdg_modal {
    padding: 0 10px 0;
  }

  .fdg_panel_gradient {
    left: -10px;
    right: -10px;
    top: -10px;
    border-radius: 18px 18px 0 0;
  }

  .fdg_sheet {
    max-height: calc(100dvh - var(--nav-h, 73px));
  }

  .fdg_sheet_grid,
  .fdg_media_row,
  .fdg_stats,
  .fdg_sectors,
  .fdg_sectors_row {
    grid-template-columns: 1fr;
  }

  .fdg_live {
    flex-direction: column;
    text-align: center;
  }

  .fdg_live_copy {
    max-width: 46ch;
  }

  .fdg_live_copy .fdg_sheet_title {
    margin-inline: auto;
  }

  .fdg_live_video {
    width: min(220px, 100%);
    flex: 0 0 auto;
  }

  .fdg_media_cell,
  .fdg_sheet_media,
  .fdg_video_frame {
    height: 220px;
  }

  .fdg_sheet_media_full {
    height: auto;
  }
}
