body.theme-c {
  --color-primary: #17324a;
  --color-accent: #cf233f;
  --color-accent-light: #ff6c7f;
  --color-ink: #20394f;
  --color-bg: #f4f7fa;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-surface-alt: rgba(255, 255, 255, 0.5);
  --color-text: #333e48;
  --color-text-muted: #6c7a87;
  --color-border: rgba(23, 50, 74, 0.08);
  --font-display: "Segoe UI", "Noto Sans TC", sans-serif;
  --font-body: "Segoe UI", "Noto Sans TC", sans-serif;
  --container-max: 1440px;
  --container-padding: 32px;
  --container: min(
    var(--container-max),
    calc(100vw - (var(--container-padding) * 2))
  );
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  background-attachment: fixed;
}

.theme-c .page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  z-index: 1;
}

.theme-c .site-bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.theme-c .site-bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 23, 34, 0.7) 0%,
      rgba(12, 23, 34, 0.34) 48%,
      rgba(12, 23, 34, 0.64) 100%
    ),
    linear-gradient(180deg, rgba(8, 17, 28, 0.14), rgba(8, 17, 28, 0.4));
}

.theme-c .site-bg-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-c .hero__video-hud,
.theme-c .about__card-icon,
.theme-c .stakeholder-b-banner__marker {
  display: none;
}

.theme-c .feature__media-panel::before,
.theme-c .feature__media-panel::after,
.theme-c .feature__media-inner::after {
  content: none;
}

.theme-c .hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #263645, #141d26);
}

.theme-c .overview-surface {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.theme-c .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.theme-c .hero-bg__lines,
.theme-c .hero-bg__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 垂直線條樣式 */
.theme-c .hero-bg__lines {
  /* 使用背景漸層畫出垂直線 */
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 14.2%,
    /* 控制線條間距 */ rgba(122, 218, 255, 0.08) 14.3%,
    /* 線條顏色與極細寬度 */ transparent 14.4%
  );
  /* 關鍵：讓線條在上下兩端消失，產生光暈感 */
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  /* 增加一個微微的呼吸動畫 */
  animation: bg-lines-pulse 8s ease-in-out infinite;
}

@keyframes bg-lines-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.theme-c .hero-bg__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 4px #fff,
    0 0 10px rgba(122, 218, 255, 0.8),
    0 0 20px rgba(122, 218, 255, 0.4);
  filter: blur(0.5px);
  pointer-events: none;
  opacity: 0.3;
  will-change: transform, opacity;
}

.theme-c .hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1680px);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 80px);
}

.theme-c .hero__content {
  flex: 0 1 620px;
  max-width: 620px;
}

.theme-c .hero__title {
  margin: 0 0 20px 32px;
  color: #f4f8fb;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  font-weight: 720;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.theme-c .hero__title-line {
  display: block;
}

.theme-c .hero__title-line--offset {
  padding-left: 8rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .theme-c .hero__title-line--offset {
    padding-left: 1.2em;
  }
}

.theme-c .hero__copy {
  display: inline-block;
  margin: 0 0 0 100px;
  padding: 8px 18px;
  color: #d8f6ff;
  border-bottom: 2px solid rgba(122, 218, 255, 0.78);
  box-shadow: 0 12px 32px rgba(12, 24, 34, 0.18);
  text-shadow: 0 0 22px rgba(109, 205, 255, 0.26);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation:
    hero-copy-reveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 240ms forwards,
    hero-copy-signal 3600ms linear 1300ms infinite;
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-copy-signal {
  0%,
  100% {
    border-bottom-color: rgba(122, 218, 255, 0.62);
    box-shadow: 0 12px 32px rgba(12, 24, 34, 0.18);
    text-shadow: 0 0 18px rgba(109, 205, 255, 0.2);
  }

  50% {
    border-bottom-color: rgba(186, 237, 255, 0.96);
    box-shadow: 0 14px 36px rgba(10, 21, 31, 0.26);
    text-shadow: 0 0 28px rgba(144, 226, 255, 0.42);
  }
}

.theme-c .hero__visual--helix {
  position: relative;
  flex: 1 1 0;
  min-height: min(92vh, 860px);
  min-width: 0;
  pointer-events: none;
}

.theme-c .hero-helix {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.theme-c .hero-helix__background,
.theme-c .hero-helix__viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.theme-c .hero-helix__background {
  overflow: hidden;
  z-index: 0;
}

.theme-c .hero-helix__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.8;
}

.theme-c .hero-helix__glow--top {
  top: -14%;
  right: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(57, 87, 118, 0.42) 0%,
    rgba(57, 87, 118, 0) 72%
  );
}

.theme-c .hero-helix__glow--bottom {
  bottom: -18%;
  left: -12%;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(25, 47, 68, 0.4) 0%,
    rgba(25, 47, 68, 0) 74%
  );
}

.theme-c .hero-helix__lines {
  position: absolute;
  top: -8%;
  right: 4%;
  width: 38%;
  height: 116%;
  background-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(158, 188, 214, 0.1) calc(14.285% - 1px),
    rgba(158, 188, 214, 0.1) 14.285%
  );
  background-size: 100% 100%;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.92) 18%,
    rgba(0, 0, 0, 0.92) 82%,
    rgba(0, 0, 0, 0.08)
  );
  opacity: 0.68;
}

.theme-c .hero-helix__particles {
  position: absolute;
  top: 0;
  right: 4%;
  width: 38%;
  height: 100%;
}

.theme-c .hero-helix__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(214, 234, 255, 0.72);
  box-shadow: 0 0 10px rgba(214, 234, 255, 0.32);
  opacity: 0.54;
  will-change: transform, opacity;
}

.theme-c .hero-helix__particles span:nth-child(1) {
  top: 14%;
  left: 10%;
}

.theme-c .hero-helix__particles span:nth-child(2) {
  top: 20%;
  left: 72%;
}

.theme-c .hero-helix__particles span:nth-child(3) {
  top: 32%;
  left: 44%;
}

.theme-c .hero-helix__particles span:nth-child(4) {
  top: 44%;
  left: 18%;
}

.theme-c .hero-helix__particles span:nth-child(5) {
  top: 56%;
  left: 84%;
}

.theme-c .hero-helix__particles span:nth-child(6) {
  top: 68%;
  left: 26%;
}

.theme-c .hero-helix__particles span:nth-child(7) {
  top: 78%;
  left: 62%;
}

.theme-c .hero-helix__particles span:nth-child(8) {
  top: 86%;
  left: 34%;
}

.theme-c .hero-helix__viewport {
  z-index: 1;
  overflow: visible;
}

.theme-c .hero-helix__core {
  display: none;
}

.theme-c .hero-helix__cards {
  position: absolute;
  inset: 0;
  perspective: 2200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.theme-c .hero-helix__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(100px, 12vw, 180px);
  aspect-ratio: 4 / 6;
  overflow: hidden;
  border-radius: 5px;
  visibility: hidden;
  will-change: transform, opacity;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 18, 27, 0.7);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(136, 208, 244, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform, opacity;
}

.theme-c .hero-helix.is-ready .hero-helix__card {
  visibility: visible;
  animation: helixCardReveal 0.7s ease forwards;
}

@keyframes helixCardReveal {
  from { filter: brightness(0.2) blur(6px); }
  to { filter: brightness(1) blur(0); }
}

.theme-c .hero-helix__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  transform: scale(1.04);
}

.theme-c .about {
  --about-gap: 22px;
  --about-content-offset: max(
    var(--container-padding),
    calc((100vw - var(--container-max)) / 2 + var(--container-padding))
  );
  --about-edge-padding: var(--about-content-offset);
  padding: clamp(64px, 6vw, 102px) 0;
}

.theme-c h2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 30px;
  background: var(--color-accent);
  margin-right: 16px;
  border-radius: 2px;
}

.theme-c .about__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 80px;
}

.theme-c .about__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.theme-c .about__intro {
  margin: 0;
  text-align: left;
  max-width: 600px;
  justify-items: flex-start;
}

.theme-c .about__title {
  margin: 0;
  margin-bottom: 16px;
  color: #20394f;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.theme-c .about__text {
  margin: 0;
  max-width: 660px;
  color: rgba(41, 66, 88, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

.theme-c .about__actions {
  display: flex;
  justify-content: center;
}

.theme-c .about__metrics {
  display: flex;
  gap: 48px;
  margin: 0;
  max-width: none;
}

.theme-c .about__metric {
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.theme-c .about__metric-value {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  margin-bottom: 8px;
}

.theme-c .about__metric-label {
  margin: 10px 0 0;
  color: rgba(41, 66, 88, 0.62);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.theme-c .about__carousel {
  display: grid;
  gap: 8px;
}

.theme-c .about__carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.theme-c .about__carousel-info .button--primary {
  padding: 10px 24px;
  border-radius: 4px;
}

.theme-c .about__carousel-info .button--primary:hover {
  background-color: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transform: none;
}

.theme-c .about__carousel-copy {
  display: grid;
  gap: 8px;
}

.theme-c .about__carousel-kicker {
  margin: 0;
  color: rgba(41, 66, 88, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.theme-c .about__carousel-title {
  margin: 0;
  color: #20394f;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
}

.theme-c .about__carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-c .about__carousel-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  background: rgba(255, 238, 238, 0.66);
  color: #20394f;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.theme-c .about__carousel-button:hover,
.theme-c .about__carousel-button:focus-visible {
  color: var(--color-accent);
}

.theme-c .about__carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.theme-c .about__carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 10px;
  touch-action: auto;
}

.theme-c .about__carousel-breakout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.theme-c .about__carousel-track {
  display: flex;
  gap: var(--about-gap);
  padding-left: var(--about-content-offset);
  padding-right: 0;
  transition: transform 800ms cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.theme-c .about__carousel-track::after {
  content: "";
  flex: 0 0 var(--about-edge-padding);
  width: var(--about-edge-padding);
  margin-left: calc(var(--about-gap) * -1);
  pointer-events: none;
}

.theme-c .about-card {
  flex: 0 0 calc((100% - (var(--about-gap) * 3)) / 3.5);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(237, 237, 237, 0.68);
  padding: 16px 16px 0 16px;
  transition: all 0.35s ease;
}

.theme-c .about-card__surface {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.theme-c .about-card__surface--button {
  appearance: none;
}

.theme-c .about-card__media {
  overflow: hidden;
  border-radius: 4px;
}

.theme-c .about-card__image {
  width: 100%;
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  border-radius: 4px;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.theme-c .about-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 20px;
}

.theme-c .about-card__title {
  margin: 0;
  color: #20394f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.theme-c .about-card__arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207, 35, 63, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-accent);
  transition: all 0.25s ease;
}

.theme-c .about-card:hover .about-card__image {
  transform: scale(1.08);
}

.theme-c .about-card:hover .about-card__arrow,
.theme-c .about-card__surface:focus-visible .about-card__arrow {
  transform: translateX(2px);
  background: var(--color-accent);
  color: #fff;
}

.theme-c .about-card__surface:focus-visible {
  outline: 2px solid rgba(207, 35, 63, 0.36);
  outline-offset: 4px;
}

.theme-c.has-video-modal-open {
  overflow: hidden;
}

.theme-c .video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  z-index: 1200;
}

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

.theme-c .video-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(122, 218, 255, 0.12),
      transparent 38%
    ),
    rgba(16, 28, 39, 0.72);
  backdrop-filter: blur(10px);
}

.theme-c .video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  border: 1px solid rgba(96, 132, 165, 0.16);
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.theme-c .video-modal__header {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.theme-c .video-modal__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme-c .video-modal__close {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.theme-c .video-modal__close:hover,
.theme-c .video-modal__close:focus-visible {
  transform: translateY(-1px);
  opacity: 0.78;
  outline: none;
}

.theme-c .video-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #cf233f;
}

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

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

.theme-c .video-modal__body {
  padding: 0;
  background: #000;
}

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

.theme-c .about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.08)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.theme-c .about-card:hover::after {
  opacity: 1;
}

.theme-c .feature {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 8vw, 118px) 0;
}

.theme-c .feature__wrapper {
  width: var(--container);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.theme-c .feature__wrapper::before {
  content: none;
}

.theme-c .feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 4vw, 72px);
}

.theme-c .feature__media {
  position: relative;
  display: grid;
  gap: 22px;
  min-width: 0;
  isolation: isolate;
}

.theme-c .feature__media-accent-1 {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 1.15 / 1;
  background: linear-gradient(
    180deg,
    var(--color-text-muted) 0%,
    rgba(207, 35, 63, 0.04) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.theme-c .feature__media-accent-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 1.15 / 1;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(207, 35, 63, 0.04) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.theme-c .feature__media-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 620ms ease;
}

.theme-c .feature__media-panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: scale(1);
}

.theme-c .feature__media-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #dfe8f0;
  aspect-ratio: 1.15 / 1;
  box-shadow: 0 24px 56px rgba(51, 76, 98, 0.12);
  z-index: 3;
}

.theme-c .feature__media-inner img,
.theme-c .feature__media-inner video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}

.theme-c .feature__media-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 30, 42, 0.02),
    rgba(18, 30, 42, 0.08)
  );
  pointer-events: none;
  z-index: 1;
}

.theme-c .feature__tabs--dots {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 2px;
}

.theme-c .feature__tab {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(51, 62, 72, 0.22);
  cursor: pointer;
  transition:
    background-color 220ms ease,
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms ease,
    opacity 220ms ease;
}

.theme-c .feature__tab:hover,
.theme-c .feature__tab:focus-visible {
  background: rgba(207, 35, 63, 0.46);
  outline: none;
}

.theme-c .feature__tab.is-active {
  background: var(--color-accent);
  width: 42px;
  height: 3px;
  border-radius: 999px;
  transform: none;
}

.theme-c .feature__content {
  min-width: 0;
}

.theme-c .feature__panels {
  position: relative;
  min-height: 360px;
}

.theme-c .feature__panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 320ms ease;
  transform: translateY(10px);
}

.theme-c .feature__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-c .feature__panel-main,
.theme-c .feature__panel-sub {
  position: relative;
  display: grid;
  gap: 22px;
}

.theme-c .feature__panel-kicker {
  position: absolute;
  top: -100px;
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.22;
}

.theme-c .feature__title {
  margin: 0;
  color: #20394f;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0.2em;
}

.theme-c .feature__copy {
  margin: 0;
  max-width: 460px;
  color: rgba(41, 66, 88, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

.theme-c .feature__button {
  justify-self: start;
  padding: 10px 24px;
  border-radius: 4px;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid transparent;
}

.theme-c .feature__button:hover,
.theme-c .feature__button:focus-visible {
  background-color: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transform: none;
  box-shadow: none;
}

.theme-c .portal-video {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}

.theme-c .portal-video__overlay {
  position: absolute;
  inset: 0;
}

.theme-c .portal-video__overlay {
  background: rgba(8, 17, 28, 0.08);
}

.theme-c .portal-video__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.theme-c .portal-video__link {
  min-height: clamp(240px, 32vw, 320px);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  --portal-link-x: 0px;
  --portal-link-y: 0px;
  --portal-link-hover-y: -4px;
  transform: translate(var(--portal-link-x), var(--portal-link-y));
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 2800ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    text-shadow 260ms ease;
}

.theme-c .portal-video__link:nth-child(1) {
  --portal-link-x: -300px;
  --portal-link-y: -100px;
  transition-delay: 0ms;
}

.theme-c .portal-video__link:nth-child(2) {
  --portal-link-x: 300px;
  --portal-link-y: 100px;
  transition-delay: 90ms;
}

.theme-c .portal-video.is-visible .portal-video__link {
  opacity: 1;
}

.theme-c .portal-video.is-visible .portal-video__link:nth-child(1),
.theme-c .portal-video.is-visible .portal-video__link:nth-child(2) {
  --portal-link-x: 0px;
}

.theme-c .portal-video__link:hover,
.theme-c .portal-video__link:focus-visible {
  transform: translate(
    var(--portal-link-x),
    calc(var(--portal-link-y) + var(--portal-link-hover-y))
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 26px rgba(207, 35, 63, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(4px);
}

.theme-c .portal-video__link:nth-child(1):hover,
.theme-c .portal-video__link:nth-child(1):focus-visible {
  transform: translate(
    var(--portal-link-x),
    calc(var(--portal-link-y) + var(--portal-link-hover-y))
  );
}

.theme-c .portal-video__link:nth-child(2):hover,
.theme-c .portal-video__link:nth-child(2):focus-visible {
  transform: translate(
    var(--portal-link-x),
    calc(var(--portal-link-y) + var(--portal-link-hover-y))
  );
}

.theme-c .portal-video__label {
  display: block;
  margin: 0;
  color: transparent;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.92);
}

.theme-c .portal-video__title {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(0.8rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.18;
}

.theme-c .news-footer-surface {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.theme-c .news-hub {
  position: relative;
  min-height: 100vh;
  z-index: 2;
  padding: clamp(72px, 8vw, 112px) 0 clamp(96px, 10vw, 140px);
  background: transparent;
}

.theme-c .news-hub__inner {
  width: var(--container);
  margin: clamp(40px, 6vw, 80px) auto 0;
  display: grid;
  gap: clamp(64px, 8vw, 120px);
}

.theme-c .news-hub__head {
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.theme-c .news-hub__title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(4rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.theme-c .news-hub__body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(200px, 6vw, 280px);
  align-items: start;
}

.theme-c .news-hub__menu {
  display: grid;
  gap: 0;
  padding: 20px 18px;
  background-color: rgba(237, 237, 237, 0.68);
  border-radius: 4px;
}

.theme-c .news-hub__menu-button {
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  transition:
    color 220ms ease,
    transform 220ms ease;
}
.theme-c .news-hub__menu-button:nth-child(2) {
  border-radius: 0 0 4px 4px;
}

.theme-c .news-hub__menu-button::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  margin-bottom: 3px;
  border-radius: 2px;
  background: var(--color-accent);
}

.theme-c .news-hub__menu-button:hover,
.theme-c .news-hub__menu-button:active,
.theme-c .news-hub__menu-button:focus-visible {
  background-color: rgba(255, 255, 255, 0.58);
  outline: none;
}

.theme-c .news-hub__menu-button.is-active,
.theme-c .news-hub__menu-button[aria-selected="true"] {
  background-color: #fff;
  outline: none;
}

.theme-c .news-hub__content {
  min-width: 0;
}

.theme-c .news-hub__panel {
  display: none;
}

.theme-c .news-hub__panel.is-active {
  display: block;
}

.theme-c .news-hub__list {
  display: grid;
}

.theme-c .news-hub__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0;
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.theme-c .news-hub__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: rgba(23, 50, 74, 0.08);
  background-image: linear-gradient(
    90deg,
    rgba(253, 225, 230, 0.95) 0%,
    rgba(207, 35, 63, 0.95) 50%,
    rgba(159, 159, 159, 0.82) 100%
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  transform-origin: left center;
  transition:
    height 260ms ease,
    background-size 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-c .news-hub__item:nth-child(1) {
  padding-top: 10px;
}

.theme-c .news-hub__item:hover::after,
.theme-c .news-hub__item:focus-visible::after {
  height: 2px;
  background-size: 100% 100%;
}

.theme-c .news-hub__item-copy {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 60px;
  min-width: 0;
  flex: 1 1 auto;
}

.theme-c .news-hub__date {
  color: rgba(41, 66, 88, 0.48);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.theme-c .news-hub__item-title {
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
  min-width: 0;
}

.theme-c .news-hub__item-arrow {
  flex: 0 0 auto;
  color: rgba(41, 66, 88, 0.38);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color 240ms ease,
    transform 240ms ease;
}

.theme-c .news-hub__item:hover .news-hub__item-arrow,
.theme-c .news-hub__item:focus-visible .news-hub__item-arrow {
  color: var(--color-accent);
}

.theme-c .news-more {
  display: flex;
  justify-content: end;
}
.theme-c .news-hub__panel .button--primary {
  margin-top: 20px;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
}

.theme-c .news-hub__panel .button--primary:hover {
  background-color: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transform: none;
}

.theme-c .navbar.navbar--c {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: transparent;
  transition:
    background-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease,
    padding 280ms ease;
}

.theme-c .navbar--c .navbar__inner {
  width: min(calc(100% - 120px));
  max-width: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    color 280ms ease;
}

.theme-c .navbar--c .navbar__brand {
  position: relative;
  z-index: 2;
}

.theme-c .navbar--c .navbar__brand img {
  height: 34px;
  width: auto;
}

.theme-c .c-nav__main {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.theme-c .c-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 32px);
  min-width: 0;
  width: 100%;
}

.theme-c .c-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  margin: 0 -14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.theme-c .c-nav__link:hover,
.theme-c .c-nav__link:focus-visible {
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.theme-c .c-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: color 280ms ease;
}

.theme-c .c-nav__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.theme-c .c-nav__icon svg {
  width: 21px;
  height: 21px;
}

.theme-c .c-nav__icon:hover,
.theme-c .c-nav__icon:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
  outline: none;
}

.theme-c .c-nav__mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 4;
  width: 100%;
  margin: 0;
  padding: 18px 0 0;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 253, 255, 0.96) 0%,
    rgba(240, 247, 252, 0.94) 100%
  );
  border: 0;
  border-top: 1px solid rgba(96, 132, 165, 0.16);
  box-shadow: none;
  backdrop-filter: blur(18px);
  color: #20394f;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

.theme-c .c-nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 26px;
  width: 100%;
}

.theme-c .c-menu-group--compact .c-menu-group__links {
  padding-top: 4px;
}

.theme-c .navbar--c.is-scrolled,
.theme-c .navbar--c.is-mega-open {
  padding-top: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(38, 67, 92, 0.08);
  backdrop-filter: none;
}

.theme-c .navbar--c.is-scrolled .navbar__inner,
.theme-c .navbar--c.is-mega-open .navbar__inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #20394f;
}

.theme-c .navbar--c.is-scrolled .c-nav__icon,
.theme-c .navbar--c.is-mega-open .c-nav__icon {
  border-color: rgba(91, 127, 160, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.theme-c .navbar--c.is-scrolled .c-nav__icon:hover,
.theme-c .navbar--c.is-scrolled .c-nav__icon:focus-visible,
.theme-c .navbar--c.is-mega-open .c-nav__icon:hover,
.theme-c .navbar--c.is-mega-open .c-nav__icon:focus-visible {
  background: rgba(230, 240, 248, 0.92);
  border-color: rgba(91, 127, 160, 0.28);
}

.theme-c .navbar--c.is-scrolled .c-nav__link:hover,
.theme-c .navbar--c.is-scrolled .c-nav__link:focus-visible,
.theme-c .navbar--c.is-mega-open .c-nav__link:hover,
.theme-c .navbar--c.is-mega-open .c-nav__link:focus-visible {
  background: rgba(32, 57, 79, 0.08);
}

.theme-c .navbar--c.is-mega-open .c-nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-c .c-lang {
  position: relative;
}

.theme-c .c-lang__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 120px;
  display: grid;
  border-radius: 4px;
  background: rgba(250, 253, 255, 0.9);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.theme-c .c-lang.is-open .c-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-c .c-lang__option {
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  border: none;
  color: #20394f;
  font: inherit;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.theme-c .c-lang__option:hover,
.theme-c .c-lang__option:focus-visible,
.theme-c .c-lang__option[aria-pressed="true"] {
  background: rgba(207, 35, 63, 0.08);
  color: var(--color-accent);
  outline: none;
}

.theme-c .c-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 41;
  background: rgba(21, 39, 56, 0.22);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.theme-c .c-offcanvas-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.theme-c .c-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 42;
  width: min(920px, calc(100vw - 24px));
  height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(251, 254, 255, 0.94) 0%,
    rgba(239, 247, 252, 0.92) 100%
  );
  border-right: 1px solid rgba(96, 132, 165, 0.18);
  box-shadow: 24px 0 44px rgba(40, 69, 94, 0.14);
  backdrop-filter: blur(22px);
  transform: translateX(calc(-100% - 24px));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.theme-c .c-offcanvas.is-open {
  transform: translateX(0);
}

.theme-c .c-offcanvas--menu {
  padding-bottom: 72px;
}

.theme-c .c-offcanvas__header {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
}

.theme-c .c-offcanvas__eyebrow {
  margin: 0;
  color: rgba(32, 57, 79, 0.54);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.theme-c .c-offcanvas__close {
  width: 42px;
  height: 42px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.theme-c .c-offcanvas__close span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 1.5px;
  background: #20394f;
}

.theme-c .c-offcanvas__close:hover span {
  background: var(--color-accent);
}

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

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

.theme-c .c-offcanvas__body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 84px 32px 28px;
}

.theme-c .c-offcanvas__body--menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 16px 30px;
}

.theme-c .c-menu-group {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.theme-c .c-menu-group__title {
  display: flex;
  align-content: center;
  margin: 0;
  color: #20394f;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.theme-c .c-menu-group__links {
  display: grid;
  gap: 4px;
}

.theme-c .c-menu-group__links a,
.theme-c .c-search-links a {
  position: relative;
  padding: 6px 0;
  color: rgba(41, 66, 88, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  display: inline-block;
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-c .c-menu-group__links a:hover,
.theme-c .c-search-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.theme-c .c-menu-group__links a::after,
.theme-c .c-search-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 1px;
  background: var(--color-accent);
  transition: width 220ms ease;
}

.theme-c .c-menu-group__links a:hover::after,
.theme-c .c-search-links a:hover::after {
  width: 100%;
}

.theme-c .c-offcanvas__brand {
  position: absolute;
  right: 28px;
  bottom: 24px;
  opacity: 0.62;
  pointer-events: none;
}

.theme-c .c-offcanvas__brand img {
  width: 118px;
  height: auto;
}

.theme-c .c-offcanvas--search .c-offcanvas__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 42px 30px;
}

.theme-c .c-search-form {
  width: min(100%, 620px);
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

@media (min-width: 1360px) {
  .theme-c .c-nav__mega {
    padding-top: 20px;
  }
}

.theme-c .c-search-form__label,
.theme-c .c-search-links__title {
  margin: 0;
  color: rgba(32, 57, 79, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.theme-c .c-search-form__heading {
  margin: 0;
  color: #20394f;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.theme-c .c-search-form__subtitle {
  margin: 0;
  color: rgba(41, 66, 88, 0.6);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.theme-c .c-search-form__row {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(96, 132, 165, 0.2);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.theme-c .c-search-form__row:focus-within {
  border-bottom-color: rgba(207, 35, 63, 0.72);
  box-shadow: inset 0 -1px 0 rgba(207, 35, 63, 0.72);
}

.theme-c .c-search-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(41, 66, 88, 0.42);
}

.theme-c .c-search-form__icon svg {
  width: 20px;
  height: 20px;
}

.theme-c .c-search-form__input {
  min-width: 0;
  height: 58px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #20394f;
  font-size: 1.05rem;
  font: inherit;
  outline: none;
}

.theme-c .c-search-form__input::placeholder {
  color: rgba(41, 66, 88, 0.34);
}

.theme-c .c-search-form__submit {
  min-width: auto;
  height: 42px;
  padding: 0 2px 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(32, 57, 79, 0.66);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 180ms ease;
}

.theme-c .c-search-form__submit:hover,
.theme-c .c-search-form__submit:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.theme-c .c-search-links {
  width: 100%;
  max-width: 760px;
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 22px;
}

.theme-c .c-search-links__title {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.theme-c .c-offcanvas--search .c-search-links a {
  padding: 0;
  font-size: 0.92rem;
  border: 0;
  white-space: nowrap;
}

.theme-c .c-offcanvas--search .c-search-links a::after {
  bottom: -4px;
}

.theme-c .navbar.navbar--b {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: transparent;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.theme-c .navbar.navbar--b::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
  transition: background-color 260ms ease, left 260ms ease, right 260ms ease;
}

.theme-c .navbar.navbar--b.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(38, 67, 92, 0.05);
  backdrop-filter: blur(14px);
}

.theme-c .navbar.navbar--b.is-scrolled::after {
  background: transparent;
}

.theme-c .navbar--b .navbar__inner {
  width: min(calc(100% - 120px), 100%);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.theme-c .navbar--b .navbar__brand img {
  height: 34px;
  width: auto;
}

.theme-c .navbar--b .navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin: 0;
  padding: 0;
  padding-left: 60px;
  list-style: none;
}

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

.theme-c .navbar--b .nav-link,
.theme-c .navbar--b .navbar__tools,
.theme-c .navbar--b .search-toggle,
.theme-c .navbar--b .b-lang__toggle {
  color: rgba(255, 255, 255, 0.9);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.theme-c .navbar--b .nav-link {
  position: relative;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.theme-c .navbar--b .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.theme-c .navbar--b .nav-item:hover > .nav-link::after,
.theme-c .navbar--b .nav-item:focus-within > .nav-link::after,
.theme-c .navbar--b .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.theme-c .navbar--b .nav-link:focus-visible {
  outline: none;
}

.theme-c .navbar--b .dropdown {
  position: absolute;
  top: calc(100% + 28px);
  left: 0;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border:none;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.theme-c .navbar--b .nav-item:hover .dropdown,
.theme-c .navbar--b .nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.theme-c .navbar--b.is-scrolled .nav-link,
.theme-c .navbar--b.is-scrolled .navbar__tools,
.theme-c .navbar--b.is-scrolled .search-toggle,
.theme-c .navbar--b.is-scrolled .b-lang__toggle {
  color: rgba(32, 57, 79, 0.92);
}

.theme-c .navbar--b .navbar__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-c .navbar--b .b-lang {
  position: relative;
}

.theme-c .navbar--b .b-lang__toggle svg {
  width: 20px;
  height: 20px;
}

.theme-c .navbar--b .b-lang__menu {
  position: absolute;
  top: calc(100% + 30px);
  right: 0;
  min-width: 124px;
  display: grid;
  border-radius: 4px;
  background: rgba(250, 253, 255, 0.92);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.theme-c .navbar--b .b-lang.is-open .b-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-c .navbar--b .b-lang__option {
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  border: none;
  color: #20394f;
  font: inherit;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.theme-c .navbar--b .b-lang__option:hover,
.theme-c .navbar--b .b-lang__option:focus-visible,
.theme-c .navbar--b .b-lang__option[aria-pressed="true"] {
  background: rgba(207, 35, 63, 0.08);
  color: var(--color-accent);
  outline: none;
}

.theme-c .navbar--b .search-toggle {
  width: 38px;
  height: 38px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.theme-c .navbar--b .search-toggle:hover,
.theme-c .navbar--b .search-toggle:focus-visible,
.theme-c .navbar--b .search-toggle.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.theme-c .navbar--b.is-scrolled .search-toggle:hover,
.theme-c .navbar--b.is-scrolled .search-toggle:focus-visible,
.theme-c .navbar--b.is-scrolled .search-toggle.is-active {
  background: rgba(32, 57, 79, 0.08);
}

.theme-c .navbar--b .search-panel.is-open {
  width: 228px;
  margin-left: 8px;
  padding: 4px;
}

.theme-c .nav-link,
.theme-c .dropdown a,
.theme-c .search-toggle,
.theme-c .lang-switcher__button,
.theme-c .search-panel__input,
.theme-c .breadcrumb__link {
  color: rgba(32, 57, 79, 0.8);
}

.theme-c .dropdown {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(96, 132, 165, 0.16);
  box-shadow: 0 22px 44px rgba(37, 64, 90, 0.12);
}

.theme-c .dropdown a:hover {
  background:transparent;
  color: #fff;
}

.theme-c .lang-switcher,
.theme-c .search-toggle,
.theme-c .search-panel {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(96, 132, 165, 0.16);
  box-shadow:
    0 12px 26px rgba(46, 76, 104, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.theme-c .section__copy,
.theme-c .stakeholder-card__copy,
.theme-c .page-banner__copy {
  color: rgba(41, 66, 88, 0.74);
}

.theme-c .hero__video-overlay {
  background: linear-gradient(
    135deg,
    rgba(214, 231, 246, 0.04),
    rgba(207, 35, 63, 0.08)
  );
}

.theme-c .hero__visual-card,
.theme-c .cert-card,
.theme-c .market-card,
.theme-c .stakeholder-teaser,
.theme-c .stakeholder-card,
.theme-c .file-list,
.theme-c .table-card,
.theme-c .page-banner__aside,
.theme-c .video-modal__dialog {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(244, 250, 255, 0.72) 100%
  );
  border-color: rgba(96, 132, 165, 0.14);
  box-shadow: 0 22px 46px rgba(48, 80, 110, 0.08);
}

.theme-c .hero__visual-card {
  backdrop-filter: blur(18px);
}

.theme-c .hero__video-grid {
  opacity: 0.26;
}

.theme-c .hero__news-dot {
  background: rgba(32, 57, 79, 0.18);
}

.theme-c .hero__news-dot.is-active {
  background: var(--color-accent);
}

.theme-c .button--secondary {
  display: block;
  border-color: transparent;
  color: #c3c3c3;
  background: transparent;
}

.theme-c .feature__title,
.theme-c .feature__heading,
.theme-c .section__title,
.theme-c .page-banner__title,
.theme-c .stakeholder-card__title {
  color: #20394f;
  text-shadow: 0 0 24px rgba(122, 218, 255, 0.15);
}

.theme-c .feature__copy,
.theme-c .feature__panel-kicker {
  color: rgba(41, 66, 88, 0.72);
}

.theme-c .feature__panel-kicker {
  color: var(--color-accent);
}

.theme-c .page-banner--stakeholder {
  position: relative;
  min-height: max(50vh, 420px);
  display: flex;
  align-items: flex-end;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #0f1923;
}

.theme-c .page-banner--stakeholder .page-banner__media,
.theme-c .page-banner--stakeholder .page-banner__media img,
.theme-c .page-banner--stakeholder .page-banner__overlay {
  position: absolute;
  inset: 0;
}

.theme-c .page-banner--stakeholder .page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.theme-c .page-banner--stakeholder .page-banner__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 18, 0.14) 0%,
      rgba(7, 14, 22, 0.44) 58%,
      rgba(7, 14, 22, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(9, 18, 27, 0.54) 0%,
      rgba(9, 18, 27, 0.14) 48%,
      rgba(9, 18, 27, 0.5) 100%
    );
}

.theme-c .page-banner__inner--stakeholder {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: max(50vh, 420px);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: clamp(112px, 12vw, 148px) 0 clamp(42px, 5vw, 56px);
}

.theme-c .page-banner__copy--light {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.theme-c .page-banner__copy--light .page-banner__title {
  color: #fff;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1.08;
  opacity: 0;
  transform: translateY(30px);
  animation: bannerTitleInC 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
  text-shadow: 0 0 30px rgba(122, 218, 255, 0.22);
}

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

.theme-c .page-banner__eyebrow {
  margin-bottom: -52px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: bannerTitleInC 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0s forwards;
}

.theme-c .page-banner__copy--light > *:not(.page-banner__title):not(.page-banner__eyebrow) {
  opacity: 0;
  animation: bannerTitleInC 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}

.theme-c .page-banner__subtitle {
  margin: 14px 0 0;
  color: rgba(234, 245, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 560px;
  text-shadow: 0 0 18px rgba(122, 218, 255, 0.14);
}

.theme-c .stakeholder-page {
  --stakeholder-nav-offset: 104px;
  --stakeholder-anchor-offset: 172px;
  --stakeholder-rail-top: 198px;
  position: relative;
  z-index: 1;
  padding: clamp(44px, 5vw, 72px) 0 clamp(100px, 9vw, 140px);
}

.theme-c .stakeholder-page__inner {
  display: grid;
  gap: 28px;
}

.theme-c .stakeholder-page__breadcrumb {
  margin-bottom: 4px;
}

.theme-c .stakeholder-page__breadcrumb .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-c .stakeholder-page__breadcrumb .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.theme-c
  .stakeholder-page__breadcrumb
  .breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(32, 57, 79, 0.28);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.theme-c .stakeholder-page__breadcrumb .breadcrumb__link {
  color: rgba(32, 57, 79, 0.56);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.theme-c .stakeholder-page__breadcrumb a.breadcrumb__link:hover {
  color: var(--color-accent);
}

.theme-c .stakeholder-anchor {
  position: sticky;
  top: var(--stakeholder-nav-offset);
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 60px;
  padding: 18px 16px 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(248, 249, 251, 0.88) 100%
  );
  border-bottom: 1px solid rgba(32, 57, 79, 0.1);
  backdrop-filter: blur(10px);
}

.theme-c .stakeholder-anchor__link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 0 10px;
  color: rgba(32, 57, 79, 0.46);
  text-decoration: none;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

.theme-c .stakeholder-anchor__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(207, 35, 63, 0.88),
    rgba(255, 108, 127, 0.7)
  );
  transform: scaleX(0.32);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.theme-c .stakeholder-anchor__link:hover,
.theme-c .stakeholder-anchor__link:focus-visible,
.theme-c .stakeholder-anchor__link.is-active {
  color: var(--color-ink);
}

.theme-c .stakeholder-anchor__link:hover::after,
.theme-c .stakeholder-anchor__link:focus-visible::after,
.theme-c .stakeholder-anchor__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* 1. 先定義共通的 icon 樣式 */
.theme-c [data-i18n^="stakeholder_contact_"]::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 8px;
  vertical-align: middle;
  background-color: var(--color-accent); /* 自動套用你的企業紅 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.theme-c [data-i18n="stakeholder_contact_person_label"]::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='7' r='5'/%3E%3Cpath d='M3 21c0-4.4 3.6-8 8-8h2c4.4 0 8 3.6 8 8' 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='7' r='5'/%3E%3Cpath d='M3 21c0-4.4 3.6-8 8-8h2c4.4 0 8 3.6 8 8' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  width: 1.3em;
  height: 1.3em;
}

.theme-c [data-i18n="stakeholder_contact_phone_label"]::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='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/%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='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/%3E%3C/svg%3E");
  width: 1.2em;
  height: 1.2em;
}

.theme-c [data-i18n="stakeholder_contact_email_label"]::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='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%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='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.theme-c [data-i18n="stakeholder_contact_mailbox_label"]::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='M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2ZM9 6h6v2H9V6Zm11 14H4V10h16v10Z'/%3E%3Cpath d='M12 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z'/%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='M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2ZM9 6h6v2H9V6Zm11 14H4V10h16v10Z'/%3E%3Cpath d='M12 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z'/%3E%3C/svg%3E");
}

.theme-c .stakeholder-anchor__en {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.theme-c .stakeholder-anchor__zh {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.theme-c .stakeholder-flow {
  display: grid;
  gap: clamp(88px, 9vw, 128px);
}

.theme-c .stakeholder-section {
  scroll-margin-top: var(--stakeholder-anchor-offset);
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 96px);
  align-items: start;
}

.theme-c .stakeholder-section__rail {
  position: relative;
  padding-inline: clamp(8px, 1.2vw, 18px);
}

.theme-c .stakeholder-section__rail-inner {
  position: sticky;
  top: var(--stakeholder-rail-top);
  padding-top: 18px;
  opacity: 0.42;
  transform: translateY(24px);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-c .stakeholder-section__content {
  display: grid;
  gap: clamp(28px, 3vw, 42px);
  padding-inline: clamp(10px, 1.5vw, 24px);
  opacity: 0.42;
  transform: translateY(26px);
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-c .stakeholder-section.is-visible .stakeholder-section__rail-inner,
.theme-c .stakeholder-section.is-visible .stakeholder-section__content {
  opacity: 1;
  transform: translateY(0);
}

.theme-c .stakeholder-section__index {
  margin: 0 0 14px;
  color: rgba(207, 35, 63, 0.78);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-shadow: 0 0 24px rgba(207, 35, 63, 0.28);
}

.theme-c .stakeholder-section__label {
  margin: 0 0 10px;
  color: rgba(32, 57, 79, 0.4);
  font-size: 0.76rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.theme-c .stakeholder-section__title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: 0.08em;
}

.theme-c .stakeholder-section__intro,
.theme-c .stakeholder-section__contact {
  display: grid;
  gap: 8px;
}

.theme-c .stakeholder-section__details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
}

.theme-c .stakeholder-section__copy {
  margin: 0;
  color: rgba(32, 57, 79, 0.8);
  font-size: 1.02rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.theme-c .stakeholder-section__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-c .stakeholder-section__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(32, 57, 79, 0.84);
  line-height: 1.85;
}

.theme-c .stakeholder-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #ff8b74);
  transform: translateY(-50%);
}

.theme-c .stakeholder-section__contact {
  padding: 22px 24px 24px;
  background: rgba(255, 255, 255, 0.52);
  border: none;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(102, 44, 44, 0.04);
}

.theme-c .stakeholder-section__contact-grid {
  display: grid;
  gap: 14px;
}

.theme-c .stakeholder-section__contact-grid p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.theme-c .stakeholder-section__contact-grid span {
  color: rgba(32, 57, 79, 0.54);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.theme-c .stakeholder-section__contact-grid strong {
  color: var(--color-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.theme-c .stakeholder-section__cta {
  justify-self: start;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--color-accent);
  color: #fff;
  transition: all 180ms ease;
}

.theme-c .stakeholder-section__cta:hover,
.theme-c .stakeholder-section__cta:focus-visible {
  background-color: #fff;
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(2px);
  box-shadow: 0 0 18px rgba(207, 35, 63, 0.16);
}

.theme-c .footer {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(88px, 10vw, 128px) 0 clamp(44px, 6vw, 72px);
  background: transparent;
  color: var(--color-ink);
  border-top: 0;
}

.theme-c .footer__grid {
  width: min(calc(100% - 96px), 1760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 76px);
  align-items: end;
}

.theme-c .footer__nav-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 3vw, 54px);
  align-items: start;
}

.theme-c .footer__nav-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 38px);
}

.theme-c .footer__nav-row--bottom {
  width: 100%;
}

.theme-c .footer__col--split {
  min-width: 0;
  grid-column: span 2;
}

.theme-c .footer__split-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  align-items: start;
}

.theme-c .footer__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.theme-c .footer__copyright {
  margin: 0;
  color: rgba(32, 57, 79, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.theme-c .footer__brand {
  justify-self: end;
  gap: clamp(18px, 2vw, 32px);
  align-content: end;
}

.theme-c .footer .footer__title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.theme-c .footer .footer__list {
  display: grid;
  gap: 14px 0;
}

.theme-c .footer__list--continuation {
  padding-top: 0;
}

.theme-c .footer .footer__title,
.theme-c .footer .footer__brand,
.theme-c .footer .footer__list a,
.theme-c .footer .footer__link-separator {
  color: var(--color-ink);
  transition: all 220ms ease;
}

.theme-c .footer .footer__list a:hover {
  color: var(--color-accent);
}

body.has-c-offcanvas-open {
  overflow: hidden;
}

@media (max-width: 1440px) {
  body.theme-c {
    --container-max: 1320px;
    --container-padding: 28px;
  }

  .theme-c .page-banner__inner--stakeholder {
    padding-top: clamp(104px, 11vw, 132px);
  }

  .theme-c .stakeholder-page {
    padding-bottom: 112px;
  }

  .theme-c .stakeholder-section {
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
    gap: clamp(34px, 4vw, 68px);
  }

  .theme-c .stakeholder-section__details {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  }

  .theme-c .hero__inner {
    width: min(calc(100% - 56px), 1480px);
    gap: clamp(28px, 3.2vw, 56px);
  }

  .theme-c .hero__content {
    flex-basis: 560px;
    max-width: 560px;
  }

  .theme-c .hero__title {
    margin-left: 16px;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
  }

  .theme-c .hero__copy {
    margin-left: 48px;
    font-size: 1.28rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }

  .theme-c .hero__visual--helix {
    min-height: min(80vh, 760px);
  }

  .theme-c .about__inner {
    gap: 64px;
  }

  .theme-c .about__header-top {
    gap: 28px;
  }

  .theme-c .about__metrics {
    gap: 32px;
  }

  .theme-c .feature__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 3vw, 48px);
  }

  .theme-c .portal-video,
  .theme-c .portal-video__inner {
    min-height: min(100vh, 780px);
  }

  .theme-c .portal-video__link {
    min-height: clamp(200px, 24vw, 260px);
    padding: clamp(22px, 2.8vw, 34px);
  }

  .theme-c .news-hub {
    min-height: 100vh;
    height: auto;
    padding: 64px 0 72px;
  }

  .theme-c .news-hub__inner {
    margin-top: 40px;
    gap: 72px;
  }

  .theme-c .news-hub__body {
    gap: clamp(72px, 5vw, 140px);
  }

  .theme-c .footer {
    min-height: min(100vh, 820px);
    padding: 72px 0 48px;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  .theme-c .page-banner--stakeholder,
  .theme-c .page-banner__inner--stakeholder {
    min-height: max(44vh, 360px);
  }

  .theme-c .page-banner__inner--stakeholder {
    padding-top: 104px;
    padding-bottom: 36px;
  }

  .theme-c .stakeholder-page {
    padding-top: 32px;
    padding-bottom: 96px;
  }

  .theme-c .stakeholder-anchor {
    padding: 14px 0 14px;
    margin-bottom: 28px;
  }

  .theme-c .stakeholder-flow {
    gap: 88px;
  }

  .theme-c .stakeholder-section__title {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  }

  .theme-c .stakeholder-section__copy {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .theme-c .hero,
  .theme-c .hero__inner {
    min-height: 100svh;
  }

  .theme-c .hero {
    padding: 88px 0 28px;
  }

  .theme-c .hero__inner {
    align-items: center;
    gap: 24px;
  }

  .theme-c .hero__title {
    margin-bottom: 14px;
    font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  }

  .theme-c .hero__copy {
    margin-left: 28px;
    padding: 6px 14px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .theme-c .hero__visual--helix {
    min-height: min(64vh, 560px);
  }

  .theme-c .about {
    min-height: auto;
    padding: 72px 0 36px;
    scroll-margin-top: 96px;
  }

  .theme-c .about__inner {
    gap: 28px;
  }

  .theme-c .about__header-top {
    gap: 18px;
    align-items: flex-start;
  }

  .theme-c .about__title {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
  }

  .theme-c .about__text {
    max-width: 560px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .theme-c .about__metrics {
    gap: 18px;
  }

  .theme-c .about__metric-value {
    font-size: clamp(1.55rem, 2.6vw, 2.3rem);
    margin-bottom: 4px;
  }

  .theme-c .about__metric-label {
    margin-top: 6px;
    font-size: 0.8rem;
  }

  .theme-c .feature {
    padding: 56px 0 72px;
  }

  .theme-c .feature__panels {
    min-height: 260px;
  }

  .theme-c .feature__panel-kicker {
    top: -72px;
    font-size: 1.6rem;
  }

  .theme-c .feature__copy {
    line-height: 1.7;
  }

  .theme-c .about__carousel-head {
    margin-bottom: 8px;
    padding-bottom: 4px;
  }

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

  .theme-c .about-card__image {
    aspect-ratio: 4 / 3.1;
  }

  .theme-c .about-card__body {
    padding: 12px 12px 14px 14px;
  }

  .theme-c .about-card__title {
    font-size: 0.94rem;
  }

  .theme-c .about-card__arrow {
    width: 38px;
    height: 38px;
  }

  .theme-c .portal-video,
  .theme-c .portal-video__inner {
    min-height: min(100svh, 680px);
  }

  .theme-c .news-hub__inner {
    gap: 56px;
  }
}

@media (max-width: 1200px) {
  .theme-c .navbar--c .navbar__inner {
    width: min(calc(100% - 40px), 100%);
  }

  .theme-c .c-nav__menu {
    gap: 18px;
  }

  .theme-c .c-nav__link {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .theme-c .c-nav__mega {
    padding-top: 18px;
  }

  .theme-c .c-nav__mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .theme-c .stakeholder-anchor {
    top: calc(var(--stakeholder-nav-offset) - 4px);
    gap: 12px 20px;
  }

  .theme-c .stakeholder-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-c .stakeholder-section__rail,
  .theme-c .stakeholder-section__content {
    padding-inline: 0;
  }

  .theme-c .stakeholder-section__rail-inner {
    position: static;
    padding-top: 0;
  }

  .theme-c .stakeholder-section__details {
    grid-template-columns: 1fr;
  }

  .theme-c .about-card {
    flex-basis: calc((100% - (var(--about-gap) * 2)) / 2.2);
  }

  .theme-c .feature__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .theme-c .feature__panels {
    min-height: 300px;
  }

  .theme-c .portal-video__inner {
    grid-template-columns: 1fr;
  }

  .theme-c .news-hub__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-c .news-hub__menu {
    grid-auto-flow: column;
    justify-content: start;
    gap: 22px;
  }

  .theme-c .footer {
    min-height: auto;
    padding: 88px 0 56px;
  }

  .theme-c .footer__grid {
    width: min(calc(100% - 56px), 100%);
  }

  .theme-c .footer__meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .theme-c .footer__brand {
    justify-self: start;
  }

  .theme-c .footer__nav-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-c .footer__col--split {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  body.theme-c {
    --container-padding: 18px;
  }

  .theme-c .page-banner--stakeholder,
  .theme-c .page-banner__inner--stakeholder {
    min-height: max(42vh, 340px);
  }

  .theme-c .page-banner__inner--stakeholder {
    padding: 116px 0 28px;
  }

  .theme-c .page-banner__copy--light .page-banner__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .theme-c .stakeholder-page {
    padding: 28px 0 84px;
  }

  .theme-c .stakeholder-anchor {
    top: var(--stakeholder-nav-offset);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding-left: 8px;
  }

  .theme-c .stakeholder-anchor__link {
    padding-bottom: 2px;
  }

  .theme-c .stakeholder-flow {
    gap: 72px;
  }

  .theme-c .stakeholder-section__contact {
    padding: 18px 18px 20px;
  }

  .theme-c .about {
    padding: 72px 0;
  }

  .theme-c .about__metrics {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .theme-c .about__carousel-head {
    align-items: start;
    flex-direction: column;
  }

  .theme-c .about__carousel-controls {
    align-self: flex-end;
  }

  .theme-c .about-card {
    flex-basis: calc((100% - var(--about-gap)) / 1.15);
  }

  .theme-c .feature {
    padding: 64px 0;
  }

  .theme-c .feature__media-accent {
    width: 88px;
  }

  .theme-c .feature__media-inner {
    aspect-ratio: 1.08 / 1;
  }

  .theme-c .feature__panels {
    min-height: 320px;
  }

  .theme-c .portal-video {
    margin-top: -28px;
    min-height: 520px;
  }

  .theme-c .portal-video__link {
    min-height: 200px;
  }

  .theme-c .news-hub__item {
    gap: 8px;
  }

  .theme-c .news-hub__item-copy {
    display: grid;
    gap: 6px;
  }

  .theme-c .news-hub__item-arrow {
    font-size: 0.94rem;
  }

  .theme-c .footer__grid,
  .theme-c .footer__nav-row,
  .theme-c .footer__split-panels {
    grid-template-columns: 1fr;
  }

  .theme-c .hero {
    min-height: auto;
    padding: 108px 0 36px;
  }

  .theme-c .hero__inner {
    width: min(calc(100% - 16px), 100%);
    min-height: auto;
    display: grid;
    gap: 26px;
  }

  .theme-c .hero__content {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .theme-c .hero__visual--helix {
    position: relative;
    inset: auto;
    flex: none;
    width: 100%;
    min-width: 0;
    height: min(74vh, 640px);
    min-height: 0;
  }

  .theme-c .hero-helix {
    position: absolute;
    inset: 0;
  }

  .theme-c .hero-helix__lines,
  .theme-c .hero-helix__particles {
    width: 100%;
    opacity: 0.38;
  }

  .theme-c .hero-helix__card {
    visibility: visible;
  }

  .theme-c .navbar.navbar--c {
    padding-top: 12px;
  }

  .theme-c .navbar--c .navbar__inner {
    width: min(calc(100% - 16px), 100%);
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px 16px;
    padding: 14px 16px;
    border-radius: 22px;
  }

  .theme-c .navbar--c .navbar__brand img {
    height: 28px;
  }

  .theme-c .c-nav__main {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
  }

  .theme-c .c-nav__menu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .theme-c .c-nav__link {
    min-height: 40px;
    padding: 0 10px;
    margin: 0 -10px;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
  }

  .theme-c .c-nav__actions {
    gap: 8px;
  }

  .theme-c .c-nav__icon {
    width: 42px;
    height: 42px;
  }

  .theme-c .c-nav__mega {
    padding: 16px 0 0;
    border-radius: 0;
  }

  .theme-c .c-nav__mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .theme-c .c-offcanvas {
    width: min(720px, calc(100vw - 16px));
  }

  .theme-c .c-offcanvas__header {
    top: 14px;
    right: 14px;
  }

  .theme-c .c-offcanvas__body {
    padding: 70px 18px 18px;
  }

  .theme-c .c-offcanvas__body--menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .theme-c .c-search-form__row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .theme-c .c-offcanvas__brand {
    right: 18px;
    bottom: 16px;
  }

  .theme-c .c-offcanvas__brand img {
    width: 92px;
  }

  .theme-c .c-offcanvas--search .c-offcanvas__body {
    padding: 80px 20px 18px;
  }

  .theme-c .c-search-form__heading {
    font-size: 1.7rem;
  }

  .theme-c .c-search-form__subtitle {
    font-size: 0.92rem;
  }
}

@media (max-width: 680px) {
  .theme-c .about__title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .theme-c .about__text {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .theme-c .about__metric {
    padding: 22px 18px;
  }

  .theme-c .about__carousel {
    --about-gap: 16px;
  }

  .theme-c .about__carousel-button,
  .theme-c .about-card__link {
    width: 40px;
    height: 40px;
  }

  .theme-c .about-card__body {
    padding: 16px;
  }

  .theme-c .feature__media {
    gap: 16px;
  }

  .theme-c .feature__tabs--dots {
    gap: 8px;
  }

  .theme-c .feature__tab {
    width: 34px;
  }

  .theme-c .feature__title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .theme-c .feature__copy {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .theme-c .portal-video__label {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .theme-c .portal-video__title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .theme-c .hero__title {
    font-size: 2.7rem;
  }

  .theme-c .hero__copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .theme-c .hero-helix {
    height: 520px;
  }

  .theme-c .hero-helix__card {
    width: 172px;
  }

  .theme-c .hero-helix__core {
    left: 62%;
  }

  .theme-c .navbar--c .navbar__inner {
    grid-template-columns: 1fr;
  }

  .theme-c .c-nav__actions {
    justify-content: flex-end;
  }

  .theme-c .c-nav__menu {
    gap: 8px 14px;
  }

  .theme-c .c-nav__link {
    width: calc(50% - 7px);
    justify-content: flex-start;
    margin: 0;
  }

  .theme-c .c-nav__mega-grid {
    grid-template-columns: 1fr;
  }

  .theme-c .c-menu-group__title {
    font-size: 0.9rem;
  }

  .theme-c .c-offcanvas {
    width: min(100vw - 10px, 100%);
  }

  .theme-c .c-search-form__row {
    gap: 8px;
  }

  .theme-c .c-search-form__submit {
    padding-left: 6px;
  }

  .theme-c .c-search-links {
    gap: 8px 16px;
  }
}

/* =========================
   LOCATIONS C (Global Network — Precise Map · Full-Bleed)
========================= */

.theme-c .locations-c {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(92vh, 860px);
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    linear-gradient(180deg, #050c15 0%, #0a141f 50%, #0e1925 100%);
  color: #eaf5ff;
  overflow: hidden;
}

.theme-c .locations-c__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.theme-c .locations-c__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 218, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 218, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 85%);
}

.theme-c .locations-c__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.theme-c .locations-c__glow--red {
  top: 8%;
  right: 14%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(207, 35, 63, 0.5) 0%, transparent 68%);
  opacity: 0.6;
}

.theme-c .locations-c__glow--blue {
  bottom: -18%;
  left: 10%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(86, 156, 214, 0.34) 0%, transparent 70%);
  opacity: 0.5;
}

.theme-c .locations-c__inner {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.5fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 3.2vw, 56px);
  min-height: 600px;
}

.theme-c .locations-c__header {
  display: grid;
  gap: 22px;
  align-content: center;
}

.theme-c .locations-c__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 245, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.theme-c .locations-c__title {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #f4f8fb;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 720;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow: 0 0 44px rgba(122, 218, 255, 0.26);
}

.theme-c .locations-c__title span {
  display: block;
}

.theme-c .locations-c__title span + span {
  padding-left: 1.3em;
  color: rgba(244, 248, 251, 0.7);
}

.theme-c .locations-c__text {
  margin: 10px 0 0;
  color: rgba(234, 245, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.82;
  max-width: 320px;
}

.theme-c .locations-c__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 680px;
  border: 1px solid rgba(122, 218, 255, 0.14);
  background:
    radial-gradient(ellipse at 60% 50%, rgba(207, 35, 63, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 15, 24, 0.4), rgba(12, 22, 34, 0.3));
  overflow: hidden;
}

.theme-c .locations-c__map::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(122, 218, 255, 0.12);
  pointer-events: none;
  z-index: 1;
}

/* d3 map styling — C theme (dark neon) */
.theme-c .locations-map__svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.theme-c .locations-map__country {
  fill: rgba(122, 218, 255, 0.06);
  stroke: rgba(122, 218, 255, 0.4);
  stroke-width: 0.7;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px rgba(122, 218, 255, 0.18));
}

.theme-c .locations-map__country[data-country="Taiwan"],
.theme-c .locations-map__country[data-country="China"] {
  fill: rgba(207, 35, 63, 0.14);
  stroke: rgba(255, 108, 127, 0.7);
  filter: drop-shadow(0 0 6px rgba(255, 108, 127, 0.34));
}

.theme-c .locations-map__connection {
  fill: none;
  stroke: rgba(255, 108, 127, 0.9);
  stroke-width: 1.6;
  stroke-dasharray: 5 4;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(255, 108, 127, 0.95));
  animation: locationsCConnect 5s linear infinite;
}

.theme-c .locations-map__connection--short {
  stroke-width: 1.2;
  stroke-dasharray: 2 2;
  opacity: 0.75;
  animation: none;
}

@keyframes locationsCConnect {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -160; }
}

.theme-c .locations-map__dot {
  fill: var(--color-accent, #cf233f);
  stroke: #ffffff;
  stroke-width: 1.6;
  filter: drop-shadow(0 0 14px rgba(207, 35, 63, 0.95));
}

.theme-c .locations-map__ring {
  fill: none;
  stroke: rgba(255, 108, 127, 0.78);
  stroke-width: 1.3;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
}

.theme-c .locations-map__ring--outer {
  animation: locationsCRing 2.8s ease-out infinite;
  animation-delay: var(--pin-delay, 0s);
}

.theme-c .locations-map__ring--mid {
  animation: locationsCRing 2.8s ease-out infinite;
  animation-delay: calc(var(--pin-delay, 0s) + 0.9s);
}

@keyframes locationsCRing {
  0% { r: 5; opacity: 0.9; }
  100% { r: 32; opacity: 0; }
}

.theme-c .locations-map__label-bg {
  fill: rgba(8, 15, 24, 0.85);
  stroke: rgba(122, 218, 255, 0.5);
  stroke-width: 0.8;
}

.theme-c .locations-map__label-text {
  fill: #eaf5ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  dominant-baseline: middle;
  filter: drop-shadow(0 0 6px rgba(122, 218, 255, 0.6));
}

/* Aside city list */
.theme-c .locations-c__aside {
  display: grid;
  gap: 14px;
  align-content: center;
}

.theme-c .locations-c__cities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.theme-c .locations-c__city {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(8, 15, 24, 0.55);
  border: 1px solid rgba(122, 218, 255, 0.18);
  backdrop-filter: blur(12px);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.theme-c .locations-c__city::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--color-accent, #cf233f);
  box-shadow: 0 0 12px rgba(207, 35, 63, 0.85);
}

.theme-c .locations-c__city:hover {
  border-color: rgba(255, 108, 127, 0.58);
  transform: translateX(4px);
  background: rgba(12, 22, 34, 0.75);
}

.theme-c .locations-c__city-idx {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent, #cf233f);
  line-height: 1;
  letter-spacing: 0.06em;
  text-shadow: 0 0 16px rgba(207, 35, 63, 0.6);
}

.theme-c .locations-c__city-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.theme-c .locations-c__city-name {
  color: #eaf5ff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-c .locations-c__city-name em {
  font-style: normal;
  font-weight: 400;
  color: rgba(234, 245, 255, 0.55);
  margin-left: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.theme-c .locations-c__city-role {
  color: rgba(234, 245, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.theme-c .locations-c__city-coord {
  font-family: "Trebuchet MS", monospace;
  color: rgba(122, 218, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
  .theme-c .navbar.navbar--b::after {
    left: 20px;
    right: 20px;
  }

  .theme-c .navbar--b .navbar__inner {
    width: min(calc(100% - 40px), 100%);
    gap: 18px;
  }

  .theme-c .navbar--b .navbar__menu {
    gap: 12px;
    flex-wrap: wrap;
  }

  .theme-c .locations-c__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .theme-c .locations-c__header {
    text-align: left;
  }
  .theme-c .locations-c__map {
    aspect-ratio: 4 / 3;
    max-height: 520px;
  }
  .theme-c .locations-c__cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .theme-c .navbar.navbar--b::after {
    left: 8px;
    right: 8px;
  }

  .theme-c .navbar--b .navbar__inner {
    width: min(calc(100% - 16px), 100%);
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 0;
    gap: 10px;
  }

  .theme-c .navbar--b .navbar__menu {
    gap: 8px;
  }

  .theme-c .navbar--b .navbar__tools {
    width: 100%;
    justify-content: flex-end;
  }

  .theme-c .locations-c__cities {
    grid-template-columns: 1fr;
  }
  .theme-c .locations-c__map {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 560px) {
  .theme-c .locations-c {
    padding: 72px 0;
    min-height: 0;
  }
  .theme-c .locations-c__title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }
}
