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

html,
body {
  touch-action: pan-y;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  cursor: default;
  height: 100%;
}

body {
  width: 100%;
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  background-color: #F4F2F1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.mt-text {
  margin-top: 320px;
}
@media screen and (max-width: 640px) {
  .mt-text {
    margin-top: 440px;
  }
}
@media screen and (max-width: 480px) {
  .mt-text {
    margin-top: 320px;
  }
}

.mt-40 {
  margin-top: 40px;
}

.style-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-br {
  display: none;
}
@media screen and (max-width: 640px) {
  .modal-br {
    display: initial;
  }
}

.modal-text-br {
  display: block;
  height: 12px;
}

@media screen and (max-width: 640px) {
  .mobile-br {
    display: inline;
  }
}
#home,
#basic,
#trade {
  scroll-margin-top: 80px;
}

#topic {
  scroll-margin-top: -240px;
}

.bg-orange {
  background-color: #F94806;
}

.text-orange {
  color: #F94806;
}

.bg-black {
  background-color: #383D42;
}

.float {
  animation: floatY 4s ease-in-out infinite;
  will-change: transform;
}

.float-light {
  animation: floatY2 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
}
@keyframes floatY2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInCoin 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInCoin {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.immediate {
  opacity: 1;
  transform: none;
  transition: none !important;
}

.fade-cat {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-cat.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInFadeLeft {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFadeRight {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 預設：淡入滑入（由右往左） */
.bannerC {
  animation: slideInFadeRight 1s ease forwards;
  animation-delay: 0.2s; /* 可選：延遲播放 0.2s */
}

/* 若要改成由左往右，只要套這個 */
.bannerC.from-left {
  animation: slideInFadeLeft 1s ease forwards;
}

.quiz-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: rgba(78, 78, 78, 0.6);
  background-blend-mode: multiply;
  backdrop-filter: blur(7.5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  z-index: 1000;
  cursor: pointer;
}

.quiz-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s;
}

.quiz-shell {
  position: relative;
  width: min(92vw, 860px);
  max-height: 70vh;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  transform: translateY(18px);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .quiz-shell {
    padding: 16px;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-shell {
    max-height: 70vh;
    margin-top: 48px;
  }
}

.quiz-overlay.open .quiz-shell {
  transform: translateY(0);
}

.quiz-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .quiz-close {
    top: 16px;
    right: 16px;
  }
}

.quiz-nav {
  border: 0;
  background-color: transparent;
  outline: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.quiz-prev {
  justify-self: end;
  margin-right: 20px;
}

.quiz-next {
  justify-self: start;
  margin-left: 20px;
}

.quiz-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.quiz-modal-item {
  display: none;
}

.quiz-header h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
  color: #F94806;
  padding-bottom: 8px;
  padding-right: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid #F4F2F1;
}
@media screen and (max-width: 640px) {
  .quiz-header h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-header h3 {
    font-size: 16px;
  }
}

.quiz-layout-table {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.quiz-layout-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.quiz-layout-img p {
  order: 0;
}
.quiz-layout-img img {
  order: 1;
  max-width: 218px;
}
@media screen and (max-width: 640px) {
  .quiz-layout-img {
    flex-direction: column;
    justify-content: flex-start;
  }
  .quiz-layout-img p {
    order: 3;
  }
  .quiz-layout-img img {
    order: 2;
  }
}

.quiz-container-wrapper {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 18px;
}

.quiz-container-wrapper::-webkit-scrollbar {
  width: 8px;
}

.quiz-container-wrapper::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 50px;
}

.quiz-container-wrapper::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 50px;
}

.quiz-container {
  gap: 28px;
}

.quiz-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  color: #383D42;
  width: 100%;
}
.quiz-des a {
  color: #383D42;
}
.quiz-des a:hover {
  color: #F94806;
}

.quiz-modal-item.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.quiz-ol {
  width: 100%;
  margin: 0;
  padding-left: 24px;
  margin-top: 8px;
}
.quiz-ol li {
  color: #383D42;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}

.bold li {
  font-weight: 500;
}

.quiz-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  bottom: -84px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1080px) {
  .quiz-controls {
    display: flex;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-controls {
    display: none;
  }
}
.quiz-controls .quiz-nav {
  margin: 0;
}
.quiz-controls .quiz-nav img {
  width: 60px;
}
.quiz-controls .quiz-dots {
  transform: none;
  position: static;
  bottom: auto;
  left: auto;
  margin: 0;
}

.quiz-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-dot.active {
  width: 22px;
  border-radius: 999px;
  background-color: #383D42;
}

.collapse {
  margin-top: 20px;
  overflow: hidden;
}
.collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
}
.collapse-header img {
  transition: transform 0.3s ease;
}
.collapse-expand {
  color: #383D42;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.collapse-expand > * {
  overflow: hidden;
}

.collapse-container {
  padding: 0px 24px 0px 24px;
  background-color: #F4F2F1;
  border-radius: 12px;
  overflow: hidden;
}
.collapse-container h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #F94806;
  width: 100%;
  margin: 0;
  padding: 0;
}

.collapse-expand.is-open {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
}

.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.64px;
  font-weight: 300;
  text-align: left;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 580px) {
  .compare-table {
    margin-right: 1px;
  }
}

.compare-table thead th {
  background-color: #F94806;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  border-right: 1px solid white;
}

.table-overlay {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  pointer-events: none;
}
.table-overlay-img {
  width: 100%;
  height: calc(100% - 16px);
  object-fit: cover;
  mix-blend-mode: multiply;
  display: block;
}
@media screen and (max-width: 480px) {
  .table-overlay-img {
    height: calc(100% - 8px);
  }
}
.table-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 580px) {
  .table-overlay {
    display: block;
  }
}

.table-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 36px;
  right: -18px;
}

.compare-table thead th:last-child {
  border: none;
}

.compare-table thead th:first-child {
  text-align: center;
}

.compare-table thead tr:last-child {
  border-top-left-radius: 12px;
}

.compare-table thead tr:first-child {
  border-top-right-radius: 12px;
}

.compare-table td {
  color: #333;
  padding: 12px 16px;
  border-top: 1px solid #D9D9D9;
  vertical-align: middle;
}

.compare-table td:first-child {
  font-weight: 600;
  width: 15%;
  min-width: 104px;
  color: #333;
  text-align: center;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #F4F2F1;
}

.table-shell {
  position: relative;
  width: 100%;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
}

.table-wrapper.table-scrolled + .table-overlay {
  opacity: 0;
  visibility: hidden;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 50px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 50px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature img {
  max-width: 110px;
}
.feature h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #383D42;
}
.feature p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  color: #605E6E;
}
.feature-container {
  margin-top: 28px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 580px) {
  .feature-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.table-inner {
  padding-left: 16px;
}

.table-hl {
  font-weight: 600;
}

.table-center {
  text-align: center;
}

.table-hint {
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  text-align: left;
  color: #605E6E;
  font-weight: 400;
  margin-top: 8px;
}

.carousel-img-wrapper {
  position: relative;
  margin-top: 12px;
}
.carousel-img-wrapper .zoom {
  display: none;
  position: absolute;
  width: 35px;
  height: 35px;
  right: 8px;
  top: 8px;
  z-index: 5;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 9.1px 0 rgba(0, 0, 0, 0.25);
  padding: 7px;
  cursor: pointer;
}
@media screen and (max-width: 580px) {
  .carousel-img-wrapper .zoom {
    display: block;
  }
}
.carousel-img-wrapper .hero {
  position: relative;
  width: 100%;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 580px) {
  .carousel-img-wrapper .hero {
    border-radius: 12px;
  }
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.img-modal.active {
  display: flex;
}

.img-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.img-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.img-modal-content img {
  width: 100%;
  max-width: 1280px;
  height: auto;
  object-fit: contain;
}

.img-modal-close {
  background: none;
  border: none;
  cursor: pointer;
}
.img-modal-close img {
  width: 32px;
  height: 32px;
}

.zoom {
  cursor: zoom-in;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
  /* Safari */
}

header {
  width: calc(100% - 60px);
  margin: 25px 0px;
  max-width: 1380px;
  height: 72px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
  position: fixed;
  transition: transform 0.5s ease;
  z-index: 99;
}
@media screen and (max-width: 640px) {
  header {
    box-shadow: none;
    width: 100%;
    border-radius: 0;
    margin: 0;
    height: 60px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  header img {
    width: 144px;
  }
}

header.is-hidden {
  transform: translateY(-170%);
}

.position {
  left: 50%;
  transform: translateX(-50%);
}

.position2 {
  left: 50%;
  transform: translateX(calc(-50% - 28px));
}

.header-nav {
  display: flex;
  position: relative;
}
@media screen and (max-width: 960px) {
  .header-nav {
    display: none;
  }
}
.header-nav a:not(:last-child) {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid #D9D9D9;
}
.header-nav .nav-item {
  position: relative;
}
.header-nav .nav-item .style-center {
  gap: 4px;
}
.header-nav .nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  height: 60px;
}
.header-nav .nav-item:last-child a {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
.header-nav .nav-item > a {
  position: relative;
  z-index: 2;
}
.header-nav .nav-item .dropdown {
  position: absolute;
  top: 60px;
  width: 150px;
  z-index: 999;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms linear;
}
.header-nav .nav-item .dropdown-inner {
  overflow: hidden;
}
.header-nav .nav-item .dropdown-inner a {
  display: block;
  padding: 8px 8px;
  color: #383D42;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  letter-spacing: 0px;
  text-decoration: none;
  text-align: center;
}
.header-nav .nav-item .dropdown-inner a:first-child {
  padding-top: 16px;
}
.header-nav .nav-item .dropdown-inner a:last-child {
  padding-bottom: 16px;
}
.header-nav .nav-item .dropdown-inner a:hover {
  color: #F94806;
}
.header-nav .nav-item:hover .dropdown {
  grid-template-rows: 1fr;
}
.header-text a {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  text-decoration: none;
  color: #383D42;
  cursor: pointer;
}
.header-text a:hover {
  color: #F94806;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.menu-btn img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 960px) {
  .menu-btn {
    display: block;
  }
}

.nav-modal {
  position: fixed;
  inset: 0;
  background: rgba(56, 61, 66, 0.4);
  backdrop-filter: blur(3px);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.nav-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}
.nav-modal-content {
  background: #fff;
  width: 100%;
  border-radius: 0 0 28px 28px;
  text-align: center;
  overflow: hidden;
  margin: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.nav-modal-content .nav-modal-inner {
  overflow: hidden;
}
.nav-modal.open .nav-modal-content {
  grid-template-rows: 1fr;
}
.nav-modal .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 20px 0 20px;
}
.nav-modal .nav-header .nav-back-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav-modal .nav-header button {
  background: none;
  border: none;
  cursor: pointer;
}
.nav-modal .nav-header button img {
  width: 24px;
}
.nav-modal .nav-panels {
  --panel-index: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  transition: transform 0.28s ease;
  transform: translateX(calc(var(--panel-index) * -100%));
}
.nav-modal .panel {
  width: 100%;
}
.nav-modal .panel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.nav-modal.subopen .nav-back-btn {
  opacity: 1;
  pointer-events: auto;
}
.nav-modal .nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 16px 28px;
  text-align: left;
}
.nav-modal .nav-list a {
  padding: 16px 0;
  color: #383D42;
  text-decoration: none;
}
.nav-modal .nav-list a:hover {
  color: #F94806;
}

.cloud1 {
  position: absolute;
  z-index: 1;
  right: -200px;
  top: 40%;
  transform: translateY(-80%);
}

.cloud2 {
  position: absolute;
  z-index: 1;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.cloud3 {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 40px;
}

.bannerC {
  position: absolute;
  left: 40%;
  transform: translateX(-20%);
  bottom: 0;
  z-index: 2;
  width: 100%;
  max-width: 848px;
}
@media screen and (max-width: 1440px) {
  .bannerC {
    left: auto;
    right: 5%;
    transform: none;
    width: 60vw;
    max-width: none;
  }
}
@media screen and (max-width: 640px) {
  .bannerC {
    width: 100%;
    right: auto;
    top: auto;
    top: 440px;
  }
}

.banner-img {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 750px;
  overflow-x: clip;
  overflow-y: visible;
}
.banner-coin {
  position: absolute;
  z-index: 3;
  width: 100%;
}
.banner-coin img {
  width: 100%;
  height: 750px;
  object-fit: contain;
  object-position: center center;
}
@media screen and (max-width: 640px) {
  .banner-coin img {
    object-fit: cover;
  }
}
@media screen and (max-width: 430px) {
  .banner-coin img {
    object-fit: contain;
  }
}
.banner-bg {
  position: absolute;
  width: 100%;
}
.banner-bg img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: bottom center;
}
@media screen and (min-width: 1521px) {
  .banner-bg img {
    height: 900px;
  }
}
.banner-container {
  width: 100%;
  max-width: 1440px;
  padding-left: 137px;
  margin-top: 182px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  color: #383D42;
}
@media screen and (max-width: 1280px) {
  .banner-container {
    padding-left: 5%;
    margin-top: 140px;
  }
}
@media screen and (max-width: 640px) {
  .banner-container {
    width: auto;
    padding: 0;
    margin: 100px auto;
  }
}
@media screen and (max-width: 480px) {
  .banner-container {
    padding-right: 30px;
  }
}
.banner-container h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 81.6px;
  letter-spacing: 0px;
  margin-bottom: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 640px) {
  .banner-container h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    letter-spacing: 0px;
  }
}
.banner-container p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
  margin-bottom: 18px;
}
@media screen and (max-width: 640px) {
  .banner-container p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
  }
}

.btn-wrapper {
  display: flex;
  gap: 12px;
}
.btn-wrapper a {
  text-decoration: none;
  color: #FFFFFF;
}
.btn-style {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  letter-spacing: 0px;
}
.btn-size {
  width: 145px;
  height: 48px;
}
@media screen and (max-width: 640px) {
  .btn-size {
    width: 128px;
    height: 40px;
  }
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-container {
  position: relative;
  padding: 0 18px;
}
.text-container h3 {
  color: #F94806;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  letter-spacing: 4.32px;
}
@media screen and (max-width: 640px) {
  .text-container h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    letter-spacing: 3.36px;
  }
}
.text-container h2 {
  color: #383D42;
  font-size: 44px;
  font-weight: 700;
  line-height: 52.8px;
  letter-spacing: 0px;
  margin: 4px 0 24px 0;
}
@media screen and (max-width: 640px) {
  .text-container h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 45.6px;
    letter-spacing: 0px;
  }
}
.text-container p {
  color: #605E6E;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 780px) {
  .text-container p {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  .text-container p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
    text-align: left;
  }
}

.tab-switch {
  position: relative;
  display: flex;
  background: #FFFFFF;
  border-radius: 999px;
  gap: 4px;
  padding: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .tab-switch {
    display: flex;
    flex-wrap: wrap;
  }
}
.tab-switch .tab {
  position: relative;
  border: none;
  background: none;
  border-radius: 999px;
  width: 138px;
  height: 50px;
  color: #383D42;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}
@media screen and (max-width: 960px) {
  .tab-switch .tab {
    width: 158px;
    height: 42px;
    flex: 0 0 calc(50% - 4px);
  }
}
.tab-switch .tab.active {
  color: #FFFFFF;
}
.tab-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: #383D42;
  border-radius: 999px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.card {
  cursor: pointer;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 3px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.card-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  z-index: 50;
}
.card-section-hor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 5;
  padding: 0 24px;
  max-width: 1380px;
  margin: 300px auto 0 auto;
}
@media screen and (max-width: 480px) {
  .card-section-hor {
    margin-top: 160px;
  }
}
.card-section-hor .text-container {
  text-align: left;
}
@media screen and (max-width: 900px) {
  .card-section-hor .text-container {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .card-section-hor {
    flex-direction: column;
  }
}
.card-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px auto;
  padding: 0 18px;
  width: 100%;
  max-width: 1216px;
}
.card-wrapper-bg {
  background-color: #F5F1F0;
  border-radius: 20px 20px 0 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 580px) {
  .card-wrapper-bg {
    width: 100dvw;
  }
}
.card-wrapper-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #E8D4C9;
  height: 24px;
  width: calc(100% + 24px);
  border-radius: 8px;
  right: -12px;
}
@media screen and (max-width: 580px) {
  .card-wrapper-bg::before {
    right: 0;
    width: 100%;
  }
}
.card-wrapper-bg .tab-switch {
  margin: 48px 48px 24px 48px;
}
@media screen and (max-width: 960px) {
  .card-wrapper-bg .tab-switch {
    width: calc(100% - 36px);
    border-radius: 24px;
    margin: 20px 18px 20px 18px;
  }
}
.card-wrapper-bg .card-wrapper {
  margin-bottom: 80px;
}
.card-column .card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
  max-width: 380px;
  height: 180px;
}
@media screen and (max-width: 780px) {
  .card-column .card {
    max-width: 650px;
  }
}
@media screen and (max-width: 960px) {
  .card-row {
    padding: 0;
  }
}
.card-row .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 40px;
}
@media screen and (max-width: 960px) {
  .card-row .card {
    margin: 0 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: 154px;
  }
}
.card:hover {
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
}
.card:hover p {
  color: #F94806;
}
.card:hover .card-btn {
  content: url("../assets/ic_add_hover.svg");
}
.card p {
  color: #605E6E;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 640px) {
  .card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
  }
}
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-left: auto;
}
.card-bg-group {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 580px) {
  .card-bg-group {
    overflow-x: clip;
    overflow-y: visible;
  }
}
.card-bg-1 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .card-bg-1 {
    top: -10px;
  }
}
.card-bg-2 {
  position: absolute;
  bottom: -60px;
  left: -200px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .card-bg-2 {
    left: -240px;
    bottom: -5%;
  }
}
.card-bg-3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  right: -220px;
}
@media screen and (max-width: 830px) {
  .card-bg-3 {
    right: -300px;
  }
}
.card-bg-4 {
  width: 120px;
  position: absolute;
  right: 50px;
  top: 0px;
}
@media screen and (max-width: 1300px) {
  .card-bg-4 {
    top: -50px;
  }
}
@media screen and (max-width: 780px) {
  .card-bg-4 {
    top: 0;
  }
}
@media screen and (max-width: 640px) {
  .card-bg-4 {
    width: 80px;
    top: -60px;
    right: 10px;
  }
}
.card-bg-5 {
  position: absolute;
  width: 155px;
  left: 10%;
  top: -200px;
  z-index: 50;
}
@media screen and (max-width: 640px) {
  .card-bg-5 {
    width: 95px;
    top: -100px;
  }
}
.card-bg-6 {
  position: absolute;
  right: 0px;
  z-index: -1;
  top: -100px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .card-bg-6 {
    right: 60%;
    top: 200px;
  }
}
.card-bg-6 img {
  position: relative;
  right: -20px;
}
.card-bg-7 {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: -1;
  overflow: hidden;
}
.card-bg-7 img {
  position: relative;
  right: -20px;
}
.card-bg-8 {
  position: absolute;
  left: -400px;
  top: 0px;
}

.card-space {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 1230px) {
  .card-space {
    display: none !important;
  }
}

.bg {
  position: absolute;
  width: 100%;
  top: -180px;
}
.bg-wrapper {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .bg {
    top: -80px;
  }
}
@media screen and (max-width: 640px) {
  .bg {
    top: -10px;
  }
}
.bg-white {
  object-fit: cover;
  width: 100%;
  object-position: right top;
}
@media screen and (min-width: 961px) {
  .bg-white {
    position: absolute;
    top: -300px;
    width: auto;
  }
}

.footer {
  position: relative;
  bottom: 0;
  z-index: 99;
  border-radius: 30px 30px 0 0;
  background-color: #383D42;
  padding: 60px 60px 44px 60px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 32px 24px 20px 24px;
  }
}
.footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .footer-header {
    margin-bottom: 30px;
  }
}
.footer-text {
  min-width: 300px;
}
.footer-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .footer-text-wrapper {
    margin-bottom: 32px;
  }
}
.footer-text p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-text ul {
  text-decoration: none;
  padding-left: 0;
}
.footer-text ul li {
  list-style: none;
  color: #dedede;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  font-weight: 300;
}
.footer-text ul li:first-child {
  margin-bottom: 4px;
}
.footer-alert {
  width: 100%;
  padding: 44px 0;
  color: #dedede;
}
@media screen and (max-width: 480px) {
  .footer-alert {
    padding: 22px 0;
  }
}
.footer-alert h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #FFFFFF;
}
.footer-alert a {
  color: #dedede;
}
.footer-alert p {
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}
.footer-alert .alert-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* ← 桌機 4 行 */
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}
.footer-alert .alert-text ul {
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.6;
}
.footer-alert .alert-text ul li {
  list-style: none;
  margin-bottom: 16px;
}
.footer-alert .alert-text ul ol {
  padding-left: 24px;
}
.footer-alert .alert-text ul ol li {
  list-style-type: decimal;
  margin-bottom: 4px;
}
@media screen and (max-width: 480px) {
  .footer-alert .alert-text {
    -webkit-line-clamp: 3;
  }
}
.footer-alert.expanded .alert-text {
  -webkit-line-clamp: unset;
}
.footer-alert .toggle-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
  color: #999999;
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .media {
    gap: 16px;
  }
  .media img {
    width: 24px;
  }
}

.carousel {
  overflow: hidden;
}
.carousel-container-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-direction: column;
  z-index: 8;
}
@media screen and (max-width: 640px) {
  .carousel-container-mobile {
    display: flex;
  }
}
.carousel-main-m {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  transition: transform 400ms ease;
  touch-action: pan-y;
}
.carousel-main-m a {
  display: block;
  width: 270px;
}
.carousel-main-m a .card-style-bg {
  position: relative;
}
.carousel-button-wrapper-m {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  margin-top: 40px;
}
.carousel-button-wrapper-m button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.carousel-button-wrapper-m button img {
  width: 60px;
}
.carousel-button-wrapper-m button[disabled] {
  opacity: 0.4;
  pointer-events: none;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 85px;
}
.carousel-dots-m {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 85px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CCCCCC;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  width: 21px;
  border-radius: 999px;
  background-color: #383D42;
}

.carousel {
  width: 100%;
  position: relative;
  margin-top: 108px;
  padding-top: 60px;
  background-color: #FDFCFC;
  overflow: hidden;
  height: 1200px;
}
@media screen and (min-width: 1440px) {
  .carousel {
    height: 1400px;
  }
}
@media screen and (max-width: 640px) {
  .carousel {
    height: 980px;
  }
}
.carousel-bg {
  width: 200%;
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  max-width: 3700px;
}
@media screen and (min-width: 1440px) {
  .carousel-bg {
    width: 250%;
  }
}
@media screen and (max-width: 480px) {
  .carousel-bg {
    width: 250%;
  }
}
.carousel-cat {
  position: absolute;
  top: 4%;
  left: 20%;
  width: 260px;
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .carousel-cat {
    left: 25%;
    top: 48px;
    width: 320px;
  }
}
@media screen and (max-width: 1300px) {
  .carousel-cat {
    top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .carousel-cat {
    top: 0%;
    left: 15%;
  }
}
@media screen and (max-width: 820px) {
  .carousel-cat {
    left: 5%;
    width: 220px;
  }
}
@media screen and (max-width: 640px) {
  .carousel-cat {
    top: 5%;
    left: 5%;
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  .carousel-cat {
    top: 5%;
    left: 5%;
    width: 180px;
  }
}
.carousel .text-container {
  position: relative;
  z-index: 8;
  margin-top: 240px;
}
@media screen and (min-width: 1440px) {
  .carousel .text-container {
    margin-top: 360px;
  }
}
@media screen and (max-width: 640px) {
  .carousel .text-container {
    margin-top: 200px;
  }
}

.carousel-container {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .carousel-container {
    display: none;
  }
}

.carousel-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.carousel-button-wrapper button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.carousel-main {
  position: relative;
  height: 520px;
}

.carousel-main .card-style {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  will-change: transform;
}

.carousel-button-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  gap: 16px;
}
.carousel-button-wrapper button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.carousel-button-wrapper button:disabled {
  opacity: 0.35;
  cursor: default;
}

.c-hover-1,
.c-hover-button {
  transition: opacity 0.3s ease;
}

.card-style {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: center center;
  will-change: transform;
  width: 360px;
  height: 472px;
  cursor: pointer;
  transition: 0.3s ease;
}
.card-style:hover .c-hover-1 {
  content: url("../assets/c_1_hover.png");
  opacity: 1;
}
.card-style:hover .c-hover-2 {
  content: url("../assets/c_2_hover.png");
  opacity: 1;
}
.card-style:hover .c-hover-3 {
  content: url("../assets/c_3_hover.png");
  opacity: 1;
}
.card-style:hover .c-hover-4 {
  content: url("../assets/c_4_hover.png");
  opacity: 1;
}
.card-style:hover .c-hover-button {
  content: url("../assets/ic_add_hover.svg");
  opacity: 1;
}
.card-style-c {
  position: absolute;
  z-index: 11;
  bottom: 18%;
  max-width: 232px;
}
.card-style-bg {
  position: absolute;
  z-index: 10;
  top: 0;
  max-width: 360px;
}
.card-style-button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.card-style-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform-origin: center center;
  will-change: transform;
  width: 100%;
  max-width: 270px;
  height: 352px;
  flex: 0 0 auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  transition: 0.3s ease;
}
.card-style-m .card-style-c {
  width: 175px;
}
.card-style-m .card-style-bg {
  width: 270px;
}
.card-style-m .card-style-button {
  width: 44px;
}
.card-style-m:hover .c-hover-1 {
  content: url("../assets/c_1_hover.png");
  opacity: 1;
}
.card-style-m:hover .c-hover-2 {
  content: url("../assets/c_2_hover.png");
  opacity: 1;
}
.card-style-m:hover .c-hover-3 {
  content: url("../assets/c_3_hover.png");
  opacity: 1;
}
.card-style-m:hover .c-hover-4 {
  content: url("../assets/c_4_hover.png");
  opacity: 1;
}
.card-style-m:hover .c-hover-button {
  content: url("../assets/ic_add_hover.svg");
  opacity: 1;
}
.card-style-m-c {
  position: absolute;
  z-index: 11;
  bottom: 18%;
}
.card-style-m-bg {
  position: absolute;
  z-index: 10;
  top: 0;
}
.card-style-m-button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.card-wrapper[role=tabpanel] {
  display: none;
}

.card-wrapper.is-active {
  display: flex;
}

.card-bg-wrapper {
  position: relative;
}

.card-style {
  color: #FFFFFF;
}
.card-style section {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 11;
}

.card-style-m {
  color: #FFFFFF;
}
.card-style-m section {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 11;
}

.etf-title {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 1.08px;
  position: absolute;
  top: 14px;
  left: 23px;
  z-index: 11;
}
@media screen and (max-width: 640px) {
  .etf-title {
    font-size: 38px;
    line-height: normal;
    letter-spacing: 0.76px;
    left: 18px;
  }
}
.etf-tag {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.64px;
  padding: 4px 8px 3px 8px;
  border: 1px solid white;
  border-radius: 12px;
  position: absolute;
  top: 30px;
  right: 22px;
  z-index: 11;
}
@media screen and (max-width: 640px) {
  .etf-tag {
    font-size: 14px;
    padding: 4px 6px;
    top: 22px;
    right: 16px;
  }
}
.etf-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 640px) {
  .etf-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.8px;
  }
}
.etf-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.64px;
}

/*# sourceMappingURL=style.css.map */
