body.theme-a {
  --color-primary: #2b2b2b;
  --color-accent: #c4001a;
  --color-accent-light: #f04a5d;
  --color-bg: #f2efeb;
  --color-surface: #ffffff;
  --color-surface-alt: #e9e4df;
  --color-text: #1b1b1b;
  --color-text-muted: #655e59;
  --color-border: rgba(43, 43, 43, 0.12);
  --font-display: Georgia, "Times New Roman", "Noto Serif TC", serif;
  --font-body: "Segoe UI", "Noto Sans TC", sans-serif;
  background: linear-gradient(180deg, #f3efeb 0%, #ece7e1 100%);
}

.theme-a .navbar {
  width: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.theme-a .navbar__inner {
  position: relative;
}

.theme-a .navbar__drawer {
  justify-content: center;
}

.theme-a .navbar__toggle {
  background: #ffffff;
}

.theme-a .navbar__menu--mega {
  gap: clamp(16px, 1.8vw, 28px);
  margin: 0 auto;
  padding-right: 220px;
}

.theme-a .navbar__tools {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.theme-a .mega-nav__item {
  position: relative;
}

.theme-a .mega-nav__trigger {
  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.94rem;
}

.theme-a .mega-nav__trigger.is-open::after {
  transform: scaleX(1);
}

.theme-a .mega-nav__panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 680px;
  max-width: min(680px, calc(100vw - 80px));
  padding: 24px 28px;
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(22, 22, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 40;
}

.theme-a .mega-nav__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.theme-a .mega-nav__links {
  display: grid;
  gap: 10px 18px;
  align-content: start;
}

.theme-a .mega-nav__links--two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-a .mega-nav__links--three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-a .mega-nav__links a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.45;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.theme-a .mega-nav__links a:hover,
.theme-a .mega-nav__links a:focus-visible {
  background: #f8f2ee;
  color: var(--color-accent);
  transform: translateX(2px);
}

/* A version hero */
.theme-a .hero {
  background:
    linear-gradient(180deg, rgba(43, 43, 43, 0.22), rgba(43, 43, 43, 0.22)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  color: #fff;
}

.theme-a .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
}

.theme-a .hero__content {
  max-width: 780px;
}

.theme-a .hero__title {
  margin-bottom: 14px;
  animation-delay: 100ms;
}

.theme-a .hero__copy,
.theme-a .section--dark .section__copy,
.theme-a .hero .navbar__link {
  color: rgba(255, 255, 255, 0.78);
}

.theme-a .hero__copy {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.55;
  animation-delay: 220ms;
}

.theme-a .hero__actions {
  margin-top: 34px;
  gap: 16px;
  animation-delay: 340ms;
}

.theme-a .hero__actions .button {
  min-width: 172px;
}

.theme-a .hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 700ms ease forwards;
}

.theme-a .section--certification .cert-grid,
.theme-a .section--market .market-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-a .cert-card,
.theme-a .market-card {
  border-radius: 10px;
  box-shadow: none;
}

.theme-a .section--certification {
  background: #f7f4f1;
}

.theme-a .section--insight {
  padding-top: 52px;
  padding-bottom: 52px;
  background: transparent;
}

.theme-a .insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: 50px;
  align-items: start;
}

.theme-a .insight-main {
  display: grid;
  grid-template-rows: auto auto;
  gap: 36px;
  min-width: 0;
}

.theme-a .insight-side {
  min-width: 0;
}

.theme-a .insight-panel,
.theme-a .certificate-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.theme-a .certificate-panel {
  height: 100%;
}

.theme-a .insight-panel__head,
.theme-a .certificate-panel__head {
  margin-bottom: 12px;
}

.theme-a .insight-panel__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.theme-a .insight-panel__title {
  margin: 0;
  padding-left: 14px;
  border-left: 5px solid var(--color-accent);
  font-size: 1.5rem;
  color: var(--color-text);
}

.theme-a .insight-panel__more {
  color: var(--color-text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  white-space: nowrap;
}

.theme-a .insight-panel__more:hover,
.theme-a .insight-panel__more:focus-visible {
  color: var(--color-accent);
}

.theme-a .notice-list {
  display: grid;
  gap: 8px;
}

.theme-a .notice-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.theme-a .notice-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.theme-a .notice-item:hover,
.theme-a .notice-item:focus-visible {
  color: var(--color-accent);
  transform: translateX(2px);
}

.theme-a .notice-item__date {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.theme-a .notice-item__title {
  display: block;
  font-size: 1rem;
  line-height: 1.75;
}

.theme-a .certificate-panel {
  display: flex;
  flex-direction: column;
}

.theme-a .certificate-carousel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.theme-a .certificate-carousel__viewport {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  align-items: center;
  justify-content: center;
}

.theme-a .certificate-card {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: center;
}

.theme-a .certificate-card.is-active {
  display: flex;
}

.theme-a .certificate-card img {
  width: 90%;
  height: 90%;
  max-height: 260px;
  object-fit: contain;
}

.theme-a .certificate-carousel__arrow {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-primary);
  cursor: pointer;
  transform: translateY(-50%);
}

.theme-a .certificate-carousel__arrow:hover {
  background: rgba(255, 214, 214, 0.6);
}

.theme-a .certificate-carousel__arrow--prev {
  left: -15px;
}

.theme-a .certificate-carousel__arrow--next {
  right: -15px;
}

.theme-a .certificate-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.theme-a .certificate-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(43, 43, 43, 0.18);
  cursor: pointer;
}

.theme-a .certificate-carousel__dot.is-active {
  background: var(--color-accent);
}

.theme-a .section--about {
  min-height: 100vh;
  padding-top: 84px;
  padding-bottom: 108px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(196, 0, 26, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
}

.theme-a .about-shell__heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.theme-a .about-shell__heading-en {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.theme-a .about-shell__heading-local {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.theme-a .about-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: stretch;
}

.theme-a .about-feature__media {
  height: 100%;
}

.theme-a .about-feature__content {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  height: 100%;
}

.theme-a .about-feature__content::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 28px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(196, 0, 26, 0.14) 0%,
    rgba(196, 0, 26, 0.08) 34%,
    rgba(196, 0, 26, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.theme-a .about-video {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.08), rgba(18, 18, 18, 0.2)),
    #d9d3cc;
  box-shadow: 0 28px 60px rgba(22, 22, 22, 0.12);
}

.theme-a .about-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 0.06),
    rgba(11, 11, 11, 0.16)
  );
  pointer-events: none;
}

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

.theme-a .about-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
  align-self: start;
}

.theme-a .about-intro__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.theme-a .about-intro__actions {
  margin-top: 10px;
}

.theme-a .about-metrics-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.theme-a .about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(196, 0, 26, 0.28);
  padding-top: 20px;
}

.theme-a .about-metric {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 8px 20px;
}

.theme-a .about-metric + .about-metric {
  border-left: 1px solid rgba(196, 0, 26, 0.22);
}

.theme-a .about-metric:first-child {
  padding-left: 0;
}

.theme-a .about-metric:last-child {
  padding-right: 0;
}

.theme-a .about-metric__value-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
}

.theme-a .about-metric__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.9;
  color: var(--color-primary);
}

.theme-a .about-metric__unit {
  margin-bottom: 6px;
  color: var(--color-text);
  font-weight: 700;
}

.theme-a .about-metric__label {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
}

.theme-a .section--related {
  padding-top: 24px;
  padding-bottom: 96px;
  background: transparent;
}

.theme-a .related-heading {
  margin-bottom: 28px;
}

.theme-a .related-heading__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.theme-a .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.theme-a .related-tile {
  display: grid;
  gap: 14px;
}

.theme-a .related-tile__image {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 24px 52px rgba(22, 22, 22, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.theme-a .related-tile__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.theme-a .related-tile__label::after {
  content: ">";
  color: var(--color-accent);
  font-weight: 700;
}

.theme-a .related-tile:hover .related-tile__image,
.theme-a .related-tile:focus-visible .related-tile__image {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.12);
}

.theme-a .related-tile:hover .related-tile__label,
.theme-a .related-tile:focus-visible .related-tile__label {
  color: var(--color-accent);
}

.theme-a .section--locations {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--color-text);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.08));
  overflow: hidden;
}

.theme-a .locations-map {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.08));
  z-index: 0;
}

.theme-a .locations-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../svg/world_map.svg");
  background-repeat: no-repeat;
  background-size: min(2000px, 250%);
  background-color: #000;
  background-position: calc(50% - 250px) calc(50% - 500px);
  opacity: 0.78;
  filter: grayscale(1) contrast(0.9);
}

.theme-a .locations-map::after {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 90%,
      rgba(196, 0, 26, 0.16),
      rgba(196, 0, 26, 0) 16%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(196, 0, 26, 0.08),
      rgba(196, 0, 26, 0) 24%
    );
  pointer-events: none;
}

.theme-a .locations-map__marker {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -100%);
  z-index: 1;
}

.theme-a .locations-map__marker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.theme-a .locations-map__marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.theme-a .locations-map__marker--taiwan-1 {
  left: 46.5%;
  top: 68%;
}

.theme-a .locations-map__marker--taiwan-2 {
  left: 45.8%;
  top: 70%;
}

.theme-a .locations-map__marker--china {
  left: 42%;
  top: 68%;
}

.theme-a .locations-content {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.theme-a .locations-content__copy {
  max-width: 460px;
  padding: 32px 36px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.theme-a .locations-content__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.theme-a .locations-content__text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.85;
}

html[lang="en"] .theme-a .navbar__menu--mega {
  gap: 16px;
  padding-right: 240px;
}

html[lang="en"] .theme-a .mega-nav__trigger {
  font-size: 0.86rem;
}

html[lang="en"] .theme-a .insight-panel__title-row {
  align-items: flex-start;
}

.theme-a .footer {
  background: #f3efeb;
  color: #170802;
  border-top: 0;
}

.theme-a .footer__grid {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}

.theme-a .footer__brand {
  gap: 18px;
}

.theme-a .footer__nav-group {
  grid-column: auto;
  column-gap: 24px;
  row-gap: 20px;
}

.theme-a .footer__title {
  color: rgba(18, 4, 4, 0.82);
  border-bottom: 1px solid rgba(196, 0, 26, 0.36);
  padding-bottom: 10px;
}

.theme-a .footer__list {
  gap: 8px;
}

.theme-a .footer__list a {
  color: rgba(18, 4, 4, 0.72);
}

.theme-a .footer__list a:hover,
.theme-a .footer__list a:focus-visible {
  color: var(--color-accent);
}

.theme-a .footer__logo {
  width: auto;
  height: 42px;
  display: block;
}

.theme-a .footer .button--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border-color: rgba(23, 8, 2, 0.12);
}

.theme-a .footer__version-link {
  min-height: 36px;
  max-width: 150px;
  padding: 0 14px;
  font-size: 0.84rem;
}

@media (max-width: 960px) {
  .theme-a .footer__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .theme-a .footer__nav-group {
    column-gap: 0;
    row-gap: 0;
  }

  .theme-a .footer__title {
    border-bottom: 0;
    padding-bottom: 0;
    color: #170802;
  }
}

.theme-a .lang-switcher {
  background: rgba(255, 255, 255, 0.9);
}

.theme-a .search-toggle,
.theme-a .search-panel {
  background: #ffffff;
}

.theme-a .search-panel__input {
  background: #f6f1eb;
}

.theme-a .breadcrumb {
  padding: var(--space-1) 0;
}

.theme-a .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}

.theme-a .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 10px;
  color: var(--color-text-muted);
}

.theme-a .page-banner {
  position: relative;
}

.theme-a .page-banner__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(43, 43, 43, 0.72) 0%, rgba(196, 0, 26, 0.3) 100%),
    url("../img/page-banner.jpg") center / cover no-repeat;
  padding: 180px 0 32px var(--space-4);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.theme-a .page-banner__inner::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 70%;
  width: 8px;
  height: 64px;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.theme-a .page-banner__eyebrow {
  display: block;
  margin: 0 0 14px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.theme-a .page-banner__title {
  margin: 0 0 var(--space-3);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.98;
  color: #fff;
  padding-left: 24px;
  letter-spacing: -0.01em;
}

.theme-a .page-banner__subtitle {
  margin: 8px 0 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.theme-a .page-banner__breadcrumb {
  position: absolute;
  left: var(--space-4);
  top: 100px;
  z-index: 1;
}

.theme-a .page-banner__breadcrumb .breadcrumb__list {
  gap: 8px;
}

.theme-a .page-banner__breadcrumb .breadcrumb__link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.theme-a .page-banner__breadcrumb .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(255, 255, 255, 0.52);
}

.theme-a .page-banner__aside {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.theme-a .section--stakeholder-hub {
  padding-top: 66px;
  background-color: "transparent";
  height: calc(100vh - 80px);
}

.theme-a .stakeholder-hub {
  display: grid;
  gap: 28px;
}

.theme-a .stakeholder-hub__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}

.theme-a .stakeholder-hub__copy {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 54ch;
}

.theme-a .stakeholder-hub__cards {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(43, 43, 43, 0.12);
  scrollbar-width: none;
}

.theme-a .stakeholder-hub__cards::-webkit-scrollbar {
  display: none;
}

.theme-a .stakeholder-card-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-text-muted);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.theme-a .stakeholder-card-tab:hover,
.theme-a .stakeholder-card-tab:focus-visible,
.theme-a .stakeholder-card-tab.is-active {
  color: var(--color-accent);
  transition: all 180ms ease;
}

.theme-a .stakeholder-card-tab.is-active .stakeholder-card-tab__title {
  font-weight: 700;
}

.theme-a .stakeholder-card-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.theme-a .stakeholder-card-tab.is-active::after {
  transform: scaleX(1);
}

.theme-a .stakeholder-card-tab__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: currentColor;
}

.theme-a .stakeholder-card-tab__icon svg {
  width: 18px;
  height: 18px;
}

.theme-a .stakeholder-card-tab__body {
  display: inline-flex;
  align-items: center;
}

.theme-a .stakeholder-card-tab__title {
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.theme-a .stakeholder-hub__panel-wrap {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.theme-a .stakeholder-detail {
  display: none;
  gap: 0;
  padding: 6px 0 0;
  background: transparent;
  animation: stakeholderPanelFade 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.theme-a .stakeholder-detail.is-active {
  display: grid;
}

.theme-a .stakeholder-detail__section {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 0;
}

.theme-a .stakeholder-detail__section:first-child {
  padding-top: 0;
  border-top: 0;
}

.theme-a .stakeholder-detail__text {
  margin: 0;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.78;
}

.theme-a .stakeholder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-a .stakeholder-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.theme-a .stakeholder-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
  padding-top: 18px;
}

.theme-a .stakeholder-contact-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.theme-a .stakeholder-contact-card__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--color-accent);
  font-size: 0.96rem;
}

.theme-a .stakeholder-contact-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.theme-a .stakeholder-contact-card__meta {
  margin: 0 0 4px;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-a .stakeholder-contact-card__value {
  margin: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.68;
  word-break: break-word;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes stakeholderPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 960px) {
  .theme-a .navbar__drawer {
    justify-content: initial;
  }

  .theme-a .navbar__tools {
    position: static;
    transform: none;
  }

  .theme-a .navbar--collapsible.is-mobile-open .navbar__menu,
  .theme-a .navbar--collapsible.is-mobile-open .navbar__tools {
    background: #ffffff;
  }

  .theme-a .navbar__menu--mega {
    gap: 0;
  }

  .theme-a .mega-nav__item {
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  }

  .theme-a .mega-nav__trigger {
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .theme-a .mega-nav__panel {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 0 14px;
    padding: 0 0 6px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .theme-a .mega-nav__panel.is-open {
    display: grid;
    transform: none;
  }

  .theme-a .page-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
    padding: var(--space-6) 0 var(--space-5);
  }

  .theme-a .mega-nav__links--two-col,
  .theme-a .mega-nav__links--three-col {
    grid-template-columns: 1fr;
  }

  .theme-a .mega-nav__links {
    gap: 4px;
  }

  .theme-a .mega-nav__links a {
    padding: 8px 0 8px 12px;
    font-size: 0.92rem;
  }

  .theme-a .insight-layout {
    grid-template-columns: 1fr;
  }

  .theme-a .insight-main {
    grid-template-rows: auto;
  }

  .theme-a .stakeholder-hub__header {
    grid-template-columns: 1fr;
  }

  .theme-a .stakeholder-hub__cards {
    gap: 0;
  }

  .theme-a .stakeholder-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .theme-a .about-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-a .about-feature__content::after {
    right: -16px;
    bottom: 8px;
    width: 180px;
    height: 180px;
  }

  .theme-a .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-a .section--locations {
    padding: 88px 0;
  }

  .theme-a .locations-map::before {
    background-size: 170%;
    background-position: calc(50% + 64px) calc(50% - 8px);
  }

  .theme-a .locations-map__marker {
    width: 16px;
    height: 16px;
  }

  .theme-a .locations-content {
    min-height: 300px;
  }

  .theme-a .locations-content__copy {
    max-width: 400px;
    padding: 26px 28px;
  }

  .theme-a .about-video {
    min-height: 360px;
  }

  .theme-a .about-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
    border-top: 1px solid rgba(196, 0, 26, 0.28);
    padding-top: 16px;
  }

  .theme-a .about-metric {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0 0 14px;
    border-left: 2px solid rgba(196, 0, 26, 0.2);
  }

  .theme-a .about-metric + .about-metric {
    border-left: 2px solid rgba(196, 0, 26, 0.2);
  }

  .theme-a .about-metric:first-child,
  .theme-a .about-metric:last-child {
    padding-left: 14px;
    padding-right: 0;
  }

  .theme-a .about-metric__value-row {
    justify-content: flex-start;
    min-width: 0;
  }

  .theme-a .about-metric__label {
    text-align: left;
  }

  .theme-a .notice-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
  }

  .theme-a .insight-panel__title-row {
    align-items: flex-start;
  }

  .theme-a .hero__actions .button {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .theme-a .section--stakeholder-hub {
    padding-top: 36px;
    padding-bottom: 64px;
  }

  .theme-a .stakeholder-hub {
    gap: 20px;
  }

  .theme-a .stakeholder-hub__cards {
    gap: 0;
  }

  .theme-a .stakeholder-card-tab {
    min-height: 46px;
    padding: 0 14px;
  }

  .theme-a .stakeholder-card-tab__icon {
    width: 16px;
    height: 16px;
  }

  .theme-a .stakeholder-detail {
    gap: 14px;
    padding-top: 4px;
  }

  .theme-a .stakeholder-detail__section {
    padding: 20px 0;
  }

  .theme-a .stakeholder-tags {
    gap: 10px;
  }

  .theme-a .stakeholder-tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .theme-a .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .theme-a .hero__actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .theme-a .notice-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .theme-a .insight-panel__title-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .theme-a .certificate-card img {
    max-height: 180px;
  }

  .theme-a .section--related {
    padding-top: 20px;
    padding-bottom: 72px;
  }

  .theme-a .section--locations {
    padding: 72px 0;
  }

  .theme-a .locations-map::before {
    background-size: 225%;
    background-position: calc(50% + 34px) calc(50% + 6px);
    opacity: 0.14;
  }

  .theme-a .locations-map__marker {
    width: 14px;
    height: 14px;
  }

  .theme-a .locations-map__marker::after {
    width: 5px;
    height: 5px;
  }

  .theme-a .locations-content {
    min-height: 240px;
  }

  .theme-a .locations-content__copy {
    padding: 22px 20px;
    max-width: 100%;
  }

  .theme-a .locations-content__title {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .theme-a .locations-content__text {
    margin-bottom: 18px;
    font-size: 0.95rem;
  }

  .theme-a .related-tile__image {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .theme-a .section--about {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 84px;
  }

  .theme-a .about-shell {
    gap: 28px;
  }

  .theme-a .about-video {
    min-height: 260px;
    border-radius: 14px;
  }

  .theme-a .about-metrics-card {
    padding: 12px 0 0;
  }
}
