body.theme-b {
  --color-primary: #24060b;
  --color-accent: #cf233f;
  --color-accent-light: #ff6c7f;
  --color-bg: #f3f4f6;
  --color-surface: rgba(20, 24, 32, 0.84);
  --color-surface-alt: rgba(255, 255, 255, 0.04);
  --color-text: #6a6a6a;
  --color-text-muted: rgba(238, 242, 247, 0.68);
  --color-border: rgba(255, 255, 255, 0.1);
  --panel-tier-1: rgba(255, 255, 255, 0.78);
  --panel-tier-2: rgba(255, 255, 255, 0.58);
  --panel-tier-3: rgba(255, 255, 255, 0.38);
  --tech-deep: #131820;
  --tech-deep-alt: #1b2230;
  --font-display: "Trebuchet MS", "Segoe UI", "Noto Sans TC", sans-serif;
  --font-body: "Segoe UI", "Noto Sans TC", sans-serif;
  background: #f3f4f6;
  position: relative;
}

body.theme-b::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(207, 35, 63, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
}

body.theme-b .page {
  position: relative;
  z-index: 1;
}

.theme-b .navbar.navbar--b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: all 0.25s ease;
}

.theme-b .navbar.navbar--b:hover {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.theme-b .navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.theme-b .navbar__brand img {
  height: 34px;
}

.theme-b .navbar__menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-b .nav-item {
  position: relative;
}

.theme-b .nav-link {
  position: relative;
  padding-left: 18px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    all 0.2s ease,
    color 0.2s ease;
}

.theme-b .nav-link::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 1px;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  transition: all 0.25s ease;
}

.theme-b .nav-item:hover > .nav-link::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 1px;
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.theme-b .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.theme-b .nav-item:hover .dropdown {
  visibility: visible;
  transform: translateY(0);
}

.theme-b .dropdown a {
  color: rgba(82, 82, 82, 0.92);
  text-decoration: none;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 8px;
  transition:
    all 0.2s ease,
    color 0.2s ease;
}

.theme-b .dropdown a:hover {
  background: rgba(207, 35, 63, 0.18);
  color: #fff;
}

.theme-b .navbar__tools {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 13px;
  --tool-surface: rgba(255, 255, 255, 0.56);
  --tool-surface-strong: rgba(255, 255, 255, 0.72);
  --tool-border: rgba(36, 6, 11, 0.1);
  --tool-border-strong: rgba(36, 6, 11, 0.16);
  --tool-shadow:
    0 10px 28px rgba(19, 23, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.theme-b .lang-switcher {
  gap: 8px;
  min-height: 38px;
  padding: 6px 12px;
  border-radius: 999px;
  background: 'transparent';
}

.theme-b .lang-switcher__button {
  min-width: auto;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(36, 6, 11, 0.44);
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.theme-b .lang-switcher__button:hover,
.theme-b .lang-switcher__button:focus-visible {
  color: rgba(36, 6, 11, 0.72);
  background: transparent;
  box-shadow: none;
  outline: none;
}

.theme-b .lang-switcher__button.is-active {
  color: var(--color-accent);
}

.theme-b .navbar__search {
  position: relative;
}

.theme-b .search-toggle {
  width: 38px;
  height: 38px;
  color: rgba(36, 6, 11, 0.68);
}

.theme-b .search-toggle:hover,
.theme-b .search-toggle:focus-visible,
.theme-b .search-toggle.is-active {
  border: "none";
  background: var(--tool-surface-strong);
  box-shadow:
    0 12px 26px rgba(19, 23, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.theme-b .search-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-b .search-panel {
  border-radius: 999px;
}

.theme-b .search-panel.is-open {
  width: 228px;
  margin-left: 8px;
  padding: 4px;
  border-width: 1px;
  background: var(--tool-surface-strong);
  box-shadow:
    0 14px 32px rgba(19, 23, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.theme-b .search-panel__input {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.92);
  color: var(--color-text);
  font-size: 0.84rem;
}

.theme-b .search-panel__input::placeholder {
  color: rgba(36, 6, 11, 0.4);
}

.theme-b .search-panel__submit {
  min-width: 30px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0;
  box-shadow: none;
}

.theme-b .search-panel__submit:hover,
.theme-b .search-panel__submit:focus-visible {
  filter: brightness(1.08);
}

.theme-b .lang-switcher__divider {
  color: rgba(36, 6, 11, 0.28);
}
.theme-b .page-banner__aside,
.theme-b .cert-card,
.theme-b .market-card,
.theme-b .stakeholder-teaser,
.theme-b .stakeholder-card,
.theme-b .file-list,
.theme-b .table-card {
  background: rgba(19, 23, 31, 0.82);
  backdrop-filter: blur(16px);
}

.theme-b .section__header {
  align-items: center;
}

.theme-b .section--stakeholder .stakeholder-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.theme-b .cert-card:nth-child(2),
.theme-b .market-card:nth-child(2),
.theme-b .stakeholder-teaser {
  transform: translateY(32px);
}

.theme-b .page-banner {
  padding-top: 60px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), transparent;
}

.theme-b .stakeholder-b-banner {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 10px;
  width: 100%;
}

.theme-b .stakeholder-b-banner__status {
  position: absolute;
  top: -8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(207, 35, 63, 0.4);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  font-family: "Trebuchet MS", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.theme-b .stakeholder-b-banner__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(207, 35, 63, 0.8);
  animation: stakeholderStatusPulse 1.4s ease-in-out infinite;
}

@keyframes stakeholderStatusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.theme-b .stakeholder-b-banner__eyebrow {
  margin-left:48px;
  color: rgba(36, 6, 11, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.theme-b .stakeholder-b-banner__subtitle {
  margin: 10px 0 0 18px;
  padding-left: 26px;
  color: rgba(36, 6, 11, 0.68);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 560px;
}

.theme-b .stakeholder-b-banner__marker {
  width: 4px;
  height: 4px;
  border: 8px solid var(--color-accent);
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: -8px;
  top: 2px;
}

.theme-b .stakeholder-b-banner .page-banner__title {
  margin: 0 0 0 18px;
  position: relative;
  padding-left: 26px;
  letter-spacing: 0.18em;
  padding-bottom: 0;
}

.theme-b .stakeholder-b-banner__wave {
  width: 100%;
  height: 38px;
  overflow: visible;
}

.theme-b .stakeholder-b-banner__wave path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: stakeholderWaveDraw 3s linear infinite;
}

.theme-b .main {
  padding-top: 80px;
}

.theme-b .breadcrumb {
  position: relative;
  z-index: 2;
  padding: 14px 0 0;
}

.theme-b .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-b .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-b .breadcrumb__item:not(:last-child)::after {
  content: "|";
  color: rgba(36, 6, 11, 0.28);
  font-size: 0.82rem;
  line-height: 1;
}

.theme-b .breadcrumb__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  color: rgba(36, 6, 11, 0.58);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.theme-b a.breadcrumb__link:hover,
.theme-b a.breadcrumb__link:focus-visible {
  color: rgba(36, 6, 11, 0.86);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(171, 96, 96, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  outline: none;
}

.theme-b .breadcrumb__item:last-child .breadcrumb__link {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  color: rgba(36, 6, 11, 0.88);
  border-color: rgba(36, 6, 11, 0.1);
  font-weight: 700;
}

.theme-b .page-banner__aside {
  box-shadow: var(--shadow-strong);
}

.theme-b .stakeholder-b-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 18px;
  align-items: stretch;
}

.theme-b .stakeholder-b-overview__lead,
.theme-b .stakeholder-b-overview__item,
.theme-b .stakeholder-b-panel,
.theme-b .stakeholder-b-resource-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(19, 23, 31, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.theme-b .stakeholder-b-overview__lead {
  grid-row: span 2;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.theme-b .stakeholder-b-overview__lead .section__title {
  margin-bottom: 0;
}

.theme-b .stakeholder-b-overview__item {
  padding: 22px 24px;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
}

.theme-b .stakeholder-b-overview__kicker,
.theme-b .stakeholder-b-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.theme-b .stakeholder-b-overview__kicker::before,
.theme-b .stakeholder-b-panel__label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: rgba(207, 35, 63, 0.5);
}

.theme-b .stakeholder-b-overview__summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

.theme-b .stakeholder-b-card-grid {
  display: grid;
  gap: 18px;
}

.theme-b .stakeholder-b-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "title ."
    "image contact"
    "desc .";
  column-gap: 28px;
  row-gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(19, 23, 31, 0.05);
  transition:
    border-color 0.26s ease,
    transform 0.26s ease,
    box-shadow 0.26s ease;
}

.theme-b .stakeholder-b-card:hover {
  border-color: rgba(207, 35, 63, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(207, 35, 63, 0.12);
}

.theme-b .stakeholder-b-card__title {
  grid-area: title;
  margin: 0;
  color: rgba(36, 6, 11, 0.9);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.theme-b .stakeholder-b-card__image-wrap {
  grid-area: image;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.28);
}

.theme-b .stakeholder-b-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.theme-b .stakeholder-b-card__description {
  grid-area: desc;
  margin: 0;
  color: rgba(36, 6, 11, 0.68);
  font-size: 0.92rem;
  line-height: 1.8;
}

.theme-b .stakeholder-b-card__contact-list {
  grid-area: contact;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  align-content: start;
  height: 100%;
  min-height: 100%;
  border-top: 1px solid rgba(36, 6, 11, 0.1);
}

.theme-b .stakeholder-b-card__contact-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(207, 35, 63, 0.42) 0%,
    rgba(207, 35, 63, 0.16) 100%
  );
}

.theme-b .stakeholder-b-card__contact-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(36, 6, 11, 0.12);
}

.theme-b .stakeholder-b-card__contact-item::before {
  content: "";
  width: 18px;
  height: 18px;
  grid-row: 1 / span 2;
  margin-top: 2px;
  background-color: var(--color-accent);
  opacity: 0.9;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.theme-b .stakeholder-b-card__contact-item:first-child {
  padding-top: 14px;
}

.theme-b .stakeholder-b-card__contact-item--person::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.5' fill='black'/%3E%3Cpath d='M5 19c1.7-3 4.2-4.5 7-4.5S17.3 16 19 19' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.5' fill='black'/%3E%3Cpath d='M5 19c1.7-3 4.2-4.5 7-4.5S17.3 16 19 19' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.theme-b .stakeholder-b-card__contact-item--phone::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.7 4.8h2.3l1.2 4.1-1.6 1.6a13.5 13.5 0 0 0 3.9 3.9l1.6-1.6 4.1 1.2v2.3c0 .8-.7 1.5-1.5 1.5A13.7 13.7 0 0 1 4.8 6.3c0-.8.7-1.5 1.5-1.5Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.7 4.8h2.3l1.2 4.1-1.6 1.6a13.5 13.5 0 0 0 3.9 3.9l1.6-1.6 4.1 1.2v2.3c0 .8-.7 1.5-1.5 1.5A13.7 13.7 0 0 1 4.8 6.3c0-.8.7-1.5 1.5-1.5Z' fill='black'/%3E%3C/svg%3E");
}

.theme-b .stakeholder-b-card__contact-item--email::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='6' width='16' height='12' rx='2' fill='black'/%3E%3Cpath d='m5.5 8 6.5 5 6.5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='6' width='16' height='12' rx='2' fill='black'/%3E%3Cpath d='m5.5 8 6.5 5 6.5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.theme-b .stakeholder-b-card__contact-item--mailbox::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 7.5A1.5 1.5 0 0 1 6 6h4l1.5 2H18a1.5 1.5 0 0 1 1.5 1.5V17A1.5 1.5 0 0 1 18 18.5H6A1.5 1.5 0 0 1 4.5 17V7.5Z' fill='black'/%3E%3Cpath d='M8 12h8M8 15h5' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 7.5A1.5 1.5 0 0 1 6 6h4l1.5 2H18a1.5 1.5 0 0 1 1.5 1.5V17A1.5 1.5 0 0 1 18 18.5H6A1.5 1.5 0 0 1 4.5 17V7.5Z' fill='black'/%3E%3Cpath d='M8 12h8M8 15h5' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.theme-b .stakeholder-b-card__contact-label {
  grid-column: 2;
  color: rgba(36, 6, 11, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.theme-b .stakeholder-b-card__contact-value {
  grid-column: 2;
  color: rgba(36, 6, 11, 0.84);
  font-size: 0.94rem;
  line-height: 1.7;
  word-break: break-word;
}

.theme-b .stakeholder-b-card__contact-item--primary .stakeholder-b-card__contact-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(36, 6, 11, 0.94);
}

.theme-b .stakeholder-b-card__contact-item--secondary .stakeholder-b-card__contact-value {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(36, 6, 11, 0.72);
}

.theme-b .stakeholder-b-card__contact-item--secondary::before {
  opacity: 0.55;
}

.theme-b .stakeholder-b-resources__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.theme-b .stakeholder-b-resource-card {
  padding: 26px;
}

.theme-b .stakeholder-b-file-list {
  margin-top: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.theme-b .stakeholder-b-file-list .file-list__row {
  grid-template-columns: minmax(0, 1fr);
  padding-inline: 18px;
}

.theme-b .tab-button {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1024px) {
  .theme-b .navbar__tools {
    gap: 10px;
  }

  .theme-b .search-panel.is-open {
    width: 220px;
  }

  .theme-b .stakeholder-b-overview__grid,
  .theme-b .stakeholder-b-resources__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-b .stakeholder-b-overview__lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .theme-b .stakeholder-b-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "desc"
      "contact";
  }
}

@media (max-width: 640px) {
  .theme-b .breadcrumb {
    padding-top: 12px;
  }

  .theme-b .breadcrumb__list,
  .theme-b .breadcrumb__item {
    gap: 8px;
  }

  .theme-b .breadcrumb__link {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .theme-b .lang-switcher {
    min-height: 38px;
    padding: 6px 10px;
    border-radius: 999px;
  }

  .theme-b .lang-switcher__button {
    padding: 0;
    font-size: 0.88rem;
  }

  .theme-b .search-toggle {
    width: 38px;
    height: 38px;
  }

  .theme-b .search-panel.is-open {
    width: min(72vw, 220px);
    margin-left: 8px;
  }

  .theme-b .stakeholder-b-overview__grid,
  .theme-b .stakeholder-b-resources__grid {
    grid-template-columns: 1fr;
  }

  .theme-b .stakeholder-b-overview__lead,
  .theme-b .stakeholder-b-overview__item,
  .theme-b .stakeholder-b-card,
  .theme-b .stakeholder-b-resource-card {
    border-radius: 20px;
  }

  .theme-b .stakeholder-b-banner .page-banner__title {
    padding-left: 22px;
    letter-spacing: 0.12em;
  }

  .theme-b .stakeholder-b-banner__marker {
    width: 18px;
    height: 18px;
    border-width: 6px;
    top: 4px;
  }

  .theme-b .stakeholder-b-card,
  .theme-b .stakeholder-b-resource-card,
  .theme-b .stakeholder-b-overview__lead {
    padding: 20px;
  }

  .theme-b .stakeholder-b-card {
    gap: 24px;
  }
}

@keyframes stakeholderWaveDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.theme-b .footer {
  width: 100%;
  margin: 0;
  padding: 56px 24px 36px;
  background: var(--tech-deep);
  color: #d8dde5;
  border-top: 1px solid rgba(207, 35, 63, 0.36);
  position: relative;
  overflow: hidden;
}

.theme-b .footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: 40%;
  max-width: 480px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: translateX(-50%);
}

.theme-b .footer .footer__grid {
  max-width: 1440px;
  margin: 0 auto;
}

.theme-b .footer .footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  gap: 36px;
  align-items: start;
}

.theme-b .footer .footer__nav-group {
  grid-column: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.theme-b .footer .footer__col {
  gap: 14px;
}

.theme-b .footer .footer__title {
  position: relative;
  color: #eff2f6;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  padding-left: 14px;
}

.theme-b .footer .footer__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(207, 35, 63, 0.7);
  transform: translateY(-50%);
}

.theme-b .footer .footer__list a {
  color: rgba(216, 221, 229, 0.66);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.6;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.theme-b .footer .footer__list a:hover {
  color: var(--color-accent-light);
  transform: translateX(3px);
}

.theme-b .footer .footer__link-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.theme-b .footer .footer__link-separator {
  color: rgba(173, 173, 173, 0.4);
  font-size: 0.9rem;
  line-height: 1;
}

.theme-b .footer .footer__brand {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 18px;
  min-width: 220px;
  padding-left: 28px;
  border-left: 1px solid rgba(207, 35, 63, 0.32);
}

.theme-b .footer .footer__logo {
  filter: brightness(0) invert(1) opacity(0.9);
}

.theme-b .footer .footer__logo {
  width: min(180px, 100%);
  height: auto;
}

.theme-b .footer .footer__version-link {
  margin-left: 0;
}

.theme-b .footer .button--secondary {
  display: inline-flex;
  font-size: 0.6rem;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(160, 160, 160, 0.9);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.theme-b .footer .button--secondary::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 10px;
  flex: 0 0 auto;
  background:
    linear-gradient(currentColor, currentColor) left center / 15px 1.5px
      no-repeat,
    linear-gradient(
        45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px top 1px / 8px 8px no-repeat,
    linear-gradient(
        -45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px bottom 1px / 8px 8px no-repeat;
  transition: transform 0.22s ease;
}

.theme-b .footer .button--secondary:hover {
  background: rgba(207, 35, 63, 0.12);
  border-color: rgba(207, 35, 63, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.theme-b .footer .button--secondary:hover::after {
  transform: translateX(5px);
}

.theme-b .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: clip;
}

.theme-b .hero::before,
.theme-b .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.theme-b .hero::before {
  top: 96px;
  left: max(-120px, calc(50% - 760px));
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(207, 35, 63, 0.18) 0%,
    rgba(207, 35, 63, 0.08) 34%,
    rgba(207, 35, 63, 0) 72%
  );
  filter: blur(18px);
}

.theme-b .hero::after {
  left: max(12px, calc(50% - 540px));
  top: 178px;
  width: 180px;
  height: 180px;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.32) 0 1px,
      transparent 1px
    ),
    transparent;
  background-size: 18px 18px;
  opacity: 0.32;
}

.theme-b .hero__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
  padding: 0 24px;
}

.theme-b .hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.theme-b .hero__title {
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 780;
  color: #24060b;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 9ch;
}

.theme-b .hero__copy {
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: rgba(27, 31, 39, 0.7);
  margin-bottom: 34px;
  margin-left: 4px;
}

.theme-b .hero__news {
  position: relative;
  min-height: 212px;
  padding: 22px 24px 20px;
  /* border: 1px solid rgba(27, 31, 39, 0.08); */
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.38)
    ),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(232, 70, 84, 0.08);
}

.theme-b .hero__news::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(207, 35, 63, 0.18),
    rgba(255, 255, 255, 0.6),
    rgba(27, 31, 39, 0.08)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.theme-b .hero__news-header,
.theme-b .hero__news-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.theme-b .hero__news-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(27, 31, 39, 0.48);
}

.theme-b .hero__news-more {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.theme-b .hero__news-more:hover {
  color: #a8122e;
}

.theme-b .hero__news-viewport {
  position: relative;
  min-height: 108px;
  margin: 20px 0 18px;
}

.theme-b .hero__news-item {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.theme-b .hero__news-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-b .hero__news-date {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(27, 31, 39, 0.45);
}

.theme-b .hero__news-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.theme-b .hero__news-link:hover {
  color: var(--color-accent);
}

.theme-b .hero__news-progress {
  position: relative;
  flex: 1 1 auto;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(27, 31, 39, 0.08);
}

.theme-b .hero__news-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  background: linear-gradient(
    90deg,
    rgba(207, 35, 63, 0.9),
    rgba(255, 108, 127, 0.75)
  );
}

.theme-b .hero__news-progress-bar.is-animating {
  animation: heroNewsProgress var(--hero-news-duration, 4.8s) linear forwards;
}

.theme-b .hero__news-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theme-b .hero__news-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(27, 31, 39, 0.18);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease;
}

.theme-b .hero__news-dot.is-active {
  width: 28px;
  background: var(--color-accent);
}

.theme-b .hero__visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  margin-left: auto;
}

.theme-b .hero__video-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="960 189 787 793" xmlns="http://www.w3.org/2000/svg"><path d="M1379.21 189C1397.73 189 1412.75 198.507 1412.75 222.554C1412.75 246.602 1392.07 312.032 1416.66 348.383C1441.25 384.733 1668.19 353.975 1698.37 353.975C1728.55 353.975 1747 366.202 1747 384.733V948.446C1747 966.977 1731.99 982 1713.46 982H1142.22C1123.7 982 1112.03 972.493 1108.68 948.446C1105.33 924.398 1127.13 837.157 1108.68 819.821C1090.24 802.484 1010.86 823.176 991.301 819.821C971.738 816.465 960 804.798 960 786.267V222.554C960 204.023 975.015 189 993.537 189H1379.21Z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="960 189 787 793" xmlns="http://www.w3.org/2000/svg"><path d="M1379.21 189C1397.73 189 1412.75 198.507 1412.75 222.554C1412.75 246.602 1392.07 312.032 1416.66 348.383C1441.25 384.733 1668.19 353.975 1698.37 353.975C1728.55 353.975 1747 366.202 1747 384.733V948.446C1747 966.977 1731.99 982 1713.46 982H1142.22C1123.7 982 1112.03 972.493 1108.68 948.446C1105.33 924.398 1127.13 837.157 1108.68 819.821C1090.24 802.484 1010.86 823.176 991.301 819.821C971.738 816.465 960 804.798 960 786.267V222.554C960 204.023 975.015 189 993.537 189H1379.21Z" fill="black"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
}

.theme-b .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-b .hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 35, 63, 0.1), transparent);
}

.theme-b .hero__video-hud {
  position: absolute;
  border: 8px solid var(--color-accent);
  z-index: 3;
  pointer-events: none;
}

.theme-b .hero__video-hud--top {
  top: -15px;
  right: -15px;
  border-color: var(--color-accent);
}

.theme-b .hero__video-hud--bottom {
  bottom: -15px;
  left: -15px;
  border-color: var(--color-accent);
}

.theme-b .hero__video-hud--left {
  top: -20px;
  left: -15px;
  border-color: var(--color-accent);
}

.theme-b .button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.theme-b .button:hover {
  transform: translateY(-2px);
}

.theme-b .button--primary {
  border: 1px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 10px 28px rgba(207, 35, 63, 0.1);
  position: relative;
}

.theme-b .button--primary::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 10px;
  flex: 0 0 auto;
  background:
    linear-gradient(currentColor, currentColor) left center / 15px 1.5px
      no-repeat,
    linear-gradient(
        45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px top 1px / 8px 8px no-repeat,
    linear-gradient(
        -45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px bottom 1px / 8px 8px no-repeat;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.theme-b .button--primary:hover {
  background: #fff;
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 14px 34px rgba(207, 35, 63, 0.16);
}

.theme-b .button--primary:hover::after {
  transform: translateX(6px);
}

.theme-b .button--primary:focus-visible {
  outline: 2px solid rgba(207, 35, 63, 0.28);
  outline-offset: 3px;
}

.theme-b .button--secondary {
  border: 1px solid rgba(207, 35, 63, 0.4);
  color: var(--color-accent);
  background: transparent;
  margin-left: 10px;
}

.theme-b .about {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  width: min(100%, 1360px);
  height: 100%;
  margin: 0 auto;
  padding: 120px 24px 132px;
  overflow: hidden;
}

.theme-b .about::before,
.theme-b .about::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.theme-b .about::before {
  right: 0;
  top: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(207, 35, 63, 0.22) 0%,
    rgba(207, 35, 63, 0.1) 40%,
    rgba(207, 35, 63, 0) 76%
  );
  transform: translate(-50%, -24%);
  filter: blur(16px);
}

.theme-b .about::after {
  left: calc(50% + 8px);
  top: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 108, 127, 0.18) 0%,
    rgba(255, 108, 127, 0) 72%
  );
  transform: translate(-50%, 8%);
  filter: blur(12px);
}

.theme-b .about__column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.theme-b .about__column--left {
  align-content: start;
  gap: 42px;
}

.theme-b .about__column--right {
  align-content: start;
  padding-top: 64px;
  gap: 18px;
}

.theme-b .about__metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto;
}

.theme-b .about__metric {
  width: 130px;
  min-height: 130px;
  padding: 16px 12px;
  margin-right: 50px;
  border-radius: 50%;
  border: 1px solid rgba(207, 35, 63, 0.26);
  background: transparent;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.theme-b .about__metric {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(207, 35, 63, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.theme-b .about__metric::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(207, 35, 63, 0.25), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.theme-b .about__metric::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );

  transform: translateX(-100%);
  transition: 0.6s;
}

.theme-b .about__metric:hover::before {
  opacity: 1;
}

.theme-b .about__metric:hover::after {
  transform: translateX(100%);
}

.theme-b .about__metric-value {
  margin: 0 0 4px;
  font-size: clamp(1rem, 1.8vw, 1.34rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
}

.theme-b .about__metric-label {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(36, 6, 11, 0.64);
}

.theme-b .about__content {
  position: relative;
  align-self: start;
  width: 100%;
  z-index: 2;
  animation: aboutFadeUpB 0.8s ease both;
}

.theme-b .about__label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(36, 6, 11, 0.52);
}

.theme-b .about__title {
  font-size: clamp(1rem, 4vw, 1.6rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--color-accent);
}

.theme-b .about__text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 0 30px;
  color: rgba(36, 6, 11, 0.72);
}

.theme-b .about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.theme-b .about__video-button {
  margin-left: 0;
}

.theme-b .about__card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition:
    transform 0.4s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: aboutImgInB 0.9s ease forwards;
  box-shadow: none;
}

.theme-b .about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 14, 0.02),
    rgba(8, 10, 14, 0.72)
  );
}

.theme-b .about__card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0) 72%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  transition:
    transform 0.42s ease,
    opacity 0.3s ease;
}

.theme-b .about__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.theme-b .about_card--left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.theme-b .about__card--primary {
  width: min(29vw, 340px);
  aspect-ratio: 0.68;
  min-height: 520px;
  transform: translateY(0);
  animation-delay: 0.2s;
}

.theme-b .about__card--secondary {
  margin-left: 50px;
  width: min(29vw, 340px);
  aspect-ratio: 0.68;
  min-height: 600px;
  transform: translateY(0);
  animation-delay: 0.4s;
}

.theme-b .about__card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.theme-b .about__card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.theme-b .about__card-icon::before,
.theme-b .about__card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.theme-b .about__card-icon::before {
  width: 13px;
  height: 1.5px;
  background: var(--color-accent);
  transform: translate(-58%, -50%);
}

.theme-b .about__card-icon::after {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--color-accent);
  border-right: 1.5px solid var(--color-accent);
  transform: translate(-10%, -50%) rotate(45deg);
}

.theme-b .about__card-label {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.theme-b .about__card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.theme-b .about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 24, 32, 0.12);
}

.theme-b .about__card:hover img {
  transform: scale(1.05);
}

.theme-b .about__card:hover::before {
  transform: translate(-50%, -50%) scale(18);
  opacity: 1;
}

.theme-b .about__card:hover .about__card-icon {
  background: var(--color-accent);
  border-color: rgba(207, 35, 63, 0.84);
  box-shadow: 0 10px 22px rgba(207, 35, 63, 0.22);
  transform: translateY(-2px);
}

.theme-b .about__card:hover .about__card-icon::before {
  background: #fff;
  transform: translate(-50%, -50%);
}

.theme-b .about__card:hover .about__card-icon::after {
  border-top-color: #fff;
  border-right-color: #fff;
  transform: translate(-2%, -50%) rotate(45deg);
}

.theme-b .feature--scroll {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
}

.theme-b .feature__wrapper {
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  border-radius: 40px 40px 0 0;
  background:
    radial-gradient(
      circle at 14% 16%,
      rgba(207, 35, 63, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 22%,
      rgba(98, 134, 210, 0.1),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(250, 251, 252, 0.98) 0%,
      rgba(244, 247, 250, 0.92) 64%,
      rgba(243, 246, 250, 0) 100%
    );
  border: 1px solid rgba(36, 6, 11, 0.08);
  border-bottom: none;
  padding: 92px 88px 56px;
  position: relative;
  overflow: hidden;
}

.theme-b .feature__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(36, 6, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 6, 11, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.theme-b .feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 16px;
  align-items: center;
  min-height: calc(100vh - 148px);
}

.theme-b .feature__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(360px, 54vh, 520px);
  padding: 18px 28px 22px 32px;
}

.theme-b .feature__intro {
  max-width: 520px;
  margin-bottom: 42px;
}

.theme-b .feature__eyebrow {
  margin: 0 0 14px;
  color: rgba(36, 6, 11, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.theme-b .feature__heading {
  margin: 0;
  color: #1c1619;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.theme-b .feature__panels {
  position: relative;
  min-height: 270px;
  max-width: 500px;
  margin-bottom: 18px;
}

.theme-b .feature__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.theme-b .feature__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-b .feature__panel-kicker {
  color: rgba(207, 35, 63, 0.42);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.theme-b .feature__title {
  color: #23161a;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.theme-b .feature__copy {
  color: rgba(49, 35, 40, 0.74);
  font-size: 1rem;
  line-height: 1.95;
  margin: 0 0 30px;
}

.theme-b .feature__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  width: fit-content;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(36, 6, 11, 0.1);
  position: relative;
  margin-top: auto;
  max-width: 500px;
}

.theme-b .feature__tab {
  position: relative;
  padding: 0 0 12px 16px;
  border: none;
  background: transparent;
  color: rgba(36, 6, 11, 0.48);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.theme-b .feature__tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(207, 35, 63, 0.4);
  background: transparent;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.theme-b .feature__tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf233f, rgba(207, 35, 63, 0.38));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-b .feature__tab:hover {
  color: rgba(36, 6, 11, 0.72);
}

.theme-b .feature__tab:hover::before {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(207, 35, 63, 0.5);
}

.theme-b .feature__tab.is-active {
  color: var(--color-accent);
}

.theme-b .feature__tab.is-active::before {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(207, 35, 63, 0.6);
  animation: featureTabPulseB 2s ease-in-out infinite;
}

.theme-b .feature__tab.is-active::after {
  transform: scaleX(1);
}

@keyframes featureTabPulseB {
  0%, 100% {
    box-shadow: 0 0 8px rgba(207, 35, 63, 0.45);
  }
  50% {
    box-shadow: 0 0 18px rgba(207, 35, 63, 0.85);
  }
}

.theme-b .feature__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.theme-b .feature__media-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.theme-b .feature__media-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-b .feature__media-inner {
  position: relative;
  width: 100%;
  height: clamp(360px, 54vh, 520px);
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(20, 24, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(19, 23, 31, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 54px rgba(207, 35, 63, 0.08);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-b .feature__media:hover .feature__media-inner {
  transform: scale(1.015);
  box-shadow:
    0 34px 76px rgba(19, 23, 31, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 62px rgba(207, 35, 63, 0.1);
}

.theme-b .feature__media-inner::before,
.theme-b .feature__media-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.theme-b .feature__media-inner::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 76%);
  opacity: 0.18;
}

.theme-b .feature__media-inner::after {
  inset: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(207, 35, 63, 0.24);
  border-bottom: 1px solid rgba(98, 134, 210, 0.2);
  border-radius: 22px;
}

.theme-b .feature__media-panel::before,
.theme-b .feature__media-panel::after {
  content: "";
  position: absolute;
  z-index: 3;
  border: 8px solid var(--color-accent);
  background: var(--color-accent);
  pointer-events: none;
}

.theme-b .feature__media-panel::before {
  top: 7%;
  right: 5%;
  width: 2px;
  height: 2px;
}

.theme-b .feature__media-panel::after {
  left: 5%;
  bottom: 10%;
  width: 3px;
  height: 3px;
}

.theme-b .feature__media-inner video,
.theme-b .feature__media-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.94) contrast(1.04);
  transform: scale(1.02);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-b .feature__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: "transparent";
  border: 1px solid #fbd2d8;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.theme-b .feature__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(207, 35, 63, 0.18),
    transparent 80%
  );

  opacity: 0;
  transform: translateX(-40%);
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.theme-b .feature__button::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 10px;

  background:
    linear-gradient(currentColor, currentColor) left center / 15px 1.5px
      no-repeat,
    linear-gradient(
        45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px top 1px / 8px 8px no-repeat,
    linear-gradient(
        -45deg,
        transparent 46%,
        currentColor 47% 56%,
        transparent 57%
      )
      right 1px bottom 1px / 8px 8px no-repeat;

  transition: transform 0.35s ease;
}

.theme-b .feature__button:hover {
  color: #fff;
  background: var(--color-accent);
}

.theme-b .feature__button:hover::before {
  opacity: 1;
  transform: translateX(40%);
}

.theme-b .feature__button:hover::after {
  transform: translateX(6px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFadeUpB {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===== RWD ===== */

@media (max-width: 900px) {
  .theme-b .about {
    flex-direction: column;
    gap: 36px;
    padding: 80px 20px 96px;
  }

  .theme-b .about__column {
    justify-items: stretch;
  }

  .theme-b .about__column--left {
    gap: 28px;
  }

  .theme-b .about__column--right {
    padding-top: 0;
  }

  .theme-b .about__metrics {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .theme-b .about__content {
    max-width: none;
  }

  .theme-b .about__card--primary {
    width: min(52vw, 340px);
    min-height: 0;
  }

  .theme-b .about__card--secondary {
    width: min(42vw, 260px);
    min-height: 0;
  }

  .theme-b .feature {
    min-height: auto;
    padding: 0 20px;
  }

  .theme-b .feature--scroll .feature__wrapper {
    min-height: auto;
    padding: 50px 32px 5px;
    border-radius: 32px 32px 0 0;
  }

  .theme-b .feature--scroll .feature__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .theme-b .feature--scroll .feature__content {
    order: 2;
    min-height: auto;
    padding: 10px 18px 18px 18px;
  }

  .theme-b .feature__intro {
    margin-bottom: 32px;
  }

  .theme-b .feature--scroll .feature__panel {
    max-width: none;
    position: relative;
    min-height: 220px;
  }

  .theme-b .feature__content,
  .theme-b .feature__text {
    max-width: none;
  }

  .theme-b .feature--scroll .feature__media {
    order: 1;
    height: auto;
    min-height: 360px;
  }

  .theme-b .feature--scroll .feature__media-inner {
    height: clamp(300px, 42vh, 400px);
    min-height: 280px;
  }

  .theme-b .feature__tabs {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .theme-b .about {
    padding: 64px 18px 80px;
    gap: 28px;
  }

  .theme-b .about::before {
    left: 50%;
    top: auto;
    bottom: 28px;
    width: 180px;
    height: 180px;
    transform: translateX(-12%);
  }

  .theme-b .about::after {
    left: 50%;
    top: auto;
    bottom: 86px;
    width: 110px;
    height: 110px;
    transform: translateX(-36%);
  }

  .theme-b .about__text {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .theme-b .about__metrics {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
  }

  .theme-b .about__metric {
    width: 92px;
    min-height: 92px;
    padding: 12px 10px;
  }

  .theme-b .about__card--primary,
  .theme-b .about__card--secondary {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 1.16;
    min-height: 0;
  }

  .theme-b .about__card-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .theme-b .about__card-icon {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .theme-b .about__card-title {
    font-size: 1.2rem;
  }

  .theme-b .feature {
    padding: 0 18px;
  }

  .theme-b .feature::before {
    top: 240px;
    right: -52px;
    width: 180px;
    height: 180px;
  }

  .theme-b .feature::after {
    left: auto;
    right: 20px;
    top: 24px;
    width: 96px;
    height: 96px;
  }

  .theme-b .feature--scroll .feature__wrapper {
    padding: 78px 20px 44px;
    border-radius: 28px 28px 0 0;
  }

  .theme-b .feature__heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .theme-b .feature--scroll .feature__content {
    padding: 6px 10px 16px;
  }

  .theme-b .feature__panels {
    min-height: 320px;
    margin-bottom: 32px;
  }

  .theme-b .feature--scroll .feature__panel {
    min-height: 300px;
  }

  .theme-b .feature--scroll .feature__media {
    min-height: 300px;
  }

  .theme-b .feature__media::before {
    width: 76px;
    height: 76px;
    top: 14px;
    right: 14px;
    border-top-width: 6px;
    border-right-width: 6px;
  }

  .theme-b .feature__media::after {
    left: 14px;
    bottom: 14px;
    width: 94px;
    height: 38px;
    border-left-width: 6px;
    border-bottom-width: 6px;
  }

  .theme-b .feature--scroll .feature__media-inner {
    height: 240px;
    min-height: 240px;
    border-radius: 22px;
  }

  .theme-b .feature__tabs {
    gap: 14px 18px;
  }

  .theme-b .feature__tab {
    font-size: 0.84rem;
    padding-bottom: 10px;
  }

  .theme-b .feature__media-panel::before {
    top: 12%;
    right: 8%;
    width: 34px;
    height: 34px;
  }

  .theme-b .feature__media-panel::after {
    left: 8%;
    bottom: 14%;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 960px) {
  .theme-b .footer {
    margin-top: 0;
    padding: 32px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  .theme-b .footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-b .footer .footer__brand {
    order: -1;
    justify-self: start;
    justify-items: start;
    min-width: 0;
    padding-left: 0;
    padding-bottom: 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .theme-b .footer .footer__nav-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .theme-b .footer .footer__col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .theme-b .footer .footer__toggle {
    color: rgba(255, 255, 255, 0.92);
  }

  .theme-b .footer .footer__toggle::after {
    color: rgba(255, 255, 255, 0.6);
  }

  .theme-b .footer .footer__list {
    padding: 0 0 16px;
  }
}

@media (max-width: 960px) {
  .theme-b .hero__inner {
    grid-template-columns: 1fr;
    padding: 120px 20px 60px;
  }

  .theme-b .hero__content {
    order: 2;
  }
  .theme-b .hero__visual {
    order: 1;
  }
  .theme-b .hero__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 960px) {
  .theme-b .navbar {
    background: rgba(9, 11, 16, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .theme-b .navbar__drawer {
    justify-content: initial;
  }

  .theme-b .hero {
    min-height: auto;
  }

  .theme-b .hero::before {
    width: 320px;
    height: 320px;
    top: 84px;
    left: -80px;
    opacity: 0.92;
  }

  .theme-b .hero::after {
    left: 18px;
    top: 140px;
    width: 132px;
    height: 132px;
    opacity: 0.24;
  }

  .theme-b .hero__inner {
    min-height: auto;
    padding: 112px 24px 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-b .hero__content {
    order: 2;
    max-width: none;
    margin: 0 auto;
  }

  .theme-b .hero__title,
  .theme-b .hero__copy {
    max-width: none;
  }

  .theme-b .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }

  .theme-b .hero__copy {
    max-width: 28ch;
  }

  .theme-b .hero__news {
    min-height: 198px;
  }

  .theme-b .hero__visual {
    order: 1;
  }

  .theme-b .hero__visual-shell {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
  }

  .theme-b .hero__visual-frame {
    min-height: 360px;
  }

  .theme-b .cert-card:nth-child(2),
  .theme-b .market-card:nth-child(2),
  .theme-b .stakeholder-teaser {
    transform: none;
  }
}

@media (max-width: 640px) {
  .theme-b .hero__inner {
    padding: 96px 18px 36px;
  }

  .theme-b .hero__title {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }

  .theme-b .hero__copy {
    max-width: 100%;
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .theme-b .hero__news {
    min-height: 224px;
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .theme-b .hero__news-header,
  .theme-b .hero__news-footer {
    gap: 12px;
  }

  .theme-b .hero__news-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .theme-b .hero__news-more {
    font-size: 0.82rem;
  }

  .theme-b .hero__news-viewport {
    min-height: 122px;
    margin: 18px 0 16px;
  }

  .theme-b .hero__news-link {
    font-size: 1rem;
    line-height: 1.58;
  }

  .theme-b .hero__visual-frame {
    min-height: 270px;
  }

  .theme-b .hero__video-grid {
    background-size: 52px 52px;
  }

  .theme-b .hero__video-hud--top {
    top: 18px;
    right: 18px;
    width: 76px;
    height: 76px;
  }

  .theme-b .hero__video-hud--bottom {
    left: 18px;
    bottom: 20px;
    width: 108px;
    height: 44px;
  }
}

@keyframes heroNewsProgress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes heroContentInB {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroVisualInB {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

.theme-b .video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  z-index: 1200;
}

.theme-b .video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.theme-b .video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 18, 0.72);
  backdrop-filter: blur(8px);
}

.theme-b .video-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(250, 251, 252, 0.96) 0%,
      rgba(242, 245, 248, 0.92) 100%
    );
  border: 1px solid rgba(36, 6, 11, 0.1);
  box-shadow: 0 30px 70px rgba(19, 23, 31, 0.24);
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-b .video-modal.is-open .video-modal__dialog {
  transform: translateY(0) scale(1);
}

.theme-b .video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(36, 6, 11, 0.08);
}

.theme-b .video-modal__title {
  margin: 0;
  color: #23161a;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.theme-b .video-modal__close {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(207, 35, 63, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.theme-b .video-modal__close:hover,
.theme-b .video-modal__close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(207, 35, 63, 0.42);
  background: #fff;
  outline: none;
}

.theme-b .video-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--color-accent);
}

.theme-b .video-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.theme-b .video-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.theme-b .video-modal__body {
  padding: 18px;
  background:
    radial-gradient(
      circle at 16% 14%,
      rgba(207, 35, 63, 0.1),
      transparent 28%
    ),
    rgba(19, 23, 31, 0.94);
}

.theme-b .video-modal__player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}

/* =========================
   LOCATIONS (Global Network — Precise Map)
========================= */

.theme-b .locations-b {
  position: relative;
  padding: clamp(96px, 11vw, 140px) 0;
  background:
    linear-gradient(180deg, #f3f4f6 0%, #e9ecf1 100%);
  overflow: hidden;
}

.theme-b .locations-b::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 6, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 6, 11, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 75%);
  pointer-events: none;
}

.theme-b .locations-b__inner {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 1fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: stretch;
  z-index: 2;
}

/* Map frame — 電子儀表感 */
.theme-b .locations-b__map-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(36, 6, 11, 0.1);
  box-shadow:
    0 30px 70px rgba(36, 6, 11, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.theme-b .locations-b__map-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(207, 35, 63, 0.16);
  pointer-events: none;
  z-index: 1;
}

.theme-b .locations-b__map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(207, 35, 63, 0.04)),
    radial-gradient(circle at 62% 58%, rgba(207, 35, 63, 0.08), transparent 48%);
  pointer-events: none;
  z-index: 1;
}

.theme-b .locations-b__status {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(207, 35, 63, 0.34);
  font-family: "Trebuchet MS", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.theme-b .locations-b__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(207, 35, 63, 0.8);
  animation: locationsBStatusDot 1.4s ease-in-out infinite;
}

@keyframes locationsBStatusDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.theme-b .locations-b__coord {
  position: absolute;
  z-index: 3;
  font-family: "Trebuchet MS", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(36, 6, 11, 0.38);
}
.theme-b .locations-b__coord--tl { top: 20px; left: 22px; }
.theme-b .locations-b__coord--bl { bottom: 20px; left: 22px; }
.theme-b .locations-b__coord--tr { top: 48px; right: 22px; }
.theme-b .locations-b__coord--br { bottom: 20px; right: 22px; }

.theme-b .locations-b__map {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* d3 map styling — B theme */
.theme-b .locations-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.theme-b .locations-map__country {
  fill: #dbdfe7;
  stroke: rgba(36, 6, 11, 0.42);
  stroke-width: 0.6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill 0.3s ease;
}

.theme-b .locations-map__country[data-country="Taiwan"],
.theme-b .locations-map__country[data-country="China"] {
  fill: #f3bcc4;
  stroke: rgba(207, 35, 63, 0.6);
}

.theme-b .locations-map__connection {
  fill: none;
  stroke: rgba(207, 35, 63, 0.75);
  stroke-width: 1.4;
  stroke-dasharray: 4 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(207, 35, 63, 0.5));
  animation: locationsBConnect 4.5s linear infinite;
}

.theme-b .locations-map__connection--short {
  stroke-width: 1;
  stroke-dasharray: 2 2;
  opacity: 0.6;
  animation: none;
}

@keyframes locationsBConnect {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -140; }
}

.theme-b .locations-map__dot {
  fill: var(--color-accent);
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(207, 35, 63, 0.85));
}

.theme-b .locations-map__ring {
  fill: none;
  stroke: rgba(207, 35, 63, 0.62);
  stroke-width: 1;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
}

.theme-b .locations-map__ring--outer {
  animation: locationsBRing 2.6s ease-out infinite;
  animation-delay: var(--pin-delay, 0s);
}

.theme-b .locations-map__ring--mid {
  animation: locationsBRing 2.6s ease-out infinite;
  animation-delay: calc(var(--pin-delay, 0s) + 0.8s);
}

@keyframes locationsBRing {
  0% { r: 5; opacity: 0.9; }
  100% { r: 26; opacity: 0; }
}

.theme-b .locations-map__label-bg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(207, 35, 63, 0.36);
  stroke-width: 1;
}

.theme-b .locations-map__label-text {
  fill: #24060b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  dominant-baseline: middle;
}

/* Content column */
.theme-b .locations-b__content {
  display: grid;
  gap: 18px;
  align-content: center;
}

.theme-b .locations-b__kicker {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-b .locations-b__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.theme-b .locations-b__title {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1d1d1d;
}

.theme-b .locations-b__text {
  margin: 0;
  color: rgba(36, 6, 11, 0.72);
  font-size: 1rem;
  line-height: 1.78;
}

.theme-b .locations-b__cities {
  list-style: none;
  margin: 14px 0 10px;
  padding: 22px 0;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(36, 6, 11, 0.14);
  border-bottom: 1px solid rgba(36, 6, 11, 0.14);
}

.theme-b .locations-b__city {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  transition: transform 0.24s ease;
}

.theme-b .locations-b__city:hover {
  transform: translateX(4px);
}

.theme-b .locations-b__city-idx {
  font-family: "Trebuchet MS", monospace;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  padding-left: 12px;
  line-height: 1;
  border-left: 2px solid var(--color-accent);
}

.theme-b .locations-b__city-body {
  display: grid;
  gap: 3px;
}

.theme-b .locations-b__city-name {
  color: #1d1d1d;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-b .locations-b__city-name em {
  font-style: normal;
  font-weight: 500;
  color: rgba(36, 6, 11, 0.56);
  margin-left: 7px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

.theme-b .locations-b__city-role {
  color: rgba(36, 6, 11, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.theme-b .locations-b__city-coord {
  font-family: "Trebuchet MS", monospace;
  color: rgba(207, 35, 63, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.theme-b .locations-b .button--primary {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .theme-b .locations-b__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .theme-b .locations-b__map-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .theme-b .locations-b {
    padding: 72px 0;
  }
  .theme-b .locations-b__coord {
    font-size: 0.56rem;
  }
  .theme-b .locations-b__city {
    grid-template-columns: 40px 1fr;
  }
  .theme-b .locations-b__city-coord {
    grid-column: 1 / -1;
    padding-left: 54px;
  }
}
