@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  color: #fff;
  background: #01092d;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

section {
  position: relative;
}

.anchor {
  display: block;
  scroll-margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .anchor {
    scroll-margin-top: 94px;
  }
}

#index.anchor {
  scroll-margin-top: 0;
}

#speakers.anchor {
  position: absolute;
  left: 0;
  margin-top: 76px;
}
@media screen and (min-width: 768px) {
  #speakers.anchor {
    scroll-margin-top: 110px;
  }
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  #speakers.anchor {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  #speakers.anchor {
    margin-top: 34px;
  }
}
@media screen and (max-width: 767px) {
  #speakers.anchor {
    margin-top: 38px;
  }
}

.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .mb {
    display: block !important;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  color: #fff;
}
.section-title.line::after {
  content: "";
  display: block;
  width: 232px;
  height: 1px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.45);
}
.section-title.dark {
  color: #020050;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
  .section-title.line::after {
    width: 130px;
    margin-top: 16px;
  }
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 820px;
  height: 820px;
  margin: -410px 0 0 -410px;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate3d(50vw, 40vh, 0);
}
.cursor-glow .glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.cursor-glow .glow.blue {
  background: radial-gradient(circle at 50% 50%, rgba(70, 150, 255, 0.5) 0%, rgba(35, 85, 225, 0.24) 38%, rgba(0, 20, 90, 0) 70%);
}
.cursor-glow .glow.purple {
  background: radial-gradient(circle at 50% 50%, rgba(150, 95, 255, 0.46) 0%, rgba(105, 60, 235, 0.22) 38%, rgba(20, 0, 90, 0) 70%);
}
.cursor-glow.is-blue .glow.blue, .cursor-glow.is-purple .glow.purple {
  opacity: 1;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cursor-glow {
    display: none;
  }
}

.registration,
.highlight,
.article,
.footer {
  position: relative;
  z-index: 2;
}

body:has(.article) .footer {
  background: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background: rgba(1, 9, 45, 0.95);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
@media screen and (max-width: 1300px) {
  .header {
    height: 64px;
    background: rgba(1, 9, 45, 0.92);
  }
}

.header-container {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .header-container {
    padding: 0 32px;
  }
}

.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  width: 70px;
}
@media screen and (max-width: 1300px) {
  .header-logo img {
    width: 41px;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}
.header-menu li a {
  font-size: 21px;
  line-height: 1;
  transition: color 0.3s;
}
.header-menu li a:hover {
  color: #9fb4ff;
}
@media screen and (max-width: 1300px) {
  .header-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0 24px 60px;
    background: rgba(1, 9, 45, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
  .header-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .header-menu li {
    width: 100%;
  }
  .header-menu li > a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 20px;
    text-align: center;
  }
}

.header-lang {
  display: flex;
  align-items: center;
  height: 42px;
  margin-left: 28px;
  border-radius: 8px;
  background: #01326a;
  overflow: hidden;
}
.header-lang a {
  position: relative;
  min-width: 53px;
  padding: 10px 0;
  font-size: 21px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  line-height: 1;
  text-align: center;
  color: #9fb2c7;
  transition: color 0.3s;
}
.header-lang a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 26px;
  background: #fff;
  transform: translateY(-50%);
}
.header-lang a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.header-lang a.active {
  color: #fff;
}
.header-lang a.active::after {
  opacity: 1;
}
.header-lang a:hover {
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .header-lang {
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
}

.hamburger {
  display: none;
  width: 25px;
  height: 22px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 20px;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1300px) {
  .hamburger {
    display: block;
    margin-left: 16px;
  }
}

@media screen and (max-width: 1300px) {
  .header-lang.pc {
    display: none !important;
  }
  .header-menu li.mb {
    display: block !important;
  }
}
.index {
  background: #01092d;
}
.index-kv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/942;
  background: #01092d url("../image/hero.jpg") no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .index-kv {
    max-height: 100vh;
    max-height: 100svh;
    background-color: #0a0525;
    background-position: right center;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  .index-kv {
    aspect-ratio: 399/917;
    background-image: url("../image/hero-m.jpg");
  }
}
.index-title {
  position: absolute;
  left: 12.7%;
  top: max(20%, 110px);
  height: 72.7%;
  width: auto;
  aspect-ratio: 668/756;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .index-title {
    top: max(min(20%, 20vh), 110px);
    top: max(min(20%, 20svh), 110px);
    height: min(72.7%, 72.7vh);
    height: min(72.7%, 72.7svh);
  }
}
.index-title img {
  width: 100%;
  height: 100%;
}
.index-title-part {
  animation: kv-title-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.index-title-part:not(:first-child) {
  position: absolute;
  inset: 0;
}
.index-title-part:nth-child(1) {
  clip-path: inset(0 0 86.8% 0);
  animation-delay: 0.2s;
}
.index-title-part:nth-child(2) {
  clip-path: inset(13.2% 0 57% 0);
  animation-delay: 0.55s;
}
.index-title-part:nth-child(3) {
  clip-path: inset(43% 0 17.7% 0);
  animation-delay: 0.9s;
}
.index-title-part:nth-child(4) {
  clip-path: inset(82.3% 0 0 0);
  animation-delay: 1.25s;
}
@media (prefers-reduced-motion: reduce) {
  .index-title {
    animation: none;
  }
  .index-title .index-title-part {
    animation: none;
  }
}
@media screen and (max-width: 767px) {
  .index-title {
    left: 50%;
    top: 11%;
    width: 79%;
    height: auto;
    transform: translateX(-50%);
    animation: none;
  }
}

.fixed-btn {
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 90;
  display: block;
  width: 108px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fixed-btn img {
  width: 100%;
  height: auto;
}
.fixed-btn:hover {
  transform: scale(1.06);
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    right: 16px;
    bottom: 24px;
    width: 76px;
  }
}

@keyframes panel-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes highlight-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes kv-title-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kv-title-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kv-title-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pin-float {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-2px);
  }
}
.foreword {
  min-height: 970px;
  padding: 120px 0 260px;
  background: #01092e url("../image/info-bg.jpg") no-repeat center top;
  background-size: 150% auto;
}
.foreword::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -243px;
  height: 486px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 9, 46, 0) 0%, #01092e 45%, rgba(1, 9, 46, 0) 100%);
}
@media screen and (max-width: 767px) {
  .foreword::before {
    top: -80px;
    height: 240px;
  }
}
.foreword .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .foreword {
    min-height: 0;
    padding: 60px 0 140px;
    background-size: 150% 130%;
  }
}
.foreword-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .foreword-title {
    font-size: 22px;
    line-height: 31px;
  }
}
.foreword-text {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
}
.foreword-text p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.foreword-text p + p {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .foreword-text {
    margin-top: 28px;
  }
  .foreword-text p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
}
.foreword-info {
  position: relative;
  display: flex;
  max-width: 720px;
  margin: 78px auto 0;
  padding: 26px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}
.foreword-info-item {
  flex: 1;
  text-align: center;
}
.foreword-info-item + .foreword-info-item {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.foreword-info-item .label {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}
.foreword-info-item .date {
  margin-top: 18px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.foreword-info-item .date em {
  font-size: 50px;
  font-style: normal;
}
.foreword-info-item .date span {
  font-size: 24px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
}
.foreword-info-item .place {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}
.foreword-info-item .place-pin {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  animation: pin-float 2.4s ease-in-out infinite;
  transition: filter 0.3s;
}
.foreword-info-item .place-pin:hover {
  filter: drop-shadow(0 0 8px rgba(140, 180, 255, 0.9));
}
@media (prefers-reduced-motion: reduce) {
  .foreword-info-item .place-pin {
    animation: none;
  }
}
.foreword-info-item .place-pin img {
  width: 16px;
  height: 23px;
}
.foreword-info-item .note {
  margin-top: 14px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .foreword-info-item .note {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .foreword-info {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
    max-width: 285px;
    padding: 31px;
  }
  .foreword-info-item + .foreword-info-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 28px;
  }
  .foreword-info-item .label {
    font-size: 17px;
  }
  .foreword-info-item .date em {
    font-size: 38px;
  }
  .foreword-info-item .date span {
    font-size: 18px;
  }
  .foreword-info-item .place {
    font-size: 16px;
  }
}

.agenda {
  margin-top: -130px;
  overflow-anchor: none;
  padding: 120px 0 130px;
  border-radius: 40px 40px 0 0;
  background: radial-gradient(55% 35% at 96% 20%, rgba(60, 150, 255, 0.35) 0%, rgba(0, 30, 140, 0) 100%), radial-gradient(45% 30% at 2% 32%, rgba(70, 110, 255, 0.3) 0%, rgba(0, 30, 140, 0) 100%), linear-gradient(180deg, #0d2288 0%, #132a72 32%, #101d4e 68%, #0e1233 100%);
}
.agenda::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.agenda > * {
  position: relative;
  z-index: 1;
}
.agenda::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 2%;
  width: 41%;
  aspect-ratio: 589/752;
  background: url("../image/dec-1.png") no-repeat center center;
  background-size: 100% 100%;
  transform: translateX(25%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .agenda::after {
    display: none;
  }
}
.agenda > .container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5%;
  z-index: -1;
  width: 35%;
  aspect-ratio: 510/502;
  background: url("../image/dec-3.png") no-repeat center center;
  background-size: 100% 100%;
  transform: translateX(-55%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .agenda > .container::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .agenda {
    margin-top: -90px;
    padding: 60px 0 70px;
  }
}
.agenda-tabs {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 84px;
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .agenda-tabs {
    min-height: 58px;
    margin-top: 40px;
  }
}
.agenda-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 259px;
  height: 80px;
  margin-bottom: -8px;
  padding: 0 24px 8px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  color: #95a0cb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: height 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.agenda-tab i {
  width: 1px;
  height: 24px;
  background: currentColor;
  opacity: 0.6;
}
.agenda-tab span {
  font-weight: 500;
}
.agenda-tab.active {
  height: 92px;
  background: #020050;
  color: #fff;
  box-shadow: 1px 1px 11.9px 7px rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 767px) {
  .agenda-tab {
    flex: 1;
    min-width: 0;
    height: 58px;
    gap: 6px;
    padding: 0 8px 8px;
    font-size: 12px;
    border-radius: 10px 10px 0 0;
  }
  .agenda-tab i {
    height: 14px;
  }
  .agenda-tab.active {
    height: 66px;
  }
}
@media screen and (max-width: 480px) {
  .agenda-tab {
    font-size: 12px;
    gap: 4px;
    padding: 0 5px 8px;
  }
}
.agenda-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 20px 20px 20px;
  background: #020050;
}
.agenda-panels.is-animating {
  transition: height 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .agenda-panels {
    border-radius: 0 0px 16px 16px;
  }
  .agenda-panels.is-pm {
    border-radius: 0px 0 16px 16px;
  }
}
.agenda-panel {
  grid-area: 1/1;
  position: relative;
  padding: 43px 64px 73px;
}
.agenda-panel:not(.active) {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .agenda-panel {
    padding: 18px 14px 22px;
    border-radius: 0 0 16px 16px;
  }
}
.agenda-place {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 12px 26px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2f45f8 0%, #8079fd 100%);
  font-size: 24px;
  line-height: 1.2;
}
.agenda-place svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.agenda-place b {
  font-weight: 700;
}
.agenda-place:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 767px) {
  .agenda-place {
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 5px;
  }
}
.agenda-list {
  clear: both;
}
.agenda-item {
  display: flex;
  align-items: stretch;
  position: relative;
}
.agenda-item::before {
  content: "";
  position: absolute;
  left: 111px;
  top: 0;
  bottom: -26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.agenda-item:first-child::before {
  top: 55px;
}
.agenda-item:last-child::before {
  bottom: auto;
  height: 47px;
}
.agenda-item + .agenda-item {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .agenda-item::before {
    left: 72px;
    bottom: -14px;
  }
  .agenda-item:first-child::before {
    top: 26px;
  }
  .agenda-item:last-child::before {
    height: 26px;
  }
  .agenda-item + .agenda-item {
    margin-top: 14px;
  }
}
.agenda-time {
  position: relative;
  flex-shrink: 0;
  width: 145px;
  padding: 25px 77px 0 0;
  text-align: right;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.agenda-time span {
  display: block;
  line-height: 1.2;
}
.agenda-time::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 47px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .agenda-time {
    width: 95px;
    padding: 8px 40px 0 0;
    font-size: 15px;
  }
  .agenda-time::after {
    right: 18px;
    top: 22px;
    width: 9px;
    height: 9px;
  }
}
.agenda-card {
  flex: 1;
  max-width: 729px;
  padding: 35px 43px;
  border-radius: 20px;
  background: #181671;
}
.agenda-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.agenda-card p {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.4;
  color: #add3ff;
}
.agenda-card ul {
  margin-top: 10px;
  padding-left: 8px;
}
.agenda-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.45;
  color: #add3ff;
}
.agenda-card ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.agenda-card ul li + li {
  margin-top: 2px;
}
.agenda-card.light {
  background: #d2deff;
}
.agenda-card.light h3,
.agenda-card.light p,
.agenda-card.light ul li {
  color: #020050;
}
.agenda-panel[data-panel=pm] .agenda-card {
  background: rgba(0, 67, 167, 0.6);
}
@media screen and (max-width: 767px) {
  .agenda-card {
    padding: 14px 16px 16px;
    border-radius: 12px;
  }
  .agenda-card h3 {
    font-size: 16px;
    line-height: 1.2;
  }
  .agenda-card p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }
  .agenda-card ul {
    margin-top: 6px;
  }
  .agenda-card ul li {
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.55;
  }
  .agenda-card ul li::before {
    left: 2px;
    top: 9px;
    width: 4px;
    height: 4px;
  }
}

.exhibitors {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .exhibitors {
    padding: 50px 0 0;
  }
}
.exhibitors-title {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .exhibitors-title {
    font-size: 24px;
    text-align: center;
  }
}
.exhibitors-slider {
  margin: 24px -70px 0 0;
  padding: 16px 0 20px 20px;
}
.exhibitors-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.exhibitors-slider .slick-slide {
  height: auto;
}
@media screen and (max-width: 767px) {
  .exhibitors-slider {
    margin: 24px 0 0;
  }
}
.exhibitors-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
  margin-top: 46px;
  padding-right: 58px;
}
@media screen and (max-width: 767px) {
  .exhibitors-nav {
    justify-content: center;
    gap: 40px;
    margin-top: 22px;
    padding-right: 0;
  }
}
.exhibitors-arrow {
  display: block;
  transition: 0.3s;
}
.exhibitors-arrow img {
  width: 19px;
  height: 31px;
  transform: translateX(0.5px);
}
.exhibitors-arrow.prev img {
  transform: scaleX(-1) translateX(0.5px);
}
.exhibitors-arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .exhibitors-arrow img {
    width: 15px;
    height: 24px;
  }
}

a.exhibitor-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.exhibitor-card {
  height: 100%;
  margin-right: 24px;
  padding: 26px 22px 28px;
  border: 1px solid #3b96ff;
  border-radius: 12px;
  background: #fff;
}
.exhibitor-card .exhibitor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
}
.exhibitor-card .exhibitor-logo img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.exhibitor-card .exhibitor-name {
  margin-top: 18px;
  padding: 13px 10px;
  border-radius: 6px;
  background: #102763;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-indent: 0.3em;
  text-align: center;
}
.exhibitor-card .exhibitor-desc {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .exhibitor-card {
    margin-right: 14px;
    padding: 20px 16px 22px;
  }
  .exhibitor-card .exhibitor-name {
    font-size: 16px;
    text-indent: 0.16em;
  }
  .exhibitor-card .exhibitor-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

.speakers {
  margin-top: -1px;
  padding: 120px 0 130px;
  border-radius: 40px 40px 0 0;
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speakers {
    padding: 86px 0 96px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speakers {
    padding: 64px 0 72px;
  }
}
.speakers {
  background-image: url("./../image/speakers-bg.jpg");
  background-size: cover;
}
.speakers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.speakers > * {
  position: relative;
  z-index: 1;
}
.speakers::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 0%;
  width: 43%;
  aspect-ratio: 614/604;
  background: url("../image/dec-2.png") no-repeat center center;
  background-size: 100% 100%;
  transform: translateX(28%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .speakers::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .speakers {
    padding: 60px 0 90px;
    border-radius: 40px 40px 0 0;
    background-image: url("./../image/speakers-bg-m.jpg");
  }
}
@media screen and (max-width: 767px) {
  .speakers .container {
    padding: 0 40px;
  }
}
.speakers-slider {
  margin-top: 76px;
}
.speakers-slider .slick-list {
  border-radius: 16px;
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speakers-slider {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speakers-slider {
    margin-top: 34px;
  }
}
@media screen and (max-width: 767px) {
  .speakers-slider {
    margin-top: 38px;
  }
}
.speakers-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speakers-nav {
    margin-top: 14px;
  }
}
.speakers-nav.is-hidden {
  display: none;
}
.speakers-nav > div {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .speakers-nav {
    justify-content: space-between;
  }
}
.speakers-count {
  margin-right: 19px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speakers-count {
    font-size: 20px;
  }
}
.speakers-count {
  font-weight: 600;
  line-height: 1;
  color: #95a0cb;
}
@media screen and (max-width: 767px) {
  .speakers-count {
    margin-right: 0;
    font-size: 24px;
  }
}
.speakers-arrow {
  width: 65px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #020050;
  transition: 0.3s;
}
.speakers-arrow img {
  width: 21px;
  height: 34px;
  transform: translateX(0.5px);
}
.speakers-arrow.prev img {
  transform: scaleX(-1) translateX(0.5px);
}
.speakers-arrow:hover {
  background: #2f45f8;
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speakers-arrow {
    width: 52px;
    height: 50px;
  }
  .speakers-arrow img {
    width: 17px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .speakers-arrow {
    width: 43px;
    height: 43px;
  }
  .speakers-arrow img {
    width: 12px;
    height: 21px;
  }
}

.speaker-card {
  display: flex !important;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #020050;
}
@media screen and (min-width: 768px) {
  .speaker-card {
    max-height: calc(100vh - 196px);
    max-height: calc(100svh - 196px);
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card {
    max-height: calc(100vh - 180px);
    max-height: calc(100svh - 180px);
  }
}
.speaker-card .speaker-photo {
  flex-shrink: 0;
  width: 44%;
  background: #fff;
}
.speaker-card .speaker-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
.speaker-card .speaker-info {
  flex: 1;
  min-width: 0;
  padding: 42px 46px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: safe center;
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speaker-card .speaker-info {
    padding: 32px 40px 34px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card .speaker-info {
    padding: 24px 32px 26px;
    overflow-y: auto;
  }
}
.speaker-card .speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.speaker-card .speaker-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 13px;
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card .speaker-tag {
    padding: 5px 12px;
    font-size: 12px;
  }
}
.speaker-card .speaker-tag b {
  font-weight: 700;
}
.speaker-card .speaker-tag i {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.6);
}
.speaker-card h3 {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speaker-card h3 {
    margin-top: 14px;
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card h3 {
    margin-top: 12px;
    font-size: 20px;
  }
}
.speaker-card .speaker-job {
  margin-top: 6px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.94);
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speaker-card .speaker-job {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card .speaker-job {
    font-size: 14px;
  }
}
.speaker-card .speaker-bio {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .speaker-card .speaker-bio {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.42;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .speaker-card .speaker-bio {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .speaker-card {
    display: block !important;
  }
  .speaker-card .speaker-photo {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    z-index: 0;
  }
  .speaker-card .speaker-info {
    padding: 30px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    background: #020050;
  }
  .speaker-card h3 {
    margin-top: 16px;
    font-size: 24px;
  }
  .speaker-card .speaker-job {
    font-size: 16px;
  }
  .speaker-card .speaker-bio {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
  }
}

.registration {
  padding: 120px 0 150px;
  overflow: hidden;
  background: #fff;
}
.registration::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15%;
  z-index: 0;
  width: 20%;
  aspect-ratio: 300/640;
  background: url("../image/deco-glow.png") no-repeat left top;
  background-size: auto 100%;
  pointer-events: none;
}
.registration::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 30%;
  aspect-ratio: 330/430;
  background: url("../image/deco-crystal.png") no-repeat right bottom;
  background-size: auto 100%;
  pointer-events: none;
}
.registration .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .registration .container {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .registration {
    padding: 60px 0 80px;
  }
  .registration::before {
    width: 40%;
    top: -10%;
  }
  .registration::after {
    width: 60%;
  }
}
.registration {
  --placeholder: #d5d5d5;
}
.registration .campaign-form-wrap {
  max-width: 1002px;
  margin: 76px auto 0;
}
@media screen and (max-width: 767px) {
  .registration .campaign-form-wrap {
    margin-top: 32px;
  }
}
.registration .campaign-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 44px;
       column-gap: 44px;
  row-gap: 24px;
  padding: 50px 84px 56px;
  border: 1px solid #dcdfea;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
}
@media screen and (max-width: 767px) {
  .registration .campaign-form {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 14px;
    padding: 27px;
    border-radius: 14px;
  }
}
.registration .form-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.registration .form-item.full {
  grid-column: 1/-1;
}
.registration .form-item .item-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1;
  color: #303030;
  font-weight: 500;
}
.registration .form-item .item-title.required::before {
  color: #e4572e;
}
@media screen and (max-width: 767px) {
  .registration .form-item .item-title {
    font-size: 16px;
  }
}
.registration .form-item .input-wrap input[type=text]::-moz-placeholder {
  color: #d5d5d5;
}
.registration .form-item .input-wrap input[type=text]::placeholder {
  color: #d5d5d5;
}
.registration .form-item .input-wrap input[type=text],
.registration .form-item .input-wrap input[type=email],
.registration .form-item .input-wrap select {
  height: 60px;
  padding: 0 18px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 17px;
  color: #303030;
  transition: 0.3s;
}
.registration .form-item .input-wrap input[type=text]:focus,
.registration .form-item .input-wrap input[type=email]:focus,
.registration .form-item .input-wrap select:focus {
  outline: 0;
  border-color: #2f45f8;
  box-shadow: 0 0 0 3px rgba(47, 69, 248, 0.12);
}
.registration .form-item .input-wrap input[type=text].invalid,
.registration .form-item .input-wrap input[type=email].invalid,
.registration .form-item .input-wrap select.invalid {
  border: 1px solid #cc4218;
}
@media screen and (max-width: 767px) {
  .registration .form-item .input-wrap input[type=text],
  .registration .form-item .input-wrap input[type=email],
  .registration .form-item .input-wrap select {
    height: 52px;
    font-size: 16px;
  }
}
.registration .form-item .input-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 44px;
  color: #d5d5d5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 11' fill='none' stroke='%23d5d5d5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 1.5 9.5 9.5l8-8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 19px 11px;
  cursor: pointer;
}
.registration .form-item .error-message {
  order: 99;
  margin-top: 8px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #cc4218;
}
.registration .required-text {
  max-width: 1002px;
  margin: 76px auto 10px;
  padding: 0 4px;
  font-size: 15px;
  color: #cc4218;
}
@media screen and (max-width: 767px) {
  .registration .required-text {
    margin-top: 32px;
  }
}
.registration .form-item .gender-radios {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 34px;
       column-gap: 34px;
  row-gap: 10px;
  flex-wrap: wrap;
  padding: 6px 0 0;
}
.registration .radio-item {
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}
.registration .radio-item .radiobox {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #bdbdbd;
  background: #fff;
  transition: 0.3s;
}
.registration .radio-item .radiobox::before {
  width: 12px;
  height: 12px;
  background-color: #2f45f8;
}
.registration .radio-item input[type=radio]:checked + .radiobox {
  border-color: #2f45f8;
}
.registration .radio-item .radio-text {
  font-size: 17px;
  color: #3c434f;
}
@media screen and (max-width: 767px) {
  .registration .radio-item .radiobox {
    width: 22px;
    height: 22px;
  }
  .registration .radio-item .radio-text {
    font-size: 14px;
  }
}
.registration .form-item .session-checks {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 14px;
  padding: 4px 0 0;
}
.registration .form-item .session-checks > .checkbox-item {
  flex: 1 1 0;
  min-width: 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .registration .form-item .session-checks {
    display: block;
  }
  .registration .form-item .session-checks .checkbox-item + .checkbox-item {
    margin-top: 14px;
  }
}
.registration .checkbox-item {
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  cursor: pointer;
}
.registration .checkbox-item .checkbox {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  background: #fff;
  color: #fff;
  transition: 0.3s;
}
.registration .checkbox-item .checkbox svg {
  width: 13px;
  height: 9px;
}
.registration .checkbox-item input[type=checkbox]:checked + .checkbox {
  border-color: #2f45f8;
  background: #2f45f8;
}
.registration .checkbox-item .checkbox-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .registration .checkbox-item {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .registration .checkbox-item .checkbox {
    width: 26px;
    height: 26px;
  }
  .registration .checkbox-item .checkbox-text {
    font-size: 14px;
  }
}
.registration .form-item.privacy-policy-wrap {
  padding-top: 4px;
}
.registration .form-item.privacy-policy-wrap .checkbox-item .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .registration .form-item.privacy-policy-wrap .checkbox-item .checkbox {
    font-size: 15px;
    width: 26px;
    height: 26px;
  }
}
.registration .form-item.privacy-policy-wrap .item-title {
  margin-bottom: 0;
}
.registration .form-item.privacy-policy-wrap .checkbox-item .checkbox-text {
  font-size: 20px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .registration .form-item.privacy-policy-wrap .checkbox-item .checkbox-text {
    font-size: 14px;
  }
}
.registration .form-item.privacy-policy-wrap a {
  color: #2f45f8;
}
.registration .form-item.privacy-policy-wrap .privacy-policy-content {
  order: 100;
  padding: 5px 0 0 0;
  font-size: 12px !important;
  line-height: 1.9;
  color: #6b7280;
}
@media screen and (max-width: 767px) {
  .registration .form-item.privacy-policy-wrap .privacy-policy-content {
    padding-left: 0;
  }
}
.registration .form-item.privacy-policy-wrap .error-message {
  order: 101;
}
.registration .submit-buttons-wrap {
  justify-content: center;
  margin-top: 30px;
}
.registration .submit-buttons-wrap > button.primary {
  width: 162px;
  height: 55px;
  padding: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #2841f8 0%, #827bfd 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.registration .submit-buttons-wrap > button.primary:hover {
  opacity: 0.88;
}
@media screen and (max-width: 767px) {
  .registration .submit-buttons-wrap > button.primary {
    width: 162px;
    height: 55px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .registration .submit-buttons-wrap {
    margin-top: 48px;
  }
}

.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(35, 55, 170, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.campaign-popup.active {
  opacity: 1;
  visibility: visible;
}
.campaign-popup .popup-box {
  position: relative;
  width: 100%;
  max-width: 1202px;
  padding: 68px 60px 72px;
  border-radius: 58px;
  background: linear-gradient(100deg, #d4daff 0%, #9ddaff 100%);
  text-align: center;
}
.campaign-popup .popup-box .popup-title,
.campaign-popup .popup-box .popup-content {
  font-size: 32px;
  font-weight: 700;
  line-height: 68px;
  color: #020050;
}
.campaign-popup .popup-box .popup-content {
  margin-top: 0px;
}
.campaign-popup .popup-box .popup-close {
  position: absolute;
  top: 50px;
  right: 65px;
  width: 23px;
  height: 23px;
  padding: 0;
  background: none;
  transition: 0.3s;
}
.campaign-popup .popup-box .popup-close img {
  width: 100%;
  height: 100%;
}
.campaign-popup .popup-box .popup-close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .campaign-popup .popup-box {
    padding: 46px 20px 40px;
    border-radius: 28px;
  }
  .campaign-popup .popup-box .popup-title,
  .campaign-popup .popup-box .popup-content {
    font-size: 18px;
    line-height: 1.9;
  }
  .campaign-popup .popup-box .popup-close {
    top: 20px;
    right: 20px;
    width: 22px;
    height: 22px;
  }
}

.downloads {
  padding: 120px 0 150px;
  background: linear-gradient(115deg, #0026bc 0%, #061a72 55%, #040627 100%);
}
.downloads::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.downloads > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .downloads {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .downloads .container {
    padding: 0 42px;
  }
}
.downloads-list {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .downloads-list {
    margin-top: 32px;
  }
}
.downloads-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  transition: 0.3s;
}
.downloads-item + .downloads-item {
  margin-top: 22px;
}
.downloads-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
@media screen and (max-width: 767px) {
  .downloads-item {
    padding: 16px 14px;
    min-height: 55px;
  }
  .downloads-item + .downloads-item {
    margin-top: 25px;
  }
}
.downloads-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .downloads-name {
    font-size: 14px;
    line-height: 1.2;
  }
}
.downloads-action {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
.downloads-action a {
  display: block;
  transition: 0.3s;
}
.downloads-action a:hover {
  opacity: 0.7;
}
.downloads-action img {
  width: 42px;
  height: auto;
}
.downloads-action a[aria-label=線上瀏覽] img {
  width: 44px;
}
@media screen and (max-width: 767px) {
  .downloads-action {
    gap: 18px;
  }
  .downloads-action img,
  .downloads-action a[aria-label=線上瀏覽] img {
    width: 30px;
  }
}

.highlight {
  padding: 120px 0 150px;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .highlight {
    padding: 60px 0 70px;
  }
}
.highlight-marquee {
  margin-top: 76px;
  overflow: hidden;
}
.highlight-marquee:hover .highlight-track {
  animation-play-state: paused;
}
@media screen and (max-width: 767px) {
  .highlight-marquee {
    margin-top: 32px;
  }
}
.highlight-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: highlight-marquee 40s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .highlight-track {
    animation: none;
  }
}
.highlight-item {
  flex: 0 0 auto;
  width: 429px;
  padding: 0 18px;
}
.highlight-item img {
  width: 100%;
  aspect-ratio: 780/520;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eef1f6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .highlight-item {
    width: 300px;
    padding: 0 8px;
  }
}
.highlight-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.highlight-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.highlight-lightbox img {
  width: auto;
  height: auto;
  max-width: min(1000px, 92vw);
  max-height: 80vh;
  min-width: min(320px, 80vw);
  min-height: min(320px, 50vh);
  -o-object-fit: contain;
     object-fit: contain;
}
.highlight-lightbox-close {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.article {
  padding: 100px 0 120px;
  background: linear-gradient(100deg, #d8d9ff 0%, #c5dafc 50%, #b3d9fc 100%);
}
@media screen and (max-width: 767px) {
  .article {
    padding: 56px 0 64px;
  }
}
.article .container {
  max-width: 1274px;
}
@media screen and (max-width: 767px) {
  .article .container {
    padding: 0 50px;
  }
}
.article-tabs {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .article-tabs {
    gap: 14px;
    margin-top: 28px;
  }
}
.article-tab {
  width: 183px;
  height: 54px;
  padding: 0 10px;
  border: 2px solid #020050;
  border-radius: 10px;
  background: transparent;
  color: #020050;
  font-size: 20px;
  font-weight: 700;
  text-indent: 0.06em;
  transition: 0.3s;
}
.article-tab.active {
  background: #020050;
  color: #fff;
}
.article-tab:hover:not(.active) {
  background: rgba(2, 0, 80, 0.08);
}
@media screen and (max-width: 767px) {
  .article-tab {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: 16px;
  }
}
.article-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
}
.article-panel {
  grid-area: 1/1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.article-panel:not(.active) {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .article-panel {
    transition: none;
  }
  .article-panel:not(.active) {
    transition: none;
  }
}
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  margin-top: 54px;
}
@media screen and (max-width: 900px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .article-list {
    display: block;
    margin-top: 28px;
  }
  .article-list .slick-slide > div {
    padding: 0;
  }
  .article-list .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    line-height: 1;
  }
  .article-list .slick-dots li {
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .article-list .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    transition: background 0.3s;
  }
  .article-list .slick-dots li button::before {
    display: none;
  }
  .article-list .slick-dots li.slick-active button {
    background: #020050;
  }
}

.article-card {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20, 40, 120, 0.08);
  transition: 0.3s;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(20, 40, 120, 0.16);
}
.article-card .article-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  background: #eef1f6;
}
.article-card .article-info {
  padding: 42px 28px 15px;
}
.article-card .article-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
  font-size: 20px;
  line-height: 32px;
  color: #000;
}
.article-card .article-more {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  text-align: right;
  color: #142784;
}
@media screen and (max-width: 767px) {
  .article-card .article-info {
    padding: 20px 18px 14px;
  }
  .article-card .article-text {
    height: auto;
    font-size: 16px;
    line-height: 1.8;
  }
  .article-card .article-more {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }
}

.footer {
  padding: 130px 0 110px;
  background: linear-gradient(90deg, #d4daff 0%, #9ddaff 100%);
  color: #1a1f33;
}
.footer.is-white {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 64px;
  }
}
.footer-org {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.footer-org-item {
  display: flex;
  align-items: center;
  gap: 29px;
}
.footer-org-item img {
  width: auto;
  height: 42px;
}
.footer-org-label {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer-org {
    flex-direction: column;
    gap: 35px;
  }
  .footer-org-item {
    flex-direction: column;
    gap: 12px;
  }
  .footer-org-item img {
    height: 40px;
  }
  .footer-org-label {
    font-size: 16px;
    line-height: 58px;
  }
}
.footer-copy {
  margin-top: 86px;
  text-align: center;
}
.footer-copy p {
  font-size: 16px;
  line-height: 32px;
  color: #1d1d1d;
}
.footer-copy a {
  text-decoration: underline;
}
.footer-copy a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .footer-copy {
    margin-top: 68px;
  }
}
