:root {
  --bg: #f7f4ee;
  --bg-2: #eef3fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #dfe7f5;
  --text: #002561;
  --text-soft: #556192;
  --line: rgba(147, 149, 152, 0.24);
  --line-strong: rgba(243, 112, 33, 0.34);
  --brand: #f37021;
  --brand-strong: #f68a46;
  --brand-soft: #f9a56f;
  --accent: #18346c;
  --muted: #939598;
  --shadow: 0 24px 60px rgba(20, 34, 61, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1600px;
  --type-body: 24px;
  --type-body-tight: 24px;
  --type-heading-xl: clamp(54px, 6vw, 92px);
  --type-heading-lg: clamp(36px, 3.8vw, 56px);
  --type-heading-md: clamp(28px, 2.5vw, 40px);
  --type-heading-sm: clamp(24px, 2vw, 30px);
}


.zoom-infinite {
  width: 300px;
  animation: zoomLoop 15s ease-in-out infinite;
}

@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* ซูมเข้า */
  }
  100% {
    transform: scale(1); /* ซูมออก */
  }
}

body[data-theme="dark"] {
  --bg: #081223;
  --bg-2: #0f1f3b;
  --surface: rgba(13, 25, 47, 0.76);
  --surface-strong: rgba(14, 27, 49, 0.94);
  --surface-dark: #13294a;
  --text: #edf3ff;
  --text-soft: #a8b7d3;
  --line: rgba(168, 183, 211, 0.18);
  --line-strong: rgba(243, 112, 33, 0.34);
  --accent: #9fb8ff;
  --muted: #7f93b2;
  --shadow: 0 28px 70px rgba(2, 8, 20, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Noto Sans Thai", sans-serif;
  font-size: var(--type-body);
  line-height: 1.6;
  /*background:
    radial-gradient(circle at 15% 18%, rgba(243, 112, 33, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(24, 52, 108, 0.12), transparent 28%),
    radial-gradient(circle at 50% 120%, rgba(246, 138, 70, 0.1), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, color-mix(in srgb, var(--bg-2) 78%, white 22%) 100%);
  */overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  /*background-image:
    linear-gradient(rgba(11, 31, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 69, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);*/
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(255, 255, 255, 0.34), transparent 15%),
    radial-gradient(circle at calc(var(--mx, 50%) + 7%) calc(var(--my, 20%) + 9%), rgba(146, 187, 255, 0.16), transparent 13%),
    radial-gradient(circle at calc(var(--mx, 50%) - 5%) calc(var(--my, 20%) - 4%), rgba(0, 37, 97, 0.06), transparent 11%);
  opacity: 0.72;
}

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-layer::before,
.fx-layer::after {
  content: none;
  position: absolute;
  width: clamp(300px, 28vw, 520px);
  aspect-ratio: 1;
  background: url("images/earth.png") center/contain no-repeat;
  opacity: 0.24;
  filter: saturate(1.08) contrast(1.04);
  animation: globeFieldFloat 18s ease-in-out infinite;
}

.fx-layer::before {
  left: max(-18px, calc((100vw - min(calc(100vw - 32px), 1600px)) / 2 - 34px));
  top: 18%;
}

.fx-layer::after {
  right: max(-18px, calc((100vw - min(calc(100vw - 32px), 1600px)) / 2 - 34px));
  top: 52%;
  animation-direction: alternate-reverse;
  animation-duration: 20s;
}

.fx-orb,
.cursor-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.fx-orb-a {
  top: 6%;
  left: -6%;
  width: 440px;
  height: 440px;
  background: none;
  animation: floatOrb 14s ease-in-out infinite;
}

.fx-orb-b {
  right: -10%;
  top: 28%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(24, 52, 108, 0.16), transparent 72%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.logo{
  width: 200px;
  top: 5px;
  position: relative;
}
.logo.mobile{
  width: 60px;
  top: 0px;
}
.fx-grid {
  position: absolute;
  inset: 0;
  /*background:
    linear-gradient(90deg, rgba(147, 149, 152, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(147, 149, 152, 0.09) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);*/
}
/*
.cursor-glow {
  left: calc(var(--mx, 50%) - 180px);
  top: calc(var(--my, 20%) - 180px);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(171, 205, 255, 0.2) 34%, rgba(0, 37, 97, 0.04) 58%, transparent 72%);
  filter: blur(18px);
  transition: left 220ms ease, top 220ms ease;
}*/

body[data-theme="dark"]::after {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(243, 112, 33, 0.1), transparent 16%),
    radial-gradient(circle at calc(var(--mx, 50%) + 8%) calc(var(--my, 20%) + 10%), rgba(24, 52, 108, 0.08), transparent 12%);
  opacity: 0.9;
}

body[data-theme="dark"] .cursor-glow {
  background: radial-gradient(circle, rgba(243, 112, 33, 0.12), transparent 65%);
  filter: blur(12px);
}

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

p,
li {
  font-size: var(--type-body);
  line-height: 1.65;
}

.hero-copy h1 {
  font-size: var(--type-heading-xl);
  line-height: 1.0 !important;
  background: linear-gradient(94deg, #002561 40.79%, #000 96.78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: black;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}
.hero-copy h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.28;
}

.hero-text,
.section-head p,
.about-points p,
.returns-grid p,
.market-panel p,
.trading-feature-card p,
.trading-panel p,
.liquidity-panel p,
.faq-answer p,
.journey-card p,
.product-card-description,
.detail-summary,
.detail-block p {
  font-size: var(--type-body-tight);
  line-height: 1.7;
}

.section h2,
.about-dr24-copy h2,
.section-head h2,
.journey-card h2,
.cta-panel h2 {
  font-size: var(--type-heading-lg);
  line-height: 1.08;
  color: #002561;
}
.about-dr24-copy {
  width: 100%;
}
.cta-copy h2{
  font-size: 32px;
  color: white;
}
.about-dr24-copy h2 {
  color: #F37021;

  font-size: 50px;
  font-style: normal;
  font-weight: 500;   
  position: relative; 
}

.about-dr24-copy h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    bottom: -4px;
    width: min(30%, 36vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,rgba(243, 112, 33, 0), #002561, rgba(243, 112, 33, 0));
}
.about-dr24-copy-2 h2{
  color: #F37021;

  font-size: 50px;
  font-style: normal;
  font-weight: 500;   
  position: relative;   

}
.about-dr24-copy-2 p{
  color: #002561 !important;
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
}
.about-dr24-copy-2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    bottom: -4px;
    width: min(30%, 36vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,rgba(243, 112, 33, 0), #002561, rgba(243, 112, 33, 0));
}

.relative-bg{
  position: relative;

}
.section h3,
.about-points strong,
.returns-grid h3,
.market-panel h3,
.trading-feature-card h3,
.trading-panel h3,
.liquidity-toggle strong,
.faq-question,
.product-card-name,
.detail-title,
.detail-block h3 {
  font-size: var(--type-heading-sm);
  line-height: 1.2;
}



.hero-chip,
.eyebrow,
.info-kicker,
.detail-theme,
.detail-underlying,
.trading-feature-icon,
.product-card-symbol {
  font-size: clamp(24px, 1.3vw, 26px);
  line-height: 1.2;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: var(--max-width) !important;
  }
}

div.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  --earth-size: clamp(760px, 58vw, 1360px);
  --earth-left: calc(var(--earth-size) * -0.56);
  --earth-top: clamp(-220px, -12vw, -96px);
}



div.page-shell::before {
    content: "";
    position: absolute;
    left: var(--earth-left);
    top: var(--earth-top);
    width: var(--earth-size);
    aspect-ratio: 1;
    background: url("images/earth.png") center bottom / contain no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    filter: saturate(1.04) contrast(1.01);
    transform: translate(-10%, -30%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0.01) 30%, #000 60%, #000 100%);
        mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0.01) 30%, #000 60%, #000 100%);
}

.section-products {
  order: 1;
}

.section-trading {
  order: 3;
}

.section-about {
  order: 2;
}


.section-returns {
  order: 4;
}


.section-market {
  order: 5;
}

.section-liquidity {
  order: 6;
}

.section-journey {
  order: 7;
}

.section-cta {
  order: 8;
  position: relative;
  min-height: calc(100vh + 220px);
  display: block;
}

.page-bottom-art {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  z-index: -1;
}

.page-bottom-art img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.topbar-shell,
header.container {
  position: relative;
  top: 12px;
  z-index: 20;
  margin-bottom: 30px;
  max-width: 100%;
  overflow: visible;
  --topbar-y: 0;
  transform: translate3d(0, var(--topbar-y), 0);
  transition: transform 220ms ease, opacity 220ms ease;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
    padding-left: calc(var(--bs-gutter-x, 2.5rem) * 1.5);
    padding-right: calc(var(--bs-gutter-x, 2.5rem) * 1.5);
  /*background: color-mix(in srgb, var(--surface-strong) 88%, transparent 12%);*/
  background: rgba(255, 255, 255, 0.83); /* สำหรับ Safari เก่า */

  backdrop-filter: blur(16px);
  border: 1px solid rgba(147, 149, 152, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(20, 34, 61, 0.12);
  overflow: hidden;
}

.topbar > * {
  min-width: 0;
}

.topbar.is-hidden-in-products,
.topbar-shell.is-hidden-in-products,
header.container.is-hidden-in-products {
  --topbar-y: calc(-100% - 20px);
  opacity: 0;
  pointer-events: none;
}

.topbar-shell.is-hidden-in-products {
  z-index: 1;
}

body.is-topbar-full-floating .topbar-shell,
body.is-topbar-full-floating header.container {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 28;
  width: min(calc(100% - 24px), var(--max-width));
  max-width: none;
  margin: 0 auto;
}

body.is-topbar-full-floating .topbar {
  box-shadow: 0 18px 36px rgba(20, 34, 61, 0.12);
}

body.is-topbar-full-floating .mobile-section-nav {
  display: none !important;
}



@media (max-width: 1024px) and (orientation: landscape) {
  .topbar-shell,
  header.container {
    position: relative;
    top: 10px;
    z-index: 28;
    width: min(calc(100% - 20px), var(--max-width));
    max-width: none;
    margin: 0 auto;
  }
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78); /* สำหรับ Safari เก่า */

  color: var(--text);
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.14);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #e9eef9);
  box-shadow: 0 6px 16px rgba(20, 34, 61, 0.22);
  transition: transform 220ms ease, background 220ms ease;
}

.theme-toggle-label {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.4vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

body[data-theme="dark"] .theme-toggle-track {
  background: rgba(243, 112, 33, 0.28);
}

body[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(20px);
  background: linear-gradient(180deg, #ffd2a9, #f68a46);
}

.scroll-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px;
  transform: translateY(-50%);
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 34px rgba(20, 34, 61, 0.08);
}

.scroll-indicator-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.detail-mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scroll-indicator-dot:hover,
.scroll-indicator-dot:focus-visible,
.scroll-indicator-dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(243, 112, 33, 0.12);
}

.scroll-indicator-dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: #556192;
  color: #ffffff;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(16px, 1.35vw, 20px);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-indicator-dot:hover::after,
.scroll-indicator-dot:focus-visible::after,
.scroll-indicator-dot.is-active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #18346c 0%, #002561 55%, #f37021 100%);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong,
.topbar-nav a,
.button,
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
}

.brand strong {
  display: block;
  font-size: clamp(24px, 1.6vw, 28px);
  line-height: 1;
}

.brand-copy span,
.brand span {
  color: var(--text-soft);
  font-size: clamp(24px, 1.35vw, 26px);
  line-height: 1;
}

.topbar-nav {
  display: inline-flex;
  gap: 24px;
  color: black;
  margin-left: auto;
}
.topbar-nav a:hover {

  color: black;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible,
.topbar-nav a.is-active,
.topbar-nav a[aria-current="page"] {
  color: black;
}

.topbar-nav a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 18px 34px rgba(243, 112, 33, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-strong);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.button-ghost {
  background: white;
  border-color: rgba(147, 149, 152, 0.25);
  color: black;
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: white;
}

.hero-fluid {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 56vh;
  padding: 44px 0 18px;
  overflow: visible;
  background: transparent;
}

.hero-fluid::before {
  content: none;
}

.hero-fluid::after {
  content: none;
}

.hero-banner-bg {
    position: absolute;
    top: -450px;
    bottom: 0;
    z-index: 1;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
    background: url(images/hero-banner-gemini.png);
    background-size: cover;
    background-position-x: center;
    background-position-y: clamp(70%, 1200px ,100%);
}

.hero-banner-bg::before,
.hero-banner-bg::after {
  content: none;
}

.hero-main-bg {
  position: relative;
  z-index: 2;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  pointer-events: none;
  animation: heroMainFloat 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-main-bg .relative-bg {
  position: relative;
  width: min(100%, 820px);
}

.hero-main-bg img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(20, 34, 61, 0.16));
}

.hero-dr-bubbles {
  position: absolute;
  pointer-events: none;
  inset: -36px;
}

.hero-dr-bubble {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 240px;
  padding: 4px 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(206, 226, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(20, 34, 61, 0.12);
  color: white;
  text-shadow: 0px 0px 1px black;
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
  animation: heroBubbleFloat 8.8s ease-in-out infinite;
}

.hero-dr-bubble strong {
  font-size: clamp(24px, 1.3vw, 28px);
  font-weight: 700;
  line-height: 1;
}

.hero-conatainer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 56px);
    width: 100%;
}

.hero {
  position: relative;
  aspect-ratio: 1920 / 1080;
}

.hero-dr-bubble small {
  font-size: 24px;
  line-height: 1;
  color: rgba(0, 37, 97, 0.74);
}

.hero-dr-bubble-a {
    right: 30%;
    bottom: 27%;
    animation-delay: -0.4s;
}

.hero-dr-bubble-b {
  top: 2%;
  right: 8%;
  animation-delay: -1.6s;
}

.hero-dr-bubble-c {
    top: 30%;
    right: 8%;
    animation-delay: -1s;
}

.hero-dr-bubble-d {
    top: 2%;
    right: 41%;
    animation-delay: -1s;
}

.hero-dr-bubble-e {
    bottom: 35%;
    right: 10%;
    animation-delay: -2.8s;
}

.hero-dr-bubble-f {
    bottom: 57%;
    left: 15%;
    animation-delay: -2.8s;
}
.hero-dr-bubble-g {
    top: 17%;
    left: 32%;
    animation-delay: -2.8s;
}
.hero-dr-bubble-h {
    top: 29%;
    left: 31%;
    animation-delay: -2.8s;
}

@keyframes heroMainFloat {
  0% {
    transform: translate3d(0, 32px, 0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translate3d(0, 10px, 0) rotate(0deg);
    opacity: 0.1;
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes heroBubbleFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero-fluid-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 52px;
  width: auto;
  max-width: none;
}

.section-about {
  padding-top: 10px;
}

.about-dr24 {
  display: block;
  padding: 8px 0 0;
  position: relative;
  z-index: 1;
}

.about-dr24-copy {
  text-align: center;
}

.about-dr24-copy h2 {
  max-width: none;
}

.about-lead {
  max-width: 60ch;
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    justify-content: center;
    gap: 64px;
    margin-top: 100px;
    width: 80%;
    margin: auto;
    padding: 64px 0px 0px 0px;
}

.about-points article {
  /*min-height: 100%;*/
  padding: 56px 24px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, #012765 73%, #0246B4 114.98%, #024ECB 121.39%);
  box-shadow: 14.654px 24.074px 101.529px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15.700301170349121px);
  text-align: center;
  position: relative;
}

.about-point-icon {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.about-point-icon img {
    animation: orbitChipFloat 5.6s ease-in-out infinite;
}


.about-points strong {
  display: block;
  font-size: var(--type-heading-sm);
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.about-points p {
  margin: 14px 0 0;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.about-dr24-visual {
  position: relative;
}

.about-visual-shell {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(24, 52, 108, 0.96), rgba(7, 18, 37, 0.92)),
    linear-gradient(135deg, rgba(243, 112, 33, 0.24), rgba(255, 255, 255, 0));
  box-shadow: 0 30px 70px rgba(20, 34, 61, 0.22);
}

.about-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.about-visual-orb-a {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.46), transparent 68%);
  animation: aboutFloat 12s ease-in-out infinite;
}

.about-visual-orb-b {
  width: 240px;
  height: 240px;
  left: -72px;
  bottom: -84px;
  background: radial-gradient(circle, rgba(159, 184, 255, 0.3), transparent 68%);
  animation: aboutFloat 16s ease-in-out infinite reverse;
}

.about-visual-screen {
  position: relative;
  height: 100%;
  min-height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at center, rgba(243, 112, 33, 0.12), transparent 45%);
  overflow: hidden;
}

.about-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.about-visual-ring {
  position: absolute;
  inset: 18% auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 24px rgba(255, 255, 255, 0.05),
    0 0 0 58px rgba(243, 112, 33, 0.06);
  animation: aboutPulse 10s ease-in-out infinite;
}

.about-visual-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
  animation: aboutBlink 5.8s ease-in-out infinite;
}

.about-visual-node-a {
  left: 26%;
  top: 30%;
}


.topbar-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: black;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}



.topbar-nav a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #18346c 0%, #245eb1 100%);
  transform: translateY(-1px);
}

.about-visual-node-b {
  right: 24%;
  top: 40%;
}

.about-visual-node-c {
  left: 46%;
  bottom: 22%;
}

.about-visual-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 35, 0.6);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.about-visual-caption span,
.about-feature-kicker {
  display: inline-block;
  color: rgba(255, 210, 169, 0.94);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

.about-visual-caption strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: var(--type-heading-sm);
}

.about-feature-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(4, 10, 24, 0.18);
  animation: aboutCardFloat 9s ease-in-out infinite;
}

.about-feature-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: var(--type-heading-sm);
}

.about-feature-card p {
  margin: 8px 0 0;
  color: rgba(237, 243, 255, 0.86);
  line-height: 1.55;
}

.about-feature-card-main {
  left: 24px;
  right: 84px;
  top: 26px;
}

.about-feature-card-top {
  top: 120px;
  right: 18px;
  animation-delay: 1.4s;
}

.about-feature-card-bottom {
  left: 18px;
  bottom: 116px;
  animation-delay: 2.2s;
}


body[data-theme="dark"] .hero-banner-bg {
  background: url("images/hero-banner-gemini.jpg") top center / cover no-repeat;
}

body[data-theme="dark"] .hero-dr-bubble {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 27, 49, 0.82), rgba(16, 31, 56, 0.72));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
  color: rgba(237, 243, 255, 0.94);
}

body[data-theme="dark"] .hero-dr-bubble small {
  color: rgba(197, 208, 228, 0.82);
}

body[data-theme="dark"] .hero-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 183, 211, 0.16);
  color: rgba(236, 242, 250, 0.92);
}

body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .hero-copy h1,
body[data-theme="dark"] .hero-copy h1 span,
body[data-theme="dark"] .hero-copy .hero-text {
  color: #002561;
}

body[data-theme="dark"] .hero-copy .eyebrow {
  color: #f37021;
}

body[data-theme="dark"] .hero-copy .button-ghost {
  color: #002561;
  border-color: rgba(0, 37, 97, 0.24);
  background: rgba(255, 255, 255, 0.42);
}

body.is-mobile-detail-open {
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

body.is-cta-modal-open {
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

body.is-mobile-detail-open .topbar {
  transform: translateY(calc(-100% - 20px));
  opacity: 0;
  pointer-events: none;
}

body.is-mobile-detail-open .cta-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

body[data-theme="dark"] .about-dr24 {
  background: none;
}

body[data-theme="dark"] .about-point-icon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: #f4f7ff;
}

body[data-theme="dark"] .about-points article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(168, 183, 211, 0.12);
}

body[data-theme="dark"] .catalog-section {
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(13, 25, 46, 0.96), rgba(9, 20, 38, 0.94));
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .catalog-kicker {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 238, 248, 0.92);
}

body[data-theme="dark"] .catalog-copy p {
  color: rgba(197, 208, 228, 0.78);
}

body[data-theme="dark"] .catalog-meta span,
body[data-theme="dark"] .detail-badge,
body[data-theme="dark"] .detail-chip,
body[data-theme="dark"] .detail-foot div {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 238, 248, 0.92);
  border-color: rgba(168, 183, 211, 0.12);
}

body[data-theme="dark"] .catalog-art-glow {
  background: radial-gradient(circle, rgba(66, 145, 255, 0.26), rgba(66, 145, 255, 0.04) 62%, transparent 72%);
}

body[data-theme="dark"] .catalog-section-ai .catalog-art-shell::after,
body[data-theme="dark"] .catalog-section-robotics .catalog-art-shell::after,
body[data-theme="dark"] .catalog-section-entertainment .catalog-art-shell::after,
body[data-theme="dark"] .catalog-section-realasset .catalog-art-shell::after {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.42), transparent 72%);
}

body[data-theme="dark"] .product-detail-panel-inner {
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(13, 25, 46, 0.98), rgba(9, 20, 38, 0.96));
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.34);
}

body[data-theme="dark"] .detail-subtitle,
body[data-theme="dark"] .detail-summary,
body[data-theme="dark"] .detail-block p {
  color: rgba(197, 208, 228, 0.78);
}

body[data-theme="dark"] .detail-close {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 238, 248, 0.92);
  border-color: rgba(168, 183, 211, 0.12);
}

body[data-theme="dark"] .product-card {
  background: linear-gradient(180deg, rgba(15, 27, 49, 0.96), rgba(10, 21, 40, 0.94));
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .product-card:hover,
body[data-theme="dark"] .product-card:focus-within,
body[data-theme="dark"] .product-card.is-active {
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(18, 31, 56, 0.98), rgba(11, 23, 43, 0.96));
  border-color: rgba(243, 112, 33, 0.38);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34);
}

body[data-theme="dark"] .product-card::after {
  background: linear-gradient(135deg, rgba(243, 112, 33, 0.12), transparent 44%);
}

body[data-theme="dark"] .product-subtitle {
  color: rgba(232, 239, 248, 0.92);
}

body[data-theme="dark"] .product-description,
body[data-theme="dark"] .section-head p,
body[data-theme="dark"] .insight-card p,
body[data-theme="dark"] .journey-steps p,
body[data-theme="dark"] .cta-panel p,
body[data-theme="dark"] .cta-panel .eyebrow {
  color: rgba(197, 208, 228, 0.78);
}

body[data-theme="dark"] .bento-flag {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .bento-flag-japan {
  background:
    radial-gradient(circle at 50% 50%, rgba(230, 86, 108, 0.96) 0 26%, transparent 27%),
    linear-gradient(180deg, rgba(237, 241, 247, 0.9), rgba(205, 214, 228, 0.78));
}

body[data-theme="dark"] .insight-card,
body[data-theme="dark"] .journey-card,
body[data-theme="dark"] .faq-card,
body[data-theme="dark"] .cta-panel {
  background:
    radial-gradient(circle at top left, rgba(243, 112, 33, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(14, 26, 47, 0.96), rgba(9, 20, 38, 0.94));
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .info-kicker {
  background: rgba(243, 112, 33, 0.14);
  border-color: rgba(243, 112, 33, 0.24);
  color: rgba(255, 230, 210, 0.94);
}

body[data-theme="dark"] .section-market .info-card {
  background:
    linear-gradient(180deg, rgba(14, 26, 47, 0.96), rgba(9, 20, 38, 0.94)),
    linear-gradient(90deg, rgba(159, 184, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(159, 184, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

body[data-theme="dark"] .section-market .info-card:nth-child(2)::after,
body[data-theme="dark"] .section-market .info-card:nth-child(3)::after,
body[data-theme="dark"] .section-liquidity .info-card:nth-child(1)::after {
  border-color: rgba(168, 183, 211, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .section-trading .info-card {
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(14, 26, 47, 0.96), rgba(9, 20, 38, 0.94));
}

body[data-theme="dark"] .section-trading .info-card .info-kicker {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 183, 211, 0.12);
  color: rgba(231, 238, 248, 0.92);
}

body[data-theme="dark"] .section-liquidity .info-card {
  background:
    radial-gradient(circle at top right, rgba(159, 184, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(14, 26, 47, 0.96), rgba(9, 20, 38, 0.94));
}

body[data-theme="dark"] .knowledge-visual-card {
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(14, 26, 47, 0.96), rgba(9, 20, 38, 0.94));
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .knowledge-visual-kicker,
body[data-theme="dark"] .market-visual-chip,
body[data-theme="dark"] .liquidity-visual-quote {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 183, 211, 0.12);
  color: rgba(236, 242, 250, 0.92);
}

body[data-theme="dark"] .knowledge-visual-title,
body[data-theme="dark"] .liquidity-visual-quote strong {
  color: rgba(247, 250, 255, 0.96);
}

body[data-theme="dark"] .knowledge-visual-text,
body[data-theme="dark"] .liquidity-visual-quote span,
body[data-theme="dark"] .market-visual-core-label {
  color: rgba(197, 208, 228, 0.8);
}

body[data-theme="dark"] .market-visual-stage {
  background:
    linear-gradient(180deg, rgba(159, 184, 255, 0.05), rgba(159, 184, 255, 0.02)),
    linear-gradient(90deg, rgba(159, 184, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(159, 184, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

body[data-theme="dark"] .market-visual-line {
  background: linear-gradient(90deg, rgba(159, 184, 255, 0), rgba(159, 184, 255, 0.2), rgba(159, 184, 255, 0));
}

body[data-theme="dark"] .liquidity-infographic {
  background:
    linear-gradient(180deg, rgba(159, 184, 255, 0.05), rgba(159, 184, 255, 0.02)),
    linear-gradient(90deg, rgba(159, 184, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(159, 184, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

body[data-theme="dark"] .liquidity-info-node {
  background: rgba(17, 28, 48, 0.9);
  border-color: rgba(168, 183, 211, 0.14);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .liquidity-info-node span {
  color: rgba(197, 208, 228, 0.8);
}

body[data-theme="dark"] .liquidity-info-node strong {
  color: rgba(247, 250, 255, 0.96);
}

body[data-theme="dark"] .liquidity-info-line {
  background: linear-gradient(180deg, rgba(159, 184, 255, 0.08), rgba(159, 184, 255, 0.22), rgba(159, 184, 255, 0.08));
}

body[data-theme="dark"] .trading-feature-card {
  background: rgba(17, 28, 48, 0.84);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .trading-feature-card h3 {
  color: rgba(247, 250, 255, 0.96);
}

body[data-theme="dark"] .trading-feature-card p {
  color: rgba(197, 208, 228, 0.8);
}

body[data-theme="dark"] .trading-feature-icon {
  background: #002561;
  color: #ffffff;
}

body[data-theme="dark"] .trading-orbit-chip {
  background: rgba(17, 28, 48, 0.9);
  border-color: rgba(168, 183, 211, 0.14);
  color: rgba(236, 242, 250, 0.94);
}

@keyframes orbitChipFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

body[data-theme="dark"] .return-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 183, 211, 0.12);
  color: rgba(236, 242, 250, 0.92);
}

body[data-theme="dark"] .return-chip-highlight,
body[data-theme="dark"] .return-result {
  background: rgba(243, 112, 33, 0.16);
  border-color: rgba(243, 112, 33, 0.18);
  color: rgba(255, 239, 225, 0.94);
}

body[data-theme="dark"] .journey-steps article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(168, 183, 211, 0.12);
}

body[data-theme="dark"] .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(168, 183, 211, 0.12);
}

body[data-theme="dark"] .faq-item.is-open {
  border-color: rgba(243, 112, 33, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .faq-icon {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 18px 0 0;
}

.hero-copy,
.journey-card,
.cta-panel,
.insight-card,
.product-card {
  border: 1px solid rgba(147, 149, 152, 0.18);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-soft);
  font-size: clamp(24px, 1.35vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: var(--type-heading-xl);
  line-height: 1;
}

h1 span {
  display: block;
  margin-top: 14px;
  max-width: 20ch;
  color: rgba(0, 37, 97, 0.74);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.3;
}


.cta-action{
border-radius: 33.494px;
background: #f37021;
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);

}
.hero-text,
.section-head p,
.insight-card p,
.journey-steps p,
.cta-panel p,
.product-card li,
.product-subtitle {
  color: black;
  line-height: 1.7;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 52, 108, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 600;
}

.hero-text {
  max-width: 50ch;
  margin:0 0 0;
  font-size: 35px;
  color: black;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #002561, transparent) 1;
  border-radius: 99px;
  padding-top: 0px;  
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section {
  position: relative;
  padding-top: 52px;
  overflow: visible;
}

.snap-section {
  scroll-margin-top: 112px;
}

@media (min-width: 981px) and (pointer: fine) {
  .snap-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-fluid.snap-section {
    min-height: 70vh;
    padding: 160px 0px;
  }

  .section.snap-section {
    padding-block: 44px;
  }

  .section-about.snap-section .about-dr24,
  .section-products.snap-section .section-head,
  .section-why.snap-section .section-head,
  .section-journey.snap-section .journey-card,
  .section-cta.snap-section .cta-panel {
    margin-block: auto;
  }

  .section-products.snap-section {
    justify-content: center;
  }

  .section-products.snap-section .showcase-layout {
    align-items: start;
  }

  .section-products.snap-section .section-head {
    margin-bottom: 96px;
  }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  line-height: 1.02;
}

.showcase-layout {
  display: block;
}

.showcase-layout-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.catalog-sections {
  display: grid;
  gap: 36px;
}

.catalog-section {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 32px;
  --catalog-accent: rgba(24, 52, 108, 0.18);
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 253, 0.96));
  box-shadow: 0 30px 52px rgba(20, 34, 61, 0.08);
  overflow: hidden;
}

.catalog-section::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--catalog-accent), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.catalog-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.content-info {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}
.catalog-copy {
  display: grid;
  gap: 14px;
  max-width: 52ch;
}

.catalog-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.07);
  color: var(--accent);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-copy h3 {
  margin: 0;
  padding: 8px 0px;
  position: relative;
  font-size: var(--type-heading-md);
  font-weight: 500;
  line-height: 0.92;
  text-wrap: balance;
}

.catalog-copy p {
  margin: 0;
  color: #6973A0;
  font-size: var(--type-body-tight);
  line-height: 1.72;
  font-weight: 400;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.catalog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.06);
  color: var(--text);
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 600;
}

.catalog-art-shell {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.catalog-art-glow {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 137, 255, 0.22), rgba(59, 137, 255, 0.02) 66%, transparent 72%);
  filter: blur(22px);
  transform: translateY(10px);
}

.catalog-art {
  position: relative;
  z-index: 1;
  width: min(80%, 420px);
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(16, 39, 83, 0.2));
  transform-style: preserve-3d;
  transform: scale(var(--catalog-art-scale, 1));
}

.catalog-art-float {
  animation: catalogFloat 9s ease-in-out infinite;
}

.catalog-art-tilt {
  animation-duration: 12.6s;
}

.catalog-art-drift {
  animation-duration: 12.4s;
}

.catalog-section-ai {
  --catalog-art-scale: 1;
  --catalog-accent: #002561;
  background:
    radial-gradient(circle at top right, rgba(33, 144, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}

.catalog-section-robotics {
  --catalog-art-scale: 1.08;
  --catalog-accent:#002561;
  background:
    radial-gradient(circle at top right, rgba(98, 128, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}

.catalog-section-entertainment {
  --catalog-art-scale: 1.1;
  --catalog-accent: #002561;
  background:
    radial-gradient(circle at top right, rgba(120, 102, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}

.catalog-section-realasset {
  --catalog-art-scale: 1.12;
  --catalog-accent: #002561;
  background:
    radial-gradient(circle at top right, rgba(40, 176, 215, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}

.sectioned-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section-products .section-head {
  grid-template-columns: 1fr;
  align-items: center;
}

.section-products .section-head > div {
  position: relative;
  padding-bottom: 18px;
  width: 100%;
}

.section-products .section-head > p {
  margin: 0;
  justify-self: end;
  max-width: 46ch;
}

.catalog-copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: min(180px, 36vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #002561, rgba(243, 112, 33, 0));
}

.showcase-theme-filter {
  position: sticky;
  top: 96px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.83); /* สำหรับ Safari เก่า */ 
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 30px rgba(20, 34, 61, 0.08);
  transition: top 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

body.is-in-products .showcase-theme-filter {
  top: 12px;
  box-shadow: 0 18px 34px rgba(20, 34, 61, 0.12);
}

.showcase-theme-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: black;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.showcase-theme-chip:hover,
.showcase-theme-chip:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
}

.showcase-theme-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #18346c 0%, #245eb1 100%);
  box-shadow: 0 12px 24px rgba(24, 52, 108, 0.22);
  transform: translateY(-1px);
}

.product-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.95));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease, box-shadow 260ms ease, filter 220ms ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(var(--card-lift, 0)) perspective(1200px) rotateY(calc(var(--card-rotate-y, 0) * 1deg)) rotateX(calc(var(--card-rotate-x, 0) * 1deg));
}


.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 112, 33, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within,
.product-card.is-active {
  --card-lift: -8px;
  border-color: rgba(243, 112, 33, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 244, 251, 0.98));
  box-shadow: 0 26px 44px rgba(20, 34, 61, 0.14);
  filter: saturate(1.02);
}

.product-card:hover::before,
.product-card:focus-within::before,
.product-card.is-active::before {
  opacity: 1;
  transform: scale(1.06);
}

.product-card:hover::after,
.product-card:focus-within::after,
.product-card.is-active::after {
  opacity: 1;
}

.product-card h3 {
  margin: 0;
  font-size: var(--type-heading-md);
  line-height: 1.15;
  color: black;
}
.product-description::after{
 content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15' fill='none'%3E%3Cpath d='M1 1L7.25 7.25001L1 13.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  right: 0px;
  transform: translate(-50%, 0px);
  bottom: 16px;
  font-weight: 400;
  background: #B0B0B0;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  border-radius: 25px;
  aspect-ratio: 1 / 1;
  line-height: normal;
}

.product-card.is-active .product-description::after{
 content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15' fill='none'%3E%3Cpath d='M1 1L7.25 7.25001L1 13.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  right: 0px;
  transform: translate(-50%, 0px);
  bottom: 16px;
  font-weight: 400;
  background: #f37021;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  border-radius: 25px;
  aspect-ratio: 1 / 1;
  line-height: normal;
}
.product-subtitle {
  margin: 0;
  font-size: var(--type-body-tight);
  line-height: 1.45;
  font-weight: 400;
  color: black;
}

.product-description {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: var(--type-body-tight);
  line-height: 1.6;
  color: #6973A0;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card li {
  font-size: var(--type-body-tight);
}

.product-card ul {
  margin: 2px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.product-card-sectioned {
  min-height: 236px;
}

.product-detail-panel {
  position: sticky;
  top: 108px;
}

.product-detail-backdrop {
  display: none;
}

.product-detail-panel-inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: block;
    gap: 18px;
    padding: 26px;
    min-height: 60dvh;
    max-height: 60dvh;
    border: 1px solid rgba(147, 149, 152, 0.16);
    border-radius: 32px;
    background: var(--detail-banner-image, none) top right / contain no-repeat, linear-gradient(180deg, #002561 0%, #002765 72.65%, #004CC7 112.42%);
    background-size: 110%;
    box-shadow: 0 28px 48px rgba(20, 34, 61, 0.1);
    transform-origin: top right;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 220ms ease, background 260ms ease;
}

.faq-toggle[aria-expanded="true"] .faq-question{
  color: #f37021;
}


.product-detail-panel-inner.is-switching > * {
  animation: detailContentRefresh 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.detail-kicker,
.detail-label {
  color: #f37021;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
}
.detail-kicker{
  color: white;
}

.detail-head {
    display: flex;
    gap: 8px;
}

.detail-head > div:first-child {
  flex: 0 0 auto;
}

#detail-logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

#detail-logo[hidden] {
  display: none;
}

.detail-head h3 {
  margin: 0;
  font-size: var(--type-heading-md);
  line-height: 1;
  color: white;
}

.detail-subtitle,
.detail-summary,
.detail-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.detail-subtitle{
  color: white;

}
.detail-summary{
  color: white;
}
#detail-standout,#detail-investor{
  color: black;

}

.detail-badge {
  width: fit-content;
  align-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.07);
  color: var(--accent);
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  display: none;
}
.insight-img img {
    width: 48px;
}
.detail-close {
    display: none;
    width: 32px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(147, 149, 152, 0.18);
    background: white;
    color: black;
    font-size: 20px;
    cursor: pointer;
}

.detail-block {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trading-feature-icon img {
    width: 52px;
}
.seo-product-data {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.disclaimer{
  width: 100%;
  max-width: 900px;
  margin:auto;
  position: relative;
}
.disclaimer p::before{
  content: 'คำเตือน: ';
  position: absolute;
  left: 0px;

}
.disclaimer p{
  font-size: 20px;
  color: #939598;
  padding-left: 56px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #EEE;
  color: #1F1F1E;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 400;
}

.detail-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.detail-foot-highlight strong {
  font-size: var(--type-body-tight);
  line-height: 1.6;
}

.detail-foot-highlight {
  grid-template-columns: 1fr;
}

.detail-foot div, .detail-block {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(147, 149, 152, 0.14);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, background-color 220ms ease;
}

.detail-foot strong {
  font-size: var(--type-body-tight);
  line-height: 1.4;
}

.product-detail-panel:hover .detail-foot div {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(20, 34, 61, 0.08);
}

@keyframes detailContentRefresh {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.product-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding-right: 60px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.product-card-feature h3 {
  font-size: var(--type-heading-md);
}
.brand-flex {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    border-left: 1px solid #E7E7E7;
    padding-left: 16px;
}  
.brand-flex strong {
    width: auto;
    font-size: 56px !important;
    order: 1;
    font-weight: 500;
    color: #002561 !important;
}
.brand-flex span {
    text-align: left;
    color: black !important;
    font-size: 18px !important;
    order: 2;

}
.product-card:hover .product-card-copy,
.product-card:focus-within .product-card-copy,
.product-card.is-active .product-card-copy {
  transform: translateY(-2px);
}

.catalog-section-ai .catalog-art-shell::after,
.catalog-section-robotics .catalog-art-shell::after,
.catalog-section-entertainment .catalog-art-shell::after,
.catalog-section-realasset .catalog-art-shell::after {
  content: "";
  position: absolute;
  inset: auto 14% 8% 14%;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 35, 79, 0.22), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}



.product-card-copy img{
  width: 32px;
  height: 32px;
  position: relative;
  top: 4px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));

}


.bento-flag-emblem-japan::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 48, 62, 0.98), rgba(188, 33, 46, 0.92));
  box-shadow: 0 0 12px rgba(216, 48, 62, 0.18);
}

.bento-flag-emblem-hk::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%) rotate(18deg);
  border-radius: 100% 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 -7px 0 -4px rgba(255, 255, 255, 0.96),
    7px 0 0 -4px rgba(255, 255, 255, 0.96),
    -7px 0 0 -4px rgba(255, 255, 255, 0.96),
    5px 5px 0 -4px rgba(255, 255, 255, 0.96),
    -5px 5px 0 -4px rgba(255, 255, 255, 0.96);
}

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

.section-returns .section-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 24px;
}

.section-returns .section-head p {
  margin: 10px 0 0;
  max-width: 68ch;
}

.section-market .section-head,
.section-trading .section-head,
.section-liquidity .section-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 24px;
}

.section-market .section-head p,
.section-trading .section-head p,
.section-liquidity .section-head p {
  margin: 10px 0 0;
  max-width: 68ch;
}

.insight-card {
  padding: 24px;
  align-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}

.returns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border-radius: 20px;
  padding: 26px;
  width: 90%;
  margin: auto;
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, #012765 73.22%, #0246B4 104.22%, #024ECB 139.75%);
  box-shadow: 14.654px 24.074px 101.529px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15.700301170349121px);  
}

.insight-card h3{
  color: #002561;
  font-size: 40px !important;
  font-style: normal;
  font-weight: 500;
}

.insight-card p{
  color: #010101;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 400;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.return-card {
    display: flex;
    flex-direction: row;
    gap: 8px;
    /*min-height: 100%;*/
    padding: 48px 16px;
}

.info-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.info-kicker {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  background: rgba(243, 112, 33, 0.08);
  color: var(--brand);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(243, 112, 33, 0.9), rgba(243, 112, 33, 0));
  opacity: 0.72;
}

.section-market .info-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.section-market .info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 252, 0.95)),
    linear-gradient(90deg, rgba(24, 52, 108, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(24, 52, 108, 0.04) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

.section-market .info-card:nth-child(1) {
  grid-column: 1 / -1;
  padding: 34px;
}

.section-market .info-card:nth-child(1) h3 {
  font-size: var(--type-heading-md);
}

.section-market .info-card:nth-child(2),
.section-market .info-card:nth-child(3) {
  grid-column: span 6;
}

.section-market .info-card:nth-child(2)::after,
.section-market .info-card:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(24, 52, 108, 0.1);
  opacity: 0.7;
}

.section-trading {
  counter-reset: trading-step;
}

.section-trading .section-head {
  justify-items: center;
  text-align: center;
}
.section-products .section-head {
    justify-items: center;
    text-align: center;
}
.section-products .section-head .about-dr24-copy-2 p{
  margin: 0px !important;

}
.section-products .section-head > div {
  padding-bottom: 0px;

}
.section-trading .section-head p {
  margin-inline: auto;
}

.section-trading .info-grid-wide {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
}

.section-trading .info-card {
  padding: 30px 28px 28px 88px;
  background:
    radial-gradient(circle at top right, rgba(243, 112, 33, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 252, 0.96));
}

.section-trading .info-card::before {
  counter-increment: trading-step;
  content: counter(trading-step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 52, 108, 0.96), rgba(0, 37, 97, 0.82));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
}

.section-trading .info-card .info-kicker {
  background: rgba(24, 52, 108, 0.06);
  border-color: rgba(24, 52, 108, 0.12);
  color: var(--accent);
}

.section-trading .info-card:nth-child(1),
.section-trading .info-card:nth-child(2) {
  grid-column: span 5;
}

.section-trading .info-card:nth-child(3),
.section-trading .info-card:nth-child(4) {
  grid-column: span 5;
}

.section-trading .info-card:nth-child(5) {
  grid-column: 1 / -1;
}

.section-trading .trading-checklist {
  display: none;
}

.trading-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px 18px;
  align-items: center;
  padding: 24px 8px 26px;
  overflow: visible;
}

.trading-showcase::before {
  content: "";
  position: absolute;
  inset: 2% 8% 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 37, 97, 0.14), rgba(0, 37, 97, 0.04) 24%, rgba(0, 37, 97, 0) 58%),
    radial-gradient(circle at 50% 42%, rgba(85, 170, 255, 0.16), rgba(85, 170, 255, 0) 52%);
  filter: blur(34px);
  pointer-events: none;
}

.trading-carousel {
  display: contents;
}

.trading-carousel-pagination {
  display: none;
}

.trading-showcase-wave {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(1200px, 100%);
  height: 180px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 37, 97, 0.3), rgba(0, 37, 97, 0.03) 42%, transparent 62%),
    linear-gradient(90deg, rgba(0, 37, 97, 0.12), rgba(0, 37, 97, 0.34), rgba(59, 137, 255, 0.16));
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
}

.trading-feature-card {
  position: relative;
  display: grid;
  align-content: center;
  text-align: center;
  gap: 12px;
  min-height: 188px;
  padding: 34px 24px 26px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.96), rgba(242, 245, 250, 0.88));
  box-shadow:
    0 26px 44px rgba(20, 34, 61, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

span.faq-question {
    font-weight: bold;
}

.trading-feature-card h3 {
  margin: 0;
  font-size: var(--type-heading-md);
  line-height: 1.16;
}


.trading-feature-card p {
  margin: 0;
  color: black;
  line-height: 1.7;
}

.trading-feature-icon {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f37021;
  color: #ffffff;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(15, 19, 24, 0.18);
}

.trading-feature-card-left-top {
  grid-column: 1 / span 3;
  grid-row: 1;
  transform: translateX(8.75vw) translateY(-2.7vh) rotate(0deg);
}

.trading-feature-card-left-middle {
  grid-column: 1 / span 3;
  grid-row: 2;
  transform: translateX(5.375vw) translateY(5.55vh) rotate(0deg);
}

.trading-feature-card-left-bottom {
  grid-column: 1 / span 3;
  grid-row: 3;
  transform: translateX(-120px) rotate(0deg);
}

.trading-feature-card-right-top {
  grid-column: 10 / span 3;
  grid-row: 1;
  transform: translateX(-5.813vw) translateY(-2.08vh) rotate(0deg);
  min-height: 210px;
  padding: 32px 26px 24px;
}

.trading-feature-card-right-middle {
  grid-column: 10 / span 3;
  grid-row: 2 / span 2;
  transform: translateX(-2.9vw) translateY(-7.63vh) rotate(0deg);
  min-height: 210px;
  padding: 40px 30px 32px;
  box-shadow:
    0 34px 56px rgba(20, 34, 61, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

.trading-feature-card-right-middle h3 {
  font-size: var(--type-heading-md);
}

.trading-feature-card-right-middle p {
  font-size: var(--type-body-tight);
  line-height: 1.8;
}

.trading-device {
  position: relative;
  grid-column: 4 / span 6;
  grid-row: 1 / span 3;
  min-height: 620px;
  display: grid;
  place-items: center;
  transform: translateX(18px);
  isolation: isolate;
}

.trading-device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(820px, 180%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(0, 37, 97, 0.24) 0%, rgba(0, 37, 97, 0.16) 14%, rgba(0, 37, 97, 0.06) 34%, rgba(0, 37, 97, 0) 68%);
  filter: blur(18px);
  pointer-events: none;
}

.trading-device::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, 220%);
  height: min(520px, 92%);
  transform: translate(-50%, -50%);
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(84, 145, 255, 0.18) 0%, rgba(84, 145, 255, 0.08) 24%, rgba(84, 145, 255, 0) 64%);
  filter: blur(42px);
  pointer-events: none;
}

.trading-device-ring {
  position: absolute;
  width: min(540px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 24px 34px rgba(20, 34, 61, 0.1));
  opacity: 0.94;
}

.trading-device-phone {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: rotate(0deg);
  filter: drop-shadow(0 34px 56px rgba(20, 34, 61, 0.18));
}

.trading-device-notch {
  display: none;
}

.trading-device-mb{
  display: none;
}

.trading-device-screen {
  display: none;
}

.trading-device-badge {
  display: none;
}

.trading-device-screen strong {
  display: none;
}

.trading-device-screen p {
  display: none;
}

.trading-orbit-chip {
  position: absolute;
  z-index: 3;
  width: clamp(84px, 8vw, 120px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: orbitChipFloat 5.6s ease-in-out infinite;
}

.trading-orbit-chip img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(20, 34, 61, 0.12));
}

.trading-orbit-chip-a img {
  display: block;
  width: 120%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(20, 34, 61, 0.12));
}
.trading-orbit-chip-b img {
  display: block;
  width: 120%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(20, 34, 61, 0.12));
}
.trading-orbit-chip-c img {
  display: block;
  width: 110%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(20, 34, 61, 0.12));
}

.trading-orbit-chip-a {
  left: 14%;
  top: 52%;
  animation-delay: 0s;
}

.trading-orbit-chip-b {
  right: 10%;
  top: 38%;
  animation-delay: 0.8s;
}

.trading-orbit-chip-c {
  right: 12%;
  bottom: 16%;
  animation-delay: 1.6s;
}

.section-liquidity .info-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.section-liquidity .info-card {
  background:
    radial-gradient(circle at top right, rgba(24, 52, 108, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 252, 0.96));
}

.section-liquidity .info-card:nth-child(1) {
  padding: 34px;
}

.section-liquidity .info-card:nth-child(1)::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(24, 52, 108, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 12px 24px rgba(20, 34, 61, 0.06);
  opacity: 0.68;
}

.section-liquidity .info-card:nth-child(2) {
  align-content: start;
}

.section-liquidity .info-card:nth-child(2) .info-kicker {
  background: rgba(243, 112, 33, 0.1);
}

.knowledge-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.knowledge-main,
.knowledge-visual {
  min-width: 0;
}

.market-layout {
  grid-template-columns: minmax(0, 1fr);
}

.knowledge-visual {
  display: grid;
}

.knowledge-visual-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(59, 137, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.knowledge-visual-kicker {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 52, 108, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.knowledge-visual-title {
  font-size: var(--type-heading-sm);
  color: var(--text);
}

.knowledge-visual-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.market-tabs {
  display: grid;
  gap: 18px;
}

.market-tabs-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  padding: 8px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.market-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.market-tab.is-active,
.market-tab:hover,
.market-tab:focus-visible {
  background: linear-gradient(135deg, rgba(24, 52, 108, 0.96), rgba(0, 37, 97, 0.84));
  color: #ffffff;
  transform: translateY(-1px);
}

.market-tab-panels {
  position: relative;
}

.market-panel {
  animation: panelFadeSlide 220ms ease;
}

.market-visual-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -24% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 137, 255, 0.18), transparent 68%);
  filter: blur(8px);
}

.market-visual-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-visual-chip {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 52, 108, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.market-visual-stage {
  position: relative;
  min-height: 230px;
  margin-top: auto;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(24, 52, 108, 0.04), rgba(24, 52, 108, 0.01)),
    linear-gradient(90deg, rgba(24, 52, 108, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(24, 52, 108, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  overflow: hidden;
}

.market-visual-line {
  position: absolute;
  inset: 50% 22% auto 22%;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 52, 108, 0), rgba(24, 52, 108, 0.18), rgba(24, 52, 108, 0));
}

.market-visual-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(243, 112, 33, 0.98), rgba(208, 78, 0, 0.9));
  box-shadow: 0 0 0 8px rgba(243, 112, 33, 0.08);
}

.market-visual-node-a {
  left: 18%;
  top: 28%;
}

.market-visual-node-b {
  left: 26%;
  bottom: 26%;
}

.market-visual-node-c {
  right: 20%;
  top: 34%;
}

.market-visual-node-core {
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(24, 52, 108, 0.98), rgba(0, 37, 97, 0.88));
  box-shadow:
    0 0 0 14px rgba(24, 52, 108, 0.08),
    0 24px 30px rgba(20, 34, 61, 0.12);
}

.market-visual-core-label {
  position: absolute;
  left: 50%;
  top: calc(50% + 28px);
  transform: translateX(-50%);
  color: var(--accent);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

.trading-checklist {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: start;
}

.trading-checklist-nav {
  display: grid;
  gap: 12px;
}

.trading-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.trading-check:hover,
.trading-check:focus-visible,
.trading-check.is-active {
  transform: translateY(-2px);
  border-color: rgba(243, 112, 33, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 238, 0.92));
  box-shadow: 0 18px 34px rgba(20, 34, 61, 0.08);
}

.trading-check-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(24, 52, 108, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
}

.trading-check.is-active .trading-check-index {
  background: linear-gradient(135deg, rgba(24, 52, 108, 0.96), rgba(0, 37, 97, 0.84));
  color: #ffffff;
}

.trading-check-copy {
  display: grid;
  gap: 4px;
}

.trading-check-copy strong {
  font-size: var(--type-heading-sm);
  color: var(--text);
}

.trading-check-copy span {
  color: var(--text-soft);
  line-height: 1.45;
}

.trading-detail {
  min-height: 100%;
  padding: 30px;
}

.trading-panel {
  display: grid;
  gap: 14px;
  animation: panelFadeSlide 220ms ease;
}

.liquidity-accordion {
  display: grid;
  gap: 14px;
}

.liquidity-item {
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.liquidity-toggle {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.liquidity-toggle strong {
  position: relative;
  padding-right: 42px;
  font-size: var(--type-heading-sm);
  color: var(--text);
}

.liquidity-toggle strong::after,
.liquidity-toggle strong::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.liquidity-toggle strong::before {
  transform: translateY(-50%) rotate(90deg);
}

.liquidity-item.is-open .liquidity-toggle strong::before {
  opacity: 0;
}

.liquidity-panel {
  padding: 0 26px 24px;
  color: var(--text-soft);
  line-height: 1.75;
  animation: panelFadeSlide 220ms ease;
}

.liquidity-visual-card {
  align-content: start;
}

.liquidity-infographic {
  position: relative;
  min-height: 310px;
  margin-top: 8px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 52, 108, 0.04), rgba(24, 52, 108, 0.01)),
    linear-gradient(90deg, rgba(24, 52, 108, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(24, 52, 108, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  overflow: hidden;
}

.liquidity-info-node {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 30px rgba(20, 34, 61, 0.08);
}

.liquidity-info-node span {
  color: var(--text-soft);
  font-size: clamp(24px, 1.3vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
}

.liquidity-info-node strong {
  color: var(--text);
  font-size: var(--type-heading-sm);
  line-height: 1.35;
}

.liquidity-info-node-center {
  left: 50%;
  top: 50%;
  min-width: 156px;
  transform: translate(-50%, -50%);
  border-color: rgba(0, 37, 97, 0.18);
  background: linear-gradient(135deg, rgba(24, 52, 108, 0.96), rgba(0, 37, 97, 0.84));
  box-shadow: 0 22px 34px rgba(20, 34, 61, 0.14);
}

.liquidity-info-node-center span,
.liquidity-info-node-center strong {
  color: #ffffff;
}

.liquidity-info-node-top {
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
}

.liquidity-info-node-left {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.liquidity-info-node-right {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.liquidity-info-node-bottom {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.liquidity-info-line {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 37, 97, 0.08), rgba(0, 37, 97, 0.22), rgba(0, 37, 97, 0.08));
}

.liquidity-info-line-top,
.liquidity-info-line-bottom {
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.liquidity-info-line-top {
  top: 88px;
  height: 62px;
}

.liquidity-info-line-bottom {
  bottom: 88px;
  height: 62px;
}

.liquidity-info-line-left,
.liquidity-info-line-right {
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.liquidity-info-line-left {
  left: 150px;
  width: 76px;
}

.liquidity-info-line-right {
  right: 150px;
  width: 76px;
}

@keyframes panelFadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.return-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.return-chip,
.return-result {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(147, 149, 152, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 600;
}

.return-chip-highlight,
.return-result {
  background: rgba(243, 112, 33, 0.12);
  border-color: rgba(243, 112, 33, 0.16);
}

.return-arrow {
  color: var(--brand-soft);
  font-size: var(--type-body-tight);
  font-weight: 700;
}

.insight-card h3,
.journey-steps h3 {
  margin: 0 0 10px;
  font-size: var(--type-heading-sm);
}

.journey-card,
.cta-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
}
.cta-panel {
  background: linear-gradient(180deg, #012765 73.22%, #0246B4 104.22%, #024ECB 139.75%);
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journey-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.journey-steps span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--type-heading-md);
  font-weight: 700;
}

.faq-card {
  display: grid;
  gap: 28px;
  padding: 40px;
}

.insight-card + .insight-card::before {
  content: "";
  position: absolute;

  left: -8px;        /* ครึ่ง gap */
  top: 50%;          /* เริ่มที่กลาง */
  transform: translateY(-50%); /* ดึงขึ้นครึ่งนึงให้ centered */

  height: 70%;       /* ความยาวเส้น */
  width: 1px;
  background: #eee;
}


.faq-head {
  display: grid;
  gap: 16px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}
  .chest-landscape {
   display: none;
  }  
.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-item.is-open {
  border-color: rgba(0, 37, 97, 0.18);
  box-shadow: 0 18px 36px rgba(0, 37, 97, 0.08);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 37, 97, 0.08);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
  padding: 0 30px 28px;
}

.faq-answer p {
  margin: 0;
  color: black;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;

  color: var(--text);
  position: fixed;
  left: 50%;
  bottom: 16px;
  width: min(calc(100vw - 32px), var(--max-width));
  transform: translateX(-50%);
  z-index: 18;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% + 18px));
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, box-shadow 220ms ease;
}

body.is-cta-visible .cta-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cta-panel p,
.cta-panel .eyebrow {
  color: var(--text-soft);
}

.eyebrow{
  color: #F37021 !important;
  font-size: 50px !important;
  font-style: normal;
  font-weight: 500 !important;
}
.cta-copy {
  display: grid;
  gap: 10px;
}

.cta-kicker {
  color: var(--brand);
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1240;
  background: rgba(11, 22, 41, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cta-modal.is-open,
.cta-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cta-modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  max-height: min(calc(100dvh - 48px), 920px);
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(84, 145, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(244, 247, 252, 0.98));
  box-shadow: 0 32px 70px rgba(20, 34, 61, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cta-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 54px;
  min-height: 54px;
  border: 1px solid rgba(147, 149, 152, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.cta-modal-head {
  display: grid;
  gap: 12px;
  max-width: 44rem;
}

.cta-modal-kicker,
.cta-modal-tag {
  color: var(--brand);
  font-weight: 700;
}

.cta-modal-head p,
.cta-modal-option p {
  margin: 0;
  color: var(--text-soft);
}

.cta-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cta-modal-option {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(147, 149, 152, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.cta-modal-option-primary {
  box-shadow: 0 20px 38px rgba(20, 34, 61, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(10px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.returns-grid .chest{
  position: absolute;
  left: 15%;
  bottom: -72px;
  z-index: 4;
  width: min(34vw, 420px);
  transform: translateX(-50%);
  pointer-events: none;
}

.returns-grid .chest img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(3, 20, 55, 0.24));
  animation: orbitChipFloat 5.6s ease-in-out infinite;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  z-index: 2;
}
.overlay-return {
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.90) 25.96%, #FFF 75.96%);
    box-shadow: 14.654px 24.074px 101.529px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15.700301170349121px);
    width: 80%;
    height: 80%;
    position: absolute;
    top: 7%;
    left: 18%;
}

.insight-card{
  background: none;
  border: none;
  box-shadow: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.05); }
}

@keyframes aboutFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.04); }
}

@keyframes aboutCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes aboutPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.92; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

@keyframes aboutBlink {
  0%, 100% { opacity: 0.72; box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08); }
  50% { opacity: 1; box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.12); }
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(2deg); }
}

@keyframes catalogFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(3deg); }
}

@keyframes globeFieldFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.02); }
  50% { transform: translate3d(0, -14px, 0) scale(1.06); }
}

@keyframes globeSideFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -12px, 0) scale(1.05); }
}

@keyframes globeAccentFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg) scale(1); }
  50% { transform: translate3d(0, -12px, 0) rotate(-8deg) scale(1.05); }
}

@keyframes stagePulse {
  0%, 100% { transform: scale(0.98); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes heroTileFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--tile-rotate, 0deg)) scale(1); }
  50% { transform: translate3d(0, -12px, 0) rotate(var(--tile-rotate, 0deg)) scale(1.03); }
}

@keyframes heroTrainTraverse {
  0% { transform: translate3d(-6%, 0, 0) scale(var(--hero-train-scale)); }
  100% { transform: translate3d(28%, 0, 0) scale(var(--hero-train-scale)); }
}

@keyframes graphPulse {
  0%, 100% { transform: scaleY(0.92); opacity: 0.85; }
  50% { transform: scaleY(1.06); opacity: 1; }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-top-wrapper {
  display: none;
  position: fixed;
  bottom: 130px;
  width: auto;
  height: auto;
  right: 12px;
}

.button.top {
  padding: 20px;
  border-radius: 50px;
  font-size: 0;
  display: block;
  width: 50px;
  height: 50px;
  opacity: .75;
  
}

.icon.icon-up:before {
  font-size: 24px;
  transform: translate(-30%, -40%);
  animation: iconup 1.6s ease-in-out infinite;
}

@keyframes iconup {
  0%, 100% {
    transform: translate(-30%, -40%);
  } 
  50% { 
    transform: translate(-30%, -20%);
  }
  
}

@media (max-width: 1366px) {
  .hero-fluid-inner,
  .hero,
  .about-dr24,
  .section-head,
  .showcase-layout-editorial,
  .catalog-section-head,
  .cta-panel,
  .showcase-layout,
  .insight-grid,
  .info-grid,
  .returns-grid,
  .journey-steps {
    grid-template-columns: 1fr;
  }

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

  .product-detail-panel {
    position: static;
    order: 2;
  }

  .catalog-sections {
    order: 1;
  }

  .about-visual-shell {
    min-height: 380px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1366px) {
  div.page-shell {
    --earth-size: clamp(520px, 78vw, 860px);
    --earth-left: calc(var(--earth-size) * -0.56);
    --earth-top: clamp(-160px, -14vw, -52px);
  }

  .hero-dr-bubble strong,
  .hero-dr-bubble small {
    font-size: 24px;
  }

  .hero-fluid-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  
  .liquidity-visual {
    display: none;
  }

  .trading-showcase {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 12px 0 0;
  }

  .trading-carousel {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 28px 10px 12px;
    margin-inline: -10px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }

  .trading-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }



  .trading-carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    order: 2;
    padding: 2px 0 4px;
  }

  .trading-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 37, 97, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, width 180ms ease;
  }

  .trading-carousel-dot.is-active {
    width: 22px;
    background: #002561;
  }

  .trading-showcase-wave {
    display: none;
  }

  .trading-carousel > .trading-feature-card {
    flex: 0 0 clamp(280px, 40vw, 400px);
    scroll-snap-align: center;

  }

  .trading-carousel > .trading-feature-card,
  .trading-feature-card-left-top,
  .trading-feature-card-left-middle,
  .trading-feature-card-left-bottom,
  .trading-feature-card-right-top,
  .trading-feature-card-right-middle {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .trading-device {
    display: none;
  }

  .trading-carousel > .trading-feature-card,
  .trading-feature-card-left-top,
  .trading-feature-card-left-middle,
  .trading-feature-card-left-bottom,
  .trading-feature-card-right-top,
  .trading-feature-card-right-middle {
    width: clamp(280px, 40vw, 400px);
    max-width: clamp(280px, 40vw, 400px);
  }

  .trading-feature-card-left-top { order: 1; }

  .trading-feature-card-left-middle { order: 2; }

  .trading-feature-card-left-bottom { order: 3; }

  .trading-feature-card-right-top { order: 4; }

  .trading-feature-card-right-middle { order: 5; }

  .trading-feature-card {
    align-content: start;
    padding: 62px 18px 24px;
  }

  .trading-device-phone {
    width: min(260px, 72%);
  }

  .trading-orbit-chip-a {
        left: 30%;
        top: 58%;
  }

  .trading-orbit-chip-b {
      right: 25%;
      top: 30%;
  }

  .trading-orbit-chip-c {
right: 25%;
        bottom: 14%;
  }

  .knowledge-split,
  .trading-checklist {
    grid-template-columns: 1fr;
  }

  .knowledge-visual-card {
    min-height: auto;
    padding: 24px;
  }

  .market-tabs-nav {
    width: 100%;
  }

  .market-visual-stage {
    min-height: 180px;
  }

  .showcase-theme-filter {
    top: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    margin-bottom: 18px;
    scrollbar-width: none;
  }

  body.is-in-products .showcase-theme-filter {
    top: 10px;
  }

  .showcase-theme-filter::-webkit-scrollbar {
    display: none;
  }

  .showcase-theme-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .fx-layer::before,
  .fx-layer::after {
    width: clamp(220px, 34vw, 300px);
    opacity: 0.16;
  }

  .fx-layer::before {
    left: -8px;
    top: 18%;
  }

  .fx-layer::after {
    right: -8px;
    top: 62%;
  }

  .page-shell {
    padding-top: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  .topbar-nav {
    order: 3;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .topbar-nav::-webkit-scrollbar {
    display: none;
  }

  .topbar-nav a {
    white-space: nowrap;
  }

  .hero-copy,
  .journey-card,
  .faq-card,
  .cta-panel {
    padding: 24px;
  }

  .catalog-section {
    padding: 22px;
  }

  .faq-toggle {
    padding: 24px;
  }

  .faq-answer {
    padding: 0 24px 24px;
  }

  .catalog-art-shell {
    min-height: 260px;
    width: 100%;
  }

  .catalog-art {
    width: 80%;
    max-width: none;
  }

  .product-detail-panel-inner {
    padding: 22px;
  }

  .product-detail-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: block;
    background: rgba(6, 13, 24, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .product-detail-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .product-detail-panel {
    --detail-sheet-offset: 100%;
    position: fixed;
    inset: 0;
    z-index: 1210;
    display: grid;
    align-items: end;
    transform: translateY(var(--detail-sheet-offset));
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  }
  .product-detail-panel-inner {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 60dvh;
    max-height: 60dvh;
    border-radius: 28px 28px 0 0;
    padding: 20px 20px 28px;
    overflow: hidden;
    overscroll-behavior: contain;
    background: var(--detail-banner-image, none) top right / contain no-repeat, linear-gradient(180deg, #002561 0%, #002765 72.65%, #004CC7 112.42%);
    backdrop-filter: blur(26px) saturate(1.15);
    -webkit-backdrop-filter: blur(26px) saturate(1.15);
    box-shadow: 0 -20px 48px rgba(20, 34, 61, 0.22);
  }

  .detail-mobile {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
  }

  .product-detail-panel-inner.is-switching > * {
    animation: none;
  }

  .product-detail-panel.is-open {
    --detail-sheet-offset: 0px;
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-detail-open .product-detail-panel {
    --detail-sheet-offset: 0px;
    opacity: 1;
    pointer-events: auto;
  }

  .product-detail-panel.is-dragging {
    transition: none;
  }

  body.is-mobile-detail-open .product-detail-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .detail-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .detail-topbar::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 56px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
  }

    .detail-topbar {
      border-bottom: 1px solid #FFF;
      position: sticky;
      top: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 0 14px;
      margin: -20px 0 0;
      touch-action: none;
      user-select: none;
      -webkit-user-select: none;
      /*background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 58%, rgba(244, 248, 255, 0) 100%);*/
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

  .section-products .section-head {
    gap: 14px;
    margin-bottom: 56px;
  }

  .section-products .section-head > p {
    justify-self: stretch;
    max-width: none;
  }

  .catalog-sections {
    gap: 30px;
  }

  .catalog-section {
    padding: 24px 20px 22px;
    border-radius: 32px;
    border-color: rgba(147, 149, 152, 0.18);
    box-shadow: 0 22px 36px rgba(20, 34, 61, 0.08);
  }

  .catalog-section::before {
    left: 18px;
    right: 18px;
    height: 4px;
  }

  .catalog-section + .catalog-section {
    margin-top: 4px;
  }

  .catalog-copy {
    gap: 12px;
  }

  .catalog-copy h3 {
    max-width: 18ch;
    font-size: clamp(40px, 5.8vw, 54px);
    line-height: 0.9;
  }

  .detail-foot {
    grid-template-columns: 1fr 1fr;
  }

  .hero-fluid {
    min-height: auto;
    padding-top: 32px;
  }

  .theme-toggle-label {
    display: none;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .cursor-glow {
    display: none;
  }

  .about-dr24 {
    padding: 8px 0 0;
  }


  .about-points {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: 100%;
  }

  .about-visual-shell {
    min-height: 340px;
    padding: 18px;
  }

  .about-feature-card-main {
    right: 18px;
  }

  .about-feature-card-top,
  .about-feature-card-bottom {
    position: static;
    margin-top: 12px;
  }

  .about-visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .snap-section {
    min-height: auto;
    display: block;
  }

  .section {
    padding-top: 56px;
  }

  .section-cta {
    min-height: 220px;
    display: block;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    z-index: 40;
    isolation: isolate;
  }

  .cta-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    transform: translateY(calc(100% + 18px));
    z-index: 1100;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 28px;

    box-shadow: 0 24px 50px rgba(20, 34, 61, 0.16);
    transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
  }

  body.is-cta-visible .cta-panel {
    transform: translateY(0);
  }

  .cta-copy {
    gap: 4px;
    min-width: 0;
  }

  .cta-kicker {
    display: none;
  }

  .cta-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(243, 112, 33, 0.12);
  }

  .cta-panel h2 {
    font-size: 24px;
  }

  .cta-panel p {
    display: none;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    gap: 0;
    align-items: center;
  }

  .cta-actions .button {
    width: auto;
    min-height: 54px;
    min-width: 144px;
    justify-content: center;
  }

  .cta-actions .button-ghost {
    display: none;
  }



  .cta-modal {
    align-items: end;
    padding: 12px;
  }

  .cta-modal-panel {
    width: 100%;
    max-height: min(calc(100dvh - 12px), 88dvh);
    padding: 24px 18px 18px;
    border-radius: 28px 28px 0 0;
  }

  .cta-modal-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .trading-carousel > .trading-feature-card {
    flex-basis: calc(100vw - 52px);
  }

  .trading-carousel > .trading-feature-card,
  .trading-feature-card-left-top,
  .trading-feature-card-left-middle,
  .trading-feature-card-left-bottom,
  .trading-feature-card-right-top,
  .trading-feature-card-right-middle {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
  }

  .liquidity-infographic {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .liquidity-info-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    min-width: 0;
    width: 100%;
  }

  .liquidity-info-node-center {
    order: 1;
  }

  .liquidity-info-node-top {
    order: 2;
  }

  .liquidity-info-node-left {
    order: 3;
  }

  .liquidity-info-node-right {
    order: 4;
  }

  .liquidity-info-node-bottom {
    order: 5;
  }

  .liquidity-info-line {
    display: none;
  }
}

@media (max-width: 860px) and (orientation: landscape) {
  .topbar {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 8px 8px;
  }
  .catalog-copy {
      order: 2;
  }  
  .catalog-art {
      width: 50%;
      max-width: none;
      order: 1;
  }
  .sectioned-card-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }  
  .topbar-nav {
    order: 2;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    gap: 24px;
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: clamp(24px, 1.4vw, 26px);
  }

  .brand-copy span {
    display: none;
  }

  .topbar-nav a {
    font-size: clamp(24px, 1.3vw, 26px);
  }

  .topbar .button-small.button-ghost {
    display: none;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
 
  .topbar-shell,
  header.container {
    top: 0px;
    margin-bottom: 20px;
    padding: 0px;
  }

  .brand {
      display: inline-flex;
      justify-content: end;
      align-items: flex-end;
  }
.brand-flex {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    border-left: none;
}  
.brand-flex strong {
    width: auto;
    order: 2;
    font-size: 56px !important
}
.brand-flex span {
    text-align: right;
    order: 1;
    color: black !important;
    font-size: 20px !important;

}
  .topbar {
    display: grid;
    grid-template-columns: 1fr 5fr;
    align-items: center;
    justify-content: space-between;
    gap: 14px 12px;
    border-radius: 0px;
    border-color: transparent;
    padding: 14px 16px 16px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 14px 34px rgba(20, 34, 61, 0.1);
  }

  .logo {
    width: 66px;
    flex: 0 0 auto;
  }

  .brand {
    gap: 2px;
    width: 100%;
  }

  .brand strong {
    font-size: clamp(20px, 6vw, 24px);
  }

  .brand span {
    font-size: clamp(14px, 3.9vw, 17px);
    color: #66729f;
  }

  .topbar-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-around;
    gap: 10px;
    overflow-x: auto;
    padding-inline: 0;
    padding-bottom: 0;
    margin-top: 2px;
    scrollbar-width: none;
    border-top: 1px solid rgba(147, 149, 152, 0.25);
    padding-top: 16px;
  }

  .topbar-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: black;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
  }

  

  .topbar-nav a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #18346c 0%, #245eb1 100%);
    transform: translateY(-1px);
  }

  body.is-topbar-nav-only .topbar-nav {
    display: flex !important;
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 26;
    width: min(calc(100% - 24px), 720px);
    justify-content: center;
    gap: 10px;
    padding: 10px;
    margin-top: 0;
    border-top: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.83); /* สำหรับ Safari เก่า */
    border: 1px solid rgba(147, 149, 152, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(20, 34, 61, 0.12);
  }

  body.is-topbar-nav-only .topbar-shell {
    margin-bottom: 0;
  }

  body.is-topbar-nav-only .topbar {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
    gap: 0;
  }

  body.is-topbar-nav-only .logo,
  body.is-topbar-nav-only .brand {
    display: none;
  }

  body.is-topbar-nav-only .topbar-nav a {
    display: inline-flex !important;
    min-height: 38px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.72);
  }

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

  body.is-mobile-section-nav-visible .mobile-section-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 28;
    display: flex;
    
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(calc(100% - 24px), 720px);
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    border-radius: 999px;
    border: 1px solid rgba(147, 149, 152, 0.16);
    background: rgba(255, 255, 255, 0.83); /* สำหรับ Safari เก่า */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(20, 34, 61, 0.12);
  }

  .mobile-section-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
  
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: black;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
  }

  .mobile-section-nav a:hover,
  .mobile-section-nav a:focus-visible,
  .mobile-section-nav a.is-active,
  .mobile-section-nav a[aria-current="page"] {
    color: #ffffff;
    background: linear-gradient(135deg, #18346c 0%, #245eb1 100%);
    box-shadow: 0 12px 24px rgba(24, 52, 108, 0.22);
    transform: translateY(-1px);
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .topbar {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 8px 8px;
  }

  .logo {
      width: 48px;
  }
  .topbar-nav {
    order: 2;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .topbar-nav::-webkit-scrollbar {
    display: none;
  }

  .topbar-nav a {
    white-space: nowrap;
    font-size: clamp(24px, 1.3vw, 26px);
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: clamp(24px, 1.4vw, 26px);
  }

  .brand-copy span {
    display: none;
  }

  .topbar .button-small.button-ghost {
    display: none;
  }
}


@media (max-width: 560px) {
  div.page-shell {
    --earth-size: clamp(400px, 100vw, 640px);
    --earth-left: calc(var(--earth-size) * -0.56);
    --earth-top: clamp(-120px, -16vw, -28px);
  }

  .hero-dr-bubbles {
    inset: -6% -6% -2% -6%;
  }

  .hero-dr-bubble {

    max-width: 168px;
    padding: 12px 14px;
  }

  .hero-dr-bubble strong,
  .hero-dr-bubble small {
    font-size: 24px;
  }

  .hero-dr-bubble-b,
  .hero-dr-bubble-e {
    display: none;
  }

  .catalog-copy h3 {
    max-width: none;
    font-size: clamp(38px, 9vw, 48px);
    line-height: 0.92;
  }

  .fx-layer::before,
  .fx-layer::after {
    width: clamp(170px, 38vw, 230px);
    opacity: 0.13;
  }

  .fx-layer::before {
    left: -10px;
    top: 22%;
  }

  .fx-layer::after {
    right: -10px;
    top: 66%;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .cta-actions {
    display: flex;
  }

  .cta-panel {
    border-radius: 24px;
    padding: 12px 14px;
    gap: 10px;
  }

  .cta-panel h2 {
    font-size: 24px;
  }

  .cta-actions .button {
    min-width: 132px;
    min-height: 50px;
  }

  .sectioned-card-grid {
    grid-template-columns: 1fr;
  }

  .catalog-art-shell {
    min-height: 250px;
    width: 100%;
  }

  .catalog-sections {
    gap: 24px;
  }

  .catalog-section {
    padding: 22px 18px 20px;
    border-radius: 28px;
  }

  .catalog-section::before {
    left: 16px;
    right: 16px;
  }

  .catalog-art {
    width: 100%;
    max-width: none;
  }

  .catalog-section-ai {
    --catalog-art-scale: 1.08;
  }

  .catalog-section-robotics {
    --catalog-art-scale: 1.24;
  }

  .catalog-section-entertainment {
    --catalog-art-scale: 1.26;
  }

  .catalog-section-realasset {
    --catalog-art-scale: 1.28;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-fluid {
    padding-inline: 14px;
  }

  .theme-toggle {
    padding-inline: 10px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .product-card-bento,
  .product-card-feature,
  .product-card-tall,
  .product-card-wide {
    min-height: auto;
  }

  .about-dr24 {
    padding: 4px 0 0;
  }

  .about-points {
    grid-template-columns: minmax(0, 1fr);
    padding: 0px 24px;
    gap: 48px;
    justify-content: stretch;
  }
  .about-points article {
      padding: 32px 24px;
      display: flex;
  }
  .about-point-icon {
      position: relative;
      top: 30%;
      left: -56px;
      transform: translate(0px, -30%);
      width: 40px;
      height: 40px;
  }
.about-point-icon img {
    animation: orbitChipFloat 5.6s ease-in-out infinite;
    width: 96px;
}
  .about-points p{
    text-align: left !important;
    font-size: 24px;
    font-weight: 400;
  }
  .about-points strong{
    text-align: left !important;
    font-size: 32px;
  }  
  .about-feature-card,
  .about-visual-caption {
    padding: 14px 16px;
  }



  .about-visual-shell {
    min-height: 320px;
  }

  .snap-section {
    min-height: auto;
  }

  .flag-emblem-hk,
  .flag-emblem-japan::before {
    width: 96px;
  }

  .scroll-top-wrapper {
    display: block;
  }

}

body,
body * {
  font-family: "DB Heavent Fix", sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1 !important;
}

@media screen and (max-width: 736px){
  .detail-foot {
      grid-template-columns: 1fr !important;
  }
  .sectioned-card-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 16px;
  }  
  .product-detail-panel-inner{
      min-height: 90dvh !important;
      max-height: 90dvh !important;
      border: none;
  }
}

@media screen and (min-width: 662px) and (max-width: 820px) and (orientation: portrait){


  .product-detail-panel-inner{
      min-height: 65dvh !important;
      max-height: 65dvh !important;

  }
}
@media screen and (max-width: 1024px) and (orientation: landscape){
  .product-detail-panel-inner{
      min-height: 90dvh !important;
      max-height: 90dvh !important;

  }
  .detail-badge{
      display: none;

  }
}

@media screen and (min-width: 1024px) and (orientation: landscape){
  .detail-badge{
      display: none;

  }
}
@media screen and (max-width: 720px) and (orientation: landscape){
 .returns-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }   
  .insight-card + .insight-card::before{
    display: none;
  } 
}
@media screen and (max-width: 662px) and (orientation: portrait){
    .section {
        padding-top: 0px;
    }  
  .page-bottom-art img{
    display: none;
  }
  .section-reward {
      display: flex;
      flex-direction: column-reverse;
      justify-self: center !important;
      place-self: center !important;
  }
  .insight-card + .insight-card::before{
    display: none;
  }
  .chest-landscape img {
      width: 70% !important;
  }  
  .returns-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }  
  .trading-orbit-chip-a {
        left: 14%;
        top: 58%;
  }
  .about-dr24-copy h2::after{
      width: 80%;
  }
  .about-dr24-copy-2::after{
      width: 80%;
  }
  .trading-orbit-chip-b {
      right: 9%;
      top: 30%;
  }

  .trading-orbit-chip-c {
right: 7%;
        bottom: 14%;
  }

  .hero-banner-bg {
      position: absolute;
      top: -130px;
      bottom: 0;
      z-index: 1;
      left: 50%;
      width: 100vw;
      margin-left: -50vw;
      overflow: hidden;
      background: url(images/hero-banner-gemini-mobile.png);
      background-size: cover;
      background-position-x: center;
      background-position-y: calc(0% - 48px);
  }
  .hero-copy{
    padding: 0px;
    gap: 8px;
  }
  .hero-conatainer {
      gap: 16px;
      padding: 24px 0px;

  }  
  .hero-copy h1 {
      font-size: 48px;
      line-height: 0.85 !important;
  }  
  .hero-subtitle {
      font-size: 24px;
  }  
  .hero-text {
      font-size: 24px;
      padding-top: 16px;
  }  

}
@media screen and (min-width: 662px) and (max-width: 1128px) and (orientation: portrait) {
  .about-dr24-copy-2::after {
      width: 50%;
  } 
  .about-dr24-copy h2::after {
      width: 50%;
  }   
    .trading-orbit-chip-a img, .trading-orbit-chip-b img, .trading-orbit-chip-c img {
        width: 130% !important;
    }  
  .trading-device-phone {
      width: min(500px, 100%) !important;
  }  
 .trading-orbit-chip-a {
        left: 27%;
        top: 58%;
  }

  .trading-orbit-chip-b {
      right: 24%;
      top: 30%;
  }

  .trading-orbit-chip-c {
right: 24%;
        bottom: 14%;
  }    
    .hero-banner-bg {
        position: absolute;
        top: -200px;
        bottom: 0;
        z-index: 1;
        left: 50%;
        width: 100vw;
        margin-left: -50vw;
        overflow: hidden;
        background: url(images/hero-banner-gemini.png);
        background-size: cover;
        background-position-x: center;
    }
    
    .relative-bg {
        position: relative;
        width: min(100%, 820px);
        max-width: 400px;
    }     
    .hero-copy{
      padding: 0px;
      gap: 8px;
    }
    .hero-conatainer {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: row-reverse !important;
        gap: 24px;
        width: min(calc(100% - 24px), var(--max-width));
        margin: 0 auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }    
    .hero-main-bg{
      order: 1 !important;
    }
    
    .hero-fluid-inner {
      order: 2 !important;
      flex-direction: column;
    }
    .hero-copy h1 {
        font-size: 48px;
        line-height: 0.85 !important;
    }  
    .hero-subtitle {
        font-size: 24px;
    }  
    .hero-text {
        font-size: 24px;
        padding-top: 16px;
    }      
}


@media screen and (min-width: 768px) and (max-width: 1366px){
     
  .about-points {
      grid-template-columns: repeat(1, minmax(220px, 1fr));
      gap: 24px;
      width: 80%;
  }  
  .about-points article {
      padding: 32px 16px;
      display: flex;
  }
  .about-point-icon {
      position: relative;
      top: 30%;
      left: -56px;
      transform: translate(0px, -50%);
      width: 40px;
      height: 40px;
  }
.about-point-icon img {
    animation: orbitChipFloat 5.6s ease-in-out infinite;
    width: 96px;
}
  .about-points p{
    text-align: left !important;
    font-size: 24px;
    font-weight: 400;
  }
  .about-points strong{
    text-align: left !important;
    font-size: 32px;
  }    
  
  .sectioned-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
  }  
  .catalog-section-head {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
  .detail-badge{
    display:none;
  }
}
@media screen and (min-width: 860px) and (max-width: 1366px) and (orientation: landscape){
    .about-dr24-copy h2::after{
      width: 40%;
    }
    .about-dr24-copy-2::after{
      width: 40%;
    }    
    .trading-device-phone {
        width: min(500px, 100%) !important;
    }  
   .trading-orbit-chip-a img, .trading-orbit-chip-b img, .trading-orbit-chip-c img {
        width: 120% !important;
    }  
  .trading-orbit-chip-a {
        left: 28%;
        top: 58%;
  }

  .trading-orbit-chip-b {
      right: 26%;
      top: 30%;
  }

  .trading-orbit-chip-c {
right: 26%;
        bottom: 14%;
  }  
  .about-points {
      grid-template-columns: repeat(1, minmax(220px, 1fr));
      gap: 32px;
      width: 70%;
  }  
  .about-points article {
      padding: 32px 16px;
      display: flex;
  }
  .about-point-icon {
      position: relative;
      top: 25%;
      left: -56px;
      transform: translate(0px, -50%);
      width: 40px;
      height: 40px;
  }
.about-point-icon img {
    animation: orbitChipFloat 5.6s ease-in-out infinite;
    width: 96px;
}
  .about-points p{
    text-align: left !important;
    font-size: 24px;
    font-weight: 400;
  }
  .about-points strong{
    text-align: left !important;
    font-size: 32px;
  }     
  .sectioned-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
  }  

}
@media screen and (max-width: 700px){
  .catalog-copy{
    order: 2;
  }
  .catalog-art-shell{
    order: 1;
  }
  .catalog-art{
    width: 50%;
    
  }
  .catalog-art-shell{

    max-height: 160px !important;
    min-height: 160px !important;
  }  
}
@media screen and (max-width: 800px){
  .hero-dr-bubbles{
    display: none;

  }
  .hero-subtitle {
    color: black;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    
  }
  .hero-text {
      margin: 0px 0 0;
      color: #000;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;   
  }  
  .hero-copy h1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.0; /* 108.333% */
    background: linear-gradient(94deg, #002561 40.79%, #000 96.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
  }  
}


@media screen and (max-width: 992px) and (orientation: landscape){
  .page-bottom-art img{
    display: none;
  }
  .about-points {
      grid-template-columns: repeat(1, minmax(220px, 1fr));
      gap: 24px;
      width: 100%;
  }  
  .about-points article {
      padding: 32px 16px;
      display: flex;
  }
  .about-point-icon {
      position: relative;
      top: 30%;
      left: -56px;
      transform: translate(0px, -50%);
      width: 40px;
      height: 40px;
  }
.about-point-icon img {
    animation: orbitChipFloat 5.6s ease-in-out infinite;
    width: 96px;
}
  .about-points p{
    text-align: left !important;
    font-size: 24px;
    font-weight: 400;
  }
  .about-points strong{
    text-align: left !important;
    font-size: 32px;
  }    
  .hero-banner-bg {
      position: absolute;
      top: -130px;
      bottom: 0;
      z-index: 1;
      left: 50%;
      width: 100vw;
      margin-left: -50vw;
      overflow: hidden;
      background: url(images/hero-banner-gemini.png);
      background-size: cover;
      background-position-x: center;
  }
  .hero-copy{
    padding: 0px;
    gap: 8px;
  }
  .hero-copy h1 {
      font-size: 48px;
      line-height: 0.85 !important;
  }  
  .hero-subtitle {
      font-size: 24px;
  }  
  .hero-text {
      font-size: 24px;
      padding-top: 8px;
  }  
  .hero-conatainer {
      gap: 8px !important;
      flex-direction: row-reverse !important;
      padding: 24px 0px;
  }  

}



@media screen and (max-width: 1366px) and (orientation: landscape){
  .hero-banner-bg {
      position: absolute;
      top: -130px;
      bottom: 0;
      z-index: 1;
      left: 50%;
      width: 100vw;
      margin-left: -50vw;
      overflow: hidden;
      background: url(images/hero-banner-gemini.png);
      background-size: cover;
      background-position-x: center;
      background-position-y: bottom;
  }
  .hero-fluid-inner{
    order: 2 !important;
    flex-direction: column;
  }
  
  .hero-copy{
    padding: 0px;
    gap: 8px;
  }
  .hero-copy h1 {
      font-size: 48px;
      line-height: 0.85 !important;
  }  
  .hero-subtitle {
      font-size: 24px;
  }  
  .hero-text {
      font-size: 24px;
      padding-top: 8px;
  }  
  .hero-conatainer {
      gap: 8px !important;
      flex-direction: row-reverse !important;
      padding: 24px 0px;
  }  

}


@media screen and (max-width: 768px) and (orientation: landscape){
  .brand{
    display: none;

  } 
  .trading-orbit-chip-a {
        left: 16%;
        top: 58%;
  }

  .trading-orbit-chip-b {
      right: 12%;
      top: 30%;
  }

  .trading-orbit-chip-c {
right: 11%;
        bottom: 14%;
  }    
}
@media screen and (min-width: 800px) and (max-width: 1200px){
  .hero-dr-bubble{
    padding: clamp(4px, 1.2vw, 8px) clamp(8px, 1.2vw, 24px);
  }
  .hero-dr-bubble strong, .hero-dr-bubble small{
    font-size: clamp(18px, 1.2vw, 24px);
  }
}



/* ===== Hero 50/50 layout override ===== */
@media screen and (min-width: 1024px) {
  .hero-conatainer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 4vw, 64px);
    width: min(calc(100% - 24px), var(--max-width));
    margin: 0 auto;
  }

  .hero-fluid-inner {
    flex: 1 1 50%;
    min-width: 0;
    width: auto;
    max-width: none;
    display: flex;
    align-items: center;
    order: 1;
  }

  .hero-main-bg {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 2 !important;
    flex: 1 1 50%;
    min-width: 0;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 1;
    order: 2;
  }

  .hero-main-bg .relative-bg {
    position: relative;
    width: min(100%, 820px);
    margin-left: auto;
  }

  .hero-main-bg img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1023px) {
  .hero-conatainer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: min(calc(100% - 24px), var(--max-width));
    margin: 0 auto;
  }

  .hero-fluid-inner,
  .hero-main-bg {
    width: 100%;
    max-width: none;
  }

  .hero-main-bg {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: flex;
    justify-content: center;
  }
}



/* ===== Detail panel scroll fix ===== */
.product-detail-panel-inner {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.detail-topbar {
  flex: 0 0 auto;
}

.detail-mobile {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.detail-head {
  flex: 0 0 auto;
}

.content-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
  scrollbar-width: thin;
}

.content-info::-webkit-scrollbar {
  width: 8px;
}

.content-info::-webkit-scrollbar-thumb {
  background: rgba(0, 37, 97, 0.35);
  border-radius: 999px;
}

.content-info::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1366px) {
  .page-bottom-art img{
    display: none;
  }  
  .trading-feature-card{
    box-shadow: none;
  }
  .section-reward{
    display: flex;
    justify-self: flex-end;
    place-self: flex-end;
  }
  .chest-landscape {
      display: flex;
      margin: auto;
      justify-content: center;
  }  
  .chest-landscape img {
      width: 100%;
      animation: orbitChipFloat 5.6s ease-in-out infinite;
  }    
  .returns-grid{
    grid-template-columns: 1fr 1fr;
  }
  .trans-bg {
    display: none;
  }
  .returns-grid .chest{
    display:none;
  }
  .overlay-return{
    display: none;
  }
  .return-card{
    padding: 8px;
  }
  .returns-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      border-radius: 20px;
      padding: 0px;
      width: 100%;
      margin: auto;
      position: relative;
      overflow: visible;
      background: none;
      box-shadow: none;
      backdrop-filter: none;
  }    
  .trading-device-mb {
      display: grid;
      position: relative;
      position: relative;
      display: grid;
      place-items: center;
      isolation: isolate;
  } 
  .trading-orbit-chip-a img,.trading-orbit-chip-b img,.trading-orbit-chip-c img{
    width: 100%;
  }
  .trading-device-phone {
      width: min(400px, 100%);
  } 
  .trading-device-mb::before {
      content: "";
      position: absolute;
      inset: 2% 8% 0;
      z-index: 0;
      background: radial-gradient(circle at 50% 42%, rgba(0, 37, 97, 0.14), rgba(0, 37, 97, 0.04) 24%, rgba(0, 37, 97, 0) 58%), radial-gradient(circle at 50% 42%, rgba(85, 170, 255, 0.16), rgba(85, 170, 255, 0) 52%);
      filter: blur(34px);
      pointer-events: none;
  }    
  .product-detail-panel-inner {
    display: flex !important;
    flex-direction: column !important;
  }

  .detail-mobile {
    overflow: hidden !important;
    padding-right: 0;
  }

  .content-info {
    padding-right: 4px;
  }
}
