:root {
  --exec-bg: #050912;
  --exec-bg-2: #08111f;
  --exec-panel: rgba(8, 14, 24, 0.7);
  --exec-panel-strong: rgba(7, 12, 22, 0.88);
  --exec-line: rgba(204, 226, 245, 0.16);
  --exec-line-strong: rgba(217, 184, 111, 0.42);
  --exec-gold: #d9b86f;
  --exec-gold-2: #f0d28a;
  --exec-blue: #8ed8ff;
  --exec-cyan: #9ee7ee;
  --exec-text: #f4f7fb;
  --exec-muted: rgba(229, 237, 247, 0.72);
  --exec-faint: rgba(229, 237, 247, 0.48);
  --exec-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html.exec-html,
body.exec-page {
  min-height: 100%;
  background: var(--exec-bg);
}

body.exec-page {
  margin: 0;
  color: var(--exec-text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.exec-page a {
  color: inherit;
  text-decoration: none;
}

body.exec-page button,
body.exec-page input,
body.exec-page textarea,
body.exec-page select {
  font: inherit;
}

.exec-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--exec-bg);
}

.exec-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(0.9) contrast(1.08) brightness(0.68);
}

.exec-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 184, 111, 0.18), transparent 25rem),
    radial-gradient(circle at 80% 28%, rgba(142, 216, 255, 0.14), transparent 28rem),
    linear-gradient(90deg, rgba(5, 9, 18, 0.96) 0%, rgba(5, 9, 18, 0.78) 44%, rgba(5, 9, 18, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 9, 18, 0.24), #050912 92%);
  pointer-events: none;
}

.exec-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(204, 226, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 226, 245, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

.exec-page > :not(.exec-video-bg) {
  position: relative;
  z-index: 2;
}

.exec-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--exec-line);
  background: rgba(5, 9, 18, 0.72);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.exec-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  min-width: 0;
}

.exec-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217, 184, 111, 0.24));
}

.exec-brand strong {
  display: block;
  color: var(--exec-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.exec-brand span {
  display: block;
  margin-top: 3px;
  color: var(--exec-faint);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.exec-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.exec-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--exec-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.exec-link:hover,
.exec-link:focus-visible,
.exec-link.is-active {
  color: var(--exec-gold-2);
  border-color: rgba(217, 184, 111, 0.35);
  background: rgba(217, 184, 111, 0.08);
}

.exec-link.primary {
  color: #07111f;
  border-color: rgba(217, 184, 111, 0.72);
  background: linear-gradient(135deg, #bceaff, #e3c775);
}

.exec-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.exec-hero {
  min-height: min(760px, calc(100dvh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vh, 96px) 0 clamp(52px, 7vh, 84px);
}

.exec-hero.compact {
  min-height: auto;
  padding: clamp(44px, 7vh, 74px) 0 34px;
}

.exec-eyebrow {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--exec-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(229, 237, 247, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exec-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--exec-gold);
  box-shadow: 0 0 18px rgba(217, 184, 111, 0.66);
}

.exec-title {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--exec-text);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.exec-title .thin {
  display: block;
  color: rgba(244, 247, 251, 0.78);
  font-size: 0.58em;
  font-weight: 650;
  margin-bottom: 0.14em;
}

.exec-lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--exec-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.82;
  font-weight: 500;
}

.exec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.exec-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid rgba(204, 226, 245, 0.2);
  border-radius: 999px;
  background: rgba(8, 14, 24, 0.56);
  color: var(--exec-text);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.exec-btn:hover,
.exec-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(142, 216, 255, 0.48);
  background: rgba(142, 216, 255, 0.12);
}

.exec-btn.primary {
  border-color: rgba(217, 184, 111, 0.72);
  background: linear-gradient(135deg, #bceaff, #e3c775);
  color: #06111b;
  box-shadow: 0 18px 44px rgba(217, 184, 111, 0.16);
}

.exec-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
}

.exec-proof {
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--exec-line);
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.exec-proof b {
  display: block;
  color: var(--exec-gold-2);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.exec-proof span {
  display: block;
  margin-top: 5px;
  color: var(--exec-faint);
  font-size: 12px;
  line-height: 1.5;
}

.exec-visual-card,
.exec-panel {
  border: 1px solid var(--exec-line);
  border-bottom-color: var(--exec-line-strong);
  border-radius: 24px;
  background: var(--exec-panel);
  box-shadow: var(--exec-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.exec-visual-card {
  min-height: 410px;
  overflow: hidden;
}

.exec-card-media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #050912;
}

.exec-card-media video,
.exec-card-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.08) brightness(0.76);
}

.exec-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 9, 18, 0.86) 100%);
}

.exec-card-body {
  padding: 22px;
}

.exec-card-body h2,
.exec-panel h2 {
  margin: 0;
  color: var(--exec-text);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

.exec-card-body p,
.exec-panel p {
  margin: 12px 0 0;
  color: var(--exec-muted);
  font-size: 15px;
  line-height: 1.75;
}

.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.exec-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exec-section {
  padding: 44px 0;
}

.exec-section-title {
  margin: 0 0 18px;
  color: var(--exec-text);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.exec-section-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--exec-muted);
  font-size: 16px;
  line-height: 1.8;
}

.exec-module-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--exec-line);
  border-radius: 18px;
  background: rgba(8, 14, 24, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.exec-module-card:hover,
.exec-module-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 184, 111, 0.48);
  background: rgba(10, 19, 34, 0.76);
}

.exec-code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(217, 184, 111, 0.32);
  border-radius: 999px;
  color: var(--exec-gold-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.exec-module-card h3 {
  margin: 14px 0 0;
  color: var(--exec-text);
  font-size: 20px;
  line-height: 1.3;
}

.exec-module-card p {
  margin: 9px 0 0;
  color: var(--exec-muted);
  font-size: 14px;
  line-height: 1.7;
}

.exec-footer {
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--exec-line);
  color: var(--exec-faint);
  background: rgba(5, 9, 18, 0.7);
}

.exec-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.exec-mobile-note {
  display: none;
}

@media (max-width: 880px) {
  .exec-topbar {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 12px 18px;
  }

  .exec-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .exec-link {
    min-height: 44px;
    white-space: nowrap;
  }

  .exec-shell {
    width: min(100% - 32px, 1180px);
  }

  .exec-hero,
  .exec-grid,
  .exec-grid.two {
    grid-template-columns: 1fr;
  }

  .exec-hero {
    min-height: auto;
    padding: 42px 0 36px;
  }

  .exec-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.16;
  }

  .exec-lead {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .exec-proof-row {
    grid-template-columns: 1fr;
  }

  .exec-visual-card {
    min-height: auto;
  }

  .exec-card-media,
  .exec-card-media video,
  .exec-card-media img {
    min-height: 220px;
  }

  .exec-video-bg video {
    opacity: 0.64;
  }

  .exec-mobile-note {
    display: block;
  }
}

@media (max-width: 520px) {
  .exec-brand img {
    width: 40px;
    height: 40px;
  }

  .exec-brand strong {
    font-size: 14px;
  }

  .exec-brand span {
    display: none;
  }

  .exec-actions {
    flex-direction: column;
  }

  .exec-btn {
    width: 100%;
    min-height: 52px;
  }

  .exec-section {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

body.report-executive {
  background: #050912 !important;
  color: #f4f7fb;
}

body.report-executive .report-page-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  filter: saturate(0.88) contrast(1.08) brightness(0.62);
  pointer-events: none;
}

body.report-executive::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 184, 111, 0.15), transparent 24rem),
    radial-gradient(circle at 84% 24%, rgba(142, 216, 255, 0.12), transparent 28rem),
    linear-gradient(rgba(204, 226, 245, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 226, 245, 0.02) 1px, transparent 1px),
    rgba(5, 9, 18, 0.92) !important;
  background-size: auto, auto, 58px 58px, 58px 58px, auto !important;
}

body.report-executive .sidebar,
body.report-executive .report-wrap,
body.report-executive #reportActionsBar,
body.report-executive .report-header,
body.report-executive .compare-col,
body.report-executive .step-item,
body.report-executive .core-logic,
body.report-executive .o-letter-box,
body.report-executive .cost-box,
body.report-executive .roi-cell,
body.report-executive .screen-card,
body.report-executive .report-screen {
  border-color: rgba(204, 226, 245, 0.15) !important;
  background-color: rgba(8, 14, 24, 0.68) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 72px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.report-executive .sidebar {
  border-right-color: rgba(217, 184, 111, 0.24) !important;
}

body.report-executive .nav-item {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 12px;
}

body.report-executive .nav-item:hover,
body.report-executive .nav-item.active {
  border-color: rgba(217, 184, 111, 0.28);
  background: rgba(217, 184, 111, 0.08) !important;
}

body.report-executive .nav-item .icon {
  color: #d9b86f;
  font-weight: 900;
}

body.report-executive .sidebar-footer a,
body.report-executive .cta-btn-main {
  min-height: 48px;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #bceaff, #e3c775) !important;
  color: #06111b !important;
}

body.report-executive .report-header {
  border-radius: 24px;
  padding: 28px 20px !important;
}

body.report-executive .report-header h1 {
  color: #f4f7fb !important;
  font-size: clamp(24px, 4vw, 38px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

body.report-executive .report-header .sub,
body.report-executive .section-title,
body.report-executive .core-logic-label,
body.report-executive .diagnosis-label {
  color: #d9b86f !important;
}

body.report-executive .loading p,
body.report-executive .error-box .msg {
  color: rgba(229, 237, 247, 0.72) !important;
  line-height: 1.75;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  body.report-executive .report-page-video {
    opacity: 0.18;
  }

  body.report-executive .report-wrap {
    padding-top: 62px !important;
  }

  body.report-executive .report-header {
    border-radius: 18px;
  }
}
