@charset "UTF-8";
.menu_mobile {
  display: none;
}
.menu_mobile .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}
.menu_mobile .container .top .as_logo {
  display: flex;
  align-items: center;
}
.menu_mobile .container .top .as_logo img {
  max-width: 50%;
  height: auto;
}
.menu_mobile .container .menu_icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu_mobile .container .menu_icon:hover {
  background: rgba(0, 0, 0, 0.06);
}
.menu_mobile .container .menu_icon .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.menu_mobile .container .menu_icon.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu_mobile .container .menu_icon.is-open .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu_mobile .container .menu_icon.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu_mobile .container .down {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.menu_mobile .container .down.is-open {
  max-height: 500px;
  opacity: 1;
}
.menu_mobile .container .down ul {
  list-style: none;
  padding: 8px 0 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.menu_mobile .container .down ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.menu_mobile .container .down ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.menu_mobile .container .down ul li a::after {
  content: "›";
  font-size: 20px;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}
.menu_mobile .container .down ul li a:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--link-color);
  text-decoration: none;
}
.menu_mobile .container .down ul li a:hover::after {
  color: var(--link-color);
}

.stats-track {
  display: flex;
  gap: 20px;
  padding-left: 25%;
  padding-right: 25%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.stats-carousel-wrap.track--start .stats-track {
  padding-left: 25%;
  padding-right: 25%;
}

.stats-carousel-wrap.track--middle .stats-track {
  padding-left: 25%;
  padding-right: 25%;
}

.stats-carousel-wrap.track--end .stats-track {
  padding-left: 25%;
  padding-right: 25%;
}

.stats-slide {
  min-width: 50%;
  max-width: 50%;
}

/* ─── HEADER / HERO ─── */
/* Decorative ladder silhouette */
/* ─── SECTION WRAPPER ─── */
/* ─── LEDE ARTICLE ─── */
/* ─── CHARTS CAROUSEL ─── */
/* Card = 50vw wide → left 25vw peeks prev, right 25vw peeks next */
/* ─── 3RD PARTY ARTICLES ─── */
/* ─── STATS BAR ─── */
/* ─── STATS CAROUSEL ─── */
/* Left column: 65% */
/* Card = 50% of left column so: 25% prev peek | 50% card | 25% next peek */
/* 5% gap column */
/* Right column: 30% */
/* ─── SECOND IN-HOUSE ARTICLE ─── */
/* ─── FOOTER HERO ─── */
/* ─── FOOTER ─── */
/* ─── RESPONSIVE ─── */
:root {
  --black: #000000;
  --white: #ffffff;
  --green: #5bb800;
  --link: #517off;
  --link-color: #5170ff;
  --red: #e63232;
  --blue: #2b4fbf;
  --yellow: #f5c800;
  --gray-text: #444;
  --body-font: "Google Sans", sans-serif;
  --display-font: "Google Sans", sans-serif;
  --section-max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: var(--black);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.menu_pc {
  width: 100vw;
}
.menu_pc iframe {
  filter: invert(1) hue-rotate(180deg);
}
.menu_pc .container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 20px 0;
  margin: auto;
}
.menu_pc .container .as_logo {
  width: 30%;
  display: flex;
  align-items: center;
}
.menu_pc .container .as_logo img {
  width: 35%;
}
.menu_pc .container .as_menu {
  width: 70%;
  display: flex;
  align-items: center;
}

.hero {
  background: var(--black);
  height: calc(100% - 70px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 8%;
}
.hero h1 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.hero h2 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero h2 .arrow {
  color: var(--green);
  font-size: 32px;
}
.hero p {
  font-size: 24px;
}
.hero .hero-logo {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
}
.hero .hero-logo a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.hero .hero-logo span.dot {
  color: var(--green);
}
.hero .hero-box {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.hero .hero-content {
  z-index: 5;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-image {
  background: #1a1a1a;
  overflow: hidden;
  position: relative;
}
.hero .hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}
.hero .hero-image-placeholder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.section {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 88px 24px;
}

.lede-section {
  border-top: none;
}

.section-headline {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-headline a {
  color: var(--black);
  text-decoration: none;
}

.lede-body {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.continue-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--link-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.charts-section {
  overflow: hidden;
  padding: 50px 0 30px;
}
.charts-section .charts-section-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 36px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--black);
  letter-spacing: -0.5px;
}
.charts-section .charts-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.charts-section .charts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-left: 20vw;
}
.charts-section .chart-slide {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-text);
  padding: 28px 32px 24px;
  min-width: 60vw;
  max-width: 60vw;
  height: 650px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  cursor: grab;
}
.charts-section .chart-slide:active {
  /* 按下時：手掌抓取 */
  cursor: grabbing;
}
.charts-section .chart-slide .chart-images-wrap {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.charts-section .chart-slide .chart-images-wrap img {
  max-width: 100%;
}
.charts-section .chart-slide .chart-image-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Prevent selection and native image dragging while dragging slides */
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.charts-section .chart-slide .chart-image-wrap img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.charts-section .chart-slide .chart-slide-title {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
  color: #222;
  flex-shrink: 0;
}

.dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dots-nav span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dots-nav span.active {
  opacity: 1;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.article-card {
  display: flex;
  flex-direction: column;
}
.article-card p {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 10px;
  flex: 1;
}
.article-card .continue-link {
  margin-top: 8px;
  font-size: 13px;
}

.article-thumb {
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
}
.article-thumb a {
  text-decoration: none;
  color: var(--white);
  text-shadow: 1px 1px 5px #333;
}
.article-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.stats-bar {
  background: var(--black);
  overflow: hidden;
  position: relative;
  background: var(--black);
  padding: 40px 0 40px;
}
.stats-bar .stats {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.stats-bar .stats .stats-bar-left {
  display: flex;
  width: calc(78% - 20px);
  overflow: hidden;
  border-radius: 20px;
  color: #333;
  text-align: center;
  padding: 20px 20px 0;
  cursor: grab;
}
.stats-bar .stats .stats-bar-left:active {
  /* 按下時：手掌抓取 */
  cursor: grabbing;
}
.stats-bar .stats .stats-bar-left .box {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 200px;
}
.stats-bar .stats .stats-bar-left .box .num {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}
.stats-bar .stats .stats-bar-right {
  width: 22%;
  padding: 20px 0px 0;
}
.stats-bar .stats .stats-bar-right .right {
  padding: 16px 24px;
  height: 200px;
  background-color: #fff;
  line-height: 1.1;
  border-radius: 20px;
}
.stats-bar .stats .stats-bar-right .right h3 {
  font-size: 2.25vw;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.second-article-section {
  border-top: 3px solid var(--black);
}

.visuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 90px;
}

.visual-block h4 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 32px;
}
.visual-block h4 span {
  font-weight: normal;
}
.visual-block .visual-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-block img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-hero {
  background: var(--black);
  color: var(--black);
  display: flex;
  align-items: stretch;
  padding: 80px 15%;
}
.footer-hero .footer-hero-content {
  padding: 80px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  height: auto;
}
.footer-hero .footer-hero-content h2 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
}
.footer-hero .footer-hero-content p {
  font-size: 24px;
  color: #aaa;
  max-width: 380px;
}
.footer-hero .footer-hero-content a {
  font-size: 20px;
}
.footer-hero .footer-hero-image {
  width: 45%;
  background: #1c1c1c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  letter-spacing: 2px;
}
.footer-hero .footer-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background: #111;
  color: #666;
  text-align: center;
  font-size: 13px;
  padding: 20px;
}
footer a {
  color: #888;
}

.hamburger-btn {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

@media (max-width: 1400px) {
  .stats-bar .stats .stats-bar-right .right h3 {
    font-size: 2.5vw;
  }
}
@media (max-width: 900px) {
  .stats-bar .stats .stats-bar-right .right {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .stats-bar .stats .stats-bar-right .right h3 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .menu_pc {
    display: none;
  }
  .menu_mobile {
    display: block;
  }
  body.nav-open {
    overflow: hidden;
  }
  .hero {
    padding: 0;
    height: auto;
    background: var(--black);
  }
  .hero .hero-box {
    display: flex !important;
    flex-direction: column-reverse;
    width: 100%;
    background: none;
  }
  .hero .hero-image {
    width: 100%;
    height: 100vw;
    order: -1;
    background: #111;
    overflow: hidden;
    order: 2;
  }
  .hero .hero-image-placeholder {
    width: 100%;
    height: 100%;
  }
  .hero .hero-image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .hero-content {
    width: 100%;
    padding: 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    color: var(--white);
  }
  .hero .hero-content h1 {
    font-size: 52px;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .hero .hero-content h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 14px;
  }
  .hero .hero-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
  }
  .lede-section.section {
    padding: 32px 18px 24px;
  }
  .section-headline {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .lede-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
  }
  .section {
    padding: 32px 18px 24px;
  }
  .charts-section {
    padding: 16px 0 8px;
  }
  .charts-section .charts-carousel-wrap {
    margin-bottom: 8px;
    padding-bottom: 0;
  }
  .charts-section .charts-track {
    padding-left: 7vw;
    padding-right: 7vw;
    gap: 14px;
  }
  .charts-section .chart-slide {
    min-width: 86vw;
    max-width: 86vw;
    height: auto;
    min-height: 200px;
    padding: 5px;
    border-radius: 12px;
    cursor: grab;
    flex-shrink: 0;
  }
  .charts-section .chart-slide:active {
    cursor: grabbing;
  }
  .charts-section .chart-image-wrap img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .dots-nav {
    margin-top: 14px;
  }
  .dots-nav span {
    width: 10px;
    height: 10px;
  }
  .third-party-section .section {
    padding: 32px 18px 24px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }
  .article-card {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .article-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .article-card:first-child .article-thumb {
    display: flex;
    height: 200px;
    font-size: 18px;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
  }
  .article-card:not(:first-child) .article-thumb {
    height: auto;
    padding: 0;
    background: none;
    color: var(--black);
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .article-card:not(:first-child) .article-thumb img {
    display: none;
  }
  .article-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
  }
  .article-card .continue-link {
    margin-top: 6px;
    font-size: 12px;
  }
  .stats-bar {
    padding: 24px 0 28px;
  }
  .stats-bar .stats {
    width: 94%;
    margin: 0 auto;
    flex-direction: column;
    gap: 16px;
  }
  .stats-bar .stats .stats-bar-left {
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: default;
  }
  .stats-bar .stats .stats-bar-left:active {
    cursor: default;
  }
  .stats-bar .stats .stats-bar-left .box {
    padding: 28px 22px;
    height: auto;
    min-height: 130px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 15px;
    line-height: 1.4;
  }
  .stats-bar .stats .stats-bar-left .box .num {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 14px;
    font-weight: 900;
    color: var(--black);
  }
  .stats-bar .stats .stats-bar-right {
    width: 100%;
    padding: 0;
  }
  .stats-bar .stats .stats-bar-right .right {
    padding: 20px 22px;
    height: auto;
    border-radius: 16px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .stats-bar .stats .stats-bar-right .right h3 {
    font-size: 16px;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1.2;
    font-weight: normal;
  }
  .stats-bar .stats .stats-bar-right .right .dl-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .stats-bar .stats .stats-bar-right .right .dl-btn:hover {
    opacity: 0.85;
  }
  .second-article-section {
    border-top: 3px solid var(--black);
  }
  .second-article-section .section {
    padding: 32px 18px 28px;
  }
  .visuals-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  .visual-block h4 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .visual-block .visual-placeholder {
    margin-bottom: 12px;
  }
  .visual-block .visual-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .visual-block .text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-text);
  }
  .footer-hero {
    padding: 0;
    flex-direction: column;
    background: var(--black);
  }
  .footer-hero .footer-hero-content {
    order: 1;
    padding: 36px 20px 32px;
    background: var(--black);
    color: var(--white);
    flex: none;
    height: auto;
    order: 2;
  }
  .footer-hero .footer-hero-content h2 {
    font-size: 34px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 10px;
  }
  .footer-hero .footer-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 100%;
  }
  .footer-hero .footer-hero-image {
    order: 1;
    width: 100%;
    height: 52vw;
    min-height: 180px;
    max-height: 260px;
    margin-top: 0;
    background: #1c1c1c;
    overflow: hidden;
  }
  .footer-hero .footer-hero-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  footer {
    font-size: 12px;
    padding: 16px;
  }
}