:root {
  --bg: #ffffff;
  --surface: #f7f9fc;
  --surface-strong: #eef3fb;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e9f1;
  --primary: #246bfe;
  --primary-dark: #174fc5;
  --primary-soft: #eaf1ff;
  --orange: #f6a820;
  --green: #16a36a;
  --red: #ef5350;
  --shadow-sm: 0 12px 35px rgba(17, 24, 39, .06);
  --shadow-md: 0 24px 70px rgba(31, 52, 92, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 132px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 10px 14px 0;
  pointer-events: none;
}
.nav-shell {
  width: min(100%, 1380px);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 14px 10px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, min-height .35s ease;
}
.site-header.is-scrolled .nav-shell {
  min-height: 62px;
  background: rgba(255,255,255,.92);
  border-color: rgba(218, 226, 239, .95);
  box-shadow: 0 16px 45px rgba(37, 54, 84, .11);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 185px; }
.brand img:first-child { width: 46px; height: 46px; object-fit: contain; }
.brand-ccl { width: 35px; height: 38px; object-fit: contain; }
.brand-divider { width: 1px; height: 28px; background: #dce2eb; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav a { position: relative; color: #606b7c; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -10px; height: 2px; border-radius: 10px; background: var(--primary); transition: left .25s ease, right .25s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; min-width: 185px; justify-content: flex-end; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 99px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel {
  display: none;
  width: min(calc(100% - 28px), 720px);
  margin: 8px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  transform-origin: top center;
}
.mobile-panel a:not(.button) { display: block; padding: 12px 4px; border-bottom: 1px solid #edf0f5; font-weight: 700; }
.mobile-panel .button { margin-top: 18px; }

.button {
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 12px; font-size: 14px; }
.button-primary { color: #fff; background: linear-gradient(135deg, #246bfe, #1755d1); box-shadow: 0 13px 30px rgba(36, 107, 254, .25); }
.button-primary:hover { box-shadow: 0 17px 36px rgba(36, 107, 254, .34); }
.button-dark { color: #fff; background: #151b27; box-shadow: 0 10px 22px rgba(17,24,39,.15); }
.button-ghost { color: #263247; background: rgba(255,255,255,.72); border-color: #dbe2ed; box-shadow: 0 8px 24px rgba(17, 24, 39, .04); }
.button-white { color: #164cbf; background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.text-link { color: var(--primary); font-weight: 800; transition: color .2s ease, transform .2s ease; }
.text-link:hover { color: var(--primary-dark); }

.hero {
  position: relative;
  min-height: 900px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(36,107,254,.10), transparent 34%),
    radial-gradient(circle at 20% 18%, rgba(246,168,32,.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff 75%, #f7f9fc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #f7f9fc);
  pointer-events: none;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .46; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { width: 460px; height: 460px; top: 100px; right: -190px; border: 1px solid rgba(36,107,254,.18); box-shadow: inset 0 0 90px rgba(36,107,254,.05); }
.hero-orb-two { width: 230px; height: 230px; left: -90px; top: 370px; border: 1px solid rgba(246,168,32,.18); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.hero-copy { padding-top: 14px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 6px rgba(36,107,254,.10); }
.hero-title {
  margin: 28px 0 0;
  font-family: Manrope, "Pretendard Variable", sans-serif;
  font-size: clamp(42px, 4.25vw, 66px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 700;
  word-break: keep-all;
}
.hero-title-en { max-width: 760px; }
.title-line { display: block; width: max-content; max-width: 100%; transform-origin: left center; white-space: nowrap; }
.title-line + .title-line { margin-top: 10px; }
.title-line-long { font-size: .74em; letter-spacing: -.035em; }
.title-line.accent { color: var(--orange); }
.hero-char { display: inline-block; font-variation-settings: "wght" 560; font-weight: 560; transition: font-variation-settings .18s ease, font-weight .18s ease; }
.title-line.accent .hero-char { color: var(--orange); }
.hero-char.space { width: .32em; }
.hero-description { margin: 27px 0 0; color: #556175; font-size: 18px; line-height: 1.8; letter-spacing: -.02em; }
.hero-offer { margin-top: 25px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; color: #3d485c; font-size: 14px; }
.hero-offer strong { color: var(--ink); font-size: 17px; }
.offer-badge { padding: 5px 9px; border: 1px solid #f5c76d; border-radius: 8px; color: #9a6100; background: #fff8e6; font-size: 12px; font-weight: 800; }
.hero-buttons { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-mini-points { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 18px; color: #657084; font-size: 13px; font-weight: 600; }
.hero-mini-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-mini-points i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22,163,106,.10); }
.hero-visual { position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.terminal-card {
  position: relative;
  width: min(100%, 590px);
  min-height: 490px;
  padding: 24px;
  border: 1px solid rgba(207,216,231,.9);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 45px 100px rgba(31,58,112,.17), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .25s ease;
  overflow: hidden;
}
.terminal-card::before { content: ""; position: absolute; width: 320px; height: 320px; right: -130px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(36,107,254,.18), transparent 70%); }
.terminal-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.terminal-brand { display: flex; align-items: center; gap: 12px; }
.terminal-logo { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #1558d1, #f6a820); font-family: Manrope, sans-serif; font-weight: 900; box-shadow: 0 10px 20px rgba(36,107,254,.18); }
.terminal-brand strong, .terminal-brand small { display: block; }
.terminal-brand strong { font-size: 14px; }
.terminal-brand small { color: #7b8594; font-size: 11px; }
.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #08774b; background: #eafaf3; font: 800 10px Manrope, sans-serif; letter-spacing: .06em; }
.live-chip i { width: 7px; height: 7px; border-radius: 50%; background: #1abc7b; box-shadow: 0 0 0 5px rgba(26,188,123,.11); animation: pulse 1.8s infinite; }
.quote-row { margin-top: 36px; display: flex; align-items: end; justify-content: space-between; }
.quote-row small, .quote-row strong { display: block; }
.quote-row small { color: #7d8796; font: 700 11px Manrope, sans-serif; letter-spacing: .08em; }
.quote-row strong { margin-top: 4px; font: 800 34px Manrope, sans-serif; letter-spacing: -.04em; }
.positive { padding: 7px 10px; border-radius: 9px; color: #0b8756; background: #eafaf3; font: 800 13px Manrope, sans-serif; }
.chart-wrap { margin-top: 16px; height: 235px; transform-style: preserve-3d; transition: transform .24s cubic-bezier(.22,1,.36,1); }
.hero-chart { width: 100%; height: 100%; overflow: visible; }
.chart-grid path { fill: none; stroke: #e8edf5; stroke-width: 1; }
.chart-area { fill: url(#areaGradient); }
.chart-line { fill: none; stroke: #246bfe; stroke-width: 4; stroke-linecap: round; filter: url(#glow); stroke-dasharray: 900; stroke-dashoffset: 900; animation: drawLine 2.1s .9s forwards cubic-bezier(.2,.8,.2,1); }
.chart-point { fill: #fff; stroke: #246bfe; stroke-width: 4; opacity: 0; animation: fadePoint .4s 2.7s forwards; }
.trade-panel { display: grid; grid-template-columns: 1fr 108px 108px; align-items: center; gap: 10px; padding: 15px; border: 1px solid #edf0f5; border-radius: 17px; background: #fafbfe; }
.trade-metric small, .trade-metric strong { display: block; }
.trade-metric small { color: #8a93a1; font-size: 11px; }
.trade-metric strong { margin-top: 3px; font: 800 14px Manrope, sans-serif; }
.trade-button { height: 48px; border: 0; border-radius: 12px; color: #fff; font: 800 12px Manrope, sans-serif; letter-spacing: .06em; }
.trade-button.sell { background: #ee6262; }
.trade-button.buy { background: #246bfe; }
.floating-chip { position: absolute; z-index: 4; min-width: 190px; padding: 13px 16px 13px 12px; display: flex; align-items: center; gap: 11px; border: 1px solid #e0e6f0; border-radius: 17px; background: rgba(255,255,255,.92); box-shadow: 0 20px 50px rgba(31,52,92,.14); backdrop-filter: blur(12px); animation: float 4.5s ease-in-out infinite; }
.floating-chip .chip-icon { width: 39px; height: 39px; border-radius: 12px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); font: 800 13px Manrope, sans-serif; }
.floating-chip strong, .floating-chip small { display: block; }
.floating-chip strong { font: 800 14px Manrope, sans-serif; }
.floating-chip small { margin-top: 1px; color: #828c9a; font-size: 10px; }
.chip-one { top: 63px; left: -42px; animation-delay: -.6s; }
.chip-two { right: -55px; top: 190px; animation-delay: -1.7s; }
.chip-three { left: -20px; bottom: 62px; animation-delay: -2.8s; }
.stats-bar { position: relative; z-index: 4; margin-top: 52px; padding: 28px 42px; border: 1px solid #e1e7f0; border-radius: 24px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.stat-item { display: flex; align-items: center; justify-content: center; gap: 15px; }
.stat-item strong { font: 800 29px Manrope, sans-serif; letter-spacing: -.04em; white-space: nowrap; }
.stat-item > span { color: #687386; font-size: 13px; font-weight: 700; }
.stat-divider { width: 1px; height: 36px; background: #e2e7ef; }

.section-heading { max-width: 680px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading h2, .comparison-copy h2, .faq-copy h2 { margin: 18px 0 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.18; letter-spacing: -.055em; font-weight: 900; word-break: keep-all; }
.section-heading p, .comparison-copy > p, .faq-copy > p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.section-kicker.light { color: #cfe0ff; }

.trust-section { background: #f7f9fc; }
.trust-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card { position: relative; min-height: 390px; padding: 22px; border: 1px solid #e2e7f0; border-radius: 24px; background: #fff; overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease; }
.trust-card:hover { transform: translateY(-9px); border-color: rgba(36,107,254,.3); box-shadow: var(--shadow-md); }
.trust-number { position: absolute; top: 20px; right: 22px; color: #aab4c2; font: 800 11px Manrope, sans-serif; letter-spacing: .12em; }
.trust-art { height: 220px; border-radius: 18px; position: relative; overflow: hidden; background: linear-gradient(150deg, #eef3ff, #f9fbff); }
.trust-art::before, .trust-art::after, .trust-art span::before, .trust-art span::after { content: ""; position: absolute; }
.trust-art-stadium::before { width: 210px; height: 120px; left: 50%; top: 54px; transform: translateX(-50%) perspective(180px) rotateX(56deg); border: 13px solid #246bfe; border-radius: 50%; box-shadow: inset 0 0 0 8px #fff, 0 16px 30px rgba(36,107,254,.14); }
.trust-art-stadium::after { width: 90px; height: 58px; left: 50%; top: 96px; transform: translateX(-50%); border-radius: 50%; background: linear-gradient(#7ed29d, #4baa72); }
.trust-art-expo::before { width: 140px; height: 130px; left: 45px; bottom: 30px; border: 2px solid #246bfe; border-radius: 14px; background: linear-gradient(145deg, rgba(36,107,254,.07), rgba(255,255,255,.9)); transform: skewY(-8deg); }
.trust-art-expo::after { width: 86px; height: 70px; right: 35px; top: 42px; border-radius: 14px; background: linear-gradient(145deg,#246bfe,#174fc5); box-shadow: -80px 75px 0 -15px #f6a820; }
.trust-art-city { background: linear-gradient(#dfeaff 0 58%, #f8fafc 58%); }
.trust-art-city::before { left: 30px; right: 30px; bottom: 18px; height: 125px; background: linear-gradient(90deg, #264b8f 0 12%, transparent 12% 16%, #5374ad 16% 29%, transparent 29% 34%, #1f3d74 34% 53%, transparent 53% 58%, #7592c4 58% 72%, transparent 72% 77%, #264b8f 77%); clip-path: polygon(0 100%,0 35%,12% 35%,12% 12%,28% 12%,28% 47%,42% 47%,42% 0,60% 0,60% 26%,75% 26%,75% 43%,88% 43%,88% 20%,100% 20%,100% 100%); }
.trust-art-city::after { width: 78px; height: 35px; left: 50%; top: 78px; transform: translateX(-50%); background: #246bfe; border: 4px solid #fff; box-shadow: 0 8px 18px rgba(31,52,92,.24); }
.trust-art-tokyo { background: linear-gradient(150deg,#f6f0ff,#e9f1ff); }
.trust-art-tokyo::before { inset: 38px 28px 28px; border-radius: 16px; background: linear-gradient(135deg, #2b5ad3 0 50%, #f6a820 50%); box-shadow: 0 18px 35px rgba(36,107,254,.16); transform: rotate(-4deg); }
.trust-art-tokyo::after { width: 92px; height: 68px; left: 50%; top: 75px; transform: translateX(-50%) rotate(3deg); border: 6px solid #fff; background: #111827; }
.trust-card h3 { margin: 25px 0 0; font-size: 20px; letter-spacing: -.025em; }
.trust-card p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.source-note { margin: 20px 0 0; color: #8b94a3; font-size: 12px; }

.benefits-section { background: #fff; }
.benefit-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { position: relative; min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; overflow: hidden; transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease; }
.benefit-card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 18% 16%, rgba(36,107,254,.10), transparent 43%); transition: opacity .35s ease; }
.benefit-card:hover { transform: translateY(-9px); border-color: rgba(36,107,254,.32); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  position: relative;
  width: 108px;
  height: 108px;
  border: 1px solid #dfe6f0;
  border-radius: 26px;
  overflow: hidden;
  background: #fbfcff;
}

.benefit-icon::before,
.benefit-icon::after {
  display: none;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.benefit-card h3 { position: relative; margin: 28px 0 0; font-size: 21px; letter-spacing: -.03em; }
.benefit-card p { position: relative; margin: 11px 0 0; color: var(--muted); font-size: 14px; }
.card-arrow { position: absolute; right: 24px; bottom: 22px; width: 38px; height: 38px; border: 1px solid #e1e7f0; border-radius: 50%; display: grid; place-items: center; color: #8b95a4; transition: color .25s ease, background .25s ease, transform .25s ease; }
.benefit-card:hover .card-arrow { color: #fff; background: var(--primary); transform: translateX(4px); }

.comparison-section { background: #f7f9fc; }
.comparison-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.comparison-copy > p { max-width: 500px; }
.comparison-highlights { margin-top: 36px; display: grid; gap: 16px; }
.comparison-highlights div { display: flex; align-items: center; gap: 14px; color: #5d6879; font-weight: 700; }
.comparison-highlights strong { width: 39px; height: 39px; border-radius: 12px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); font: 800 11px Manrope, sans-serif; }
.comparison-board { padding: 25px; border: 1px solid #dfe6f0; border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); }
.comparison-tabs { padding: 5px; border-radius: 14px; display: grid; grid-template-columns: repeat(3,1fr); background: #f0f3f8; }
.comparison-tab { height: 46px; border: 0; border-radius: 10px; color: #768092; background: transparent; font-weight: 800; cursor: pointer; transition: all .25s ease; }
.comparison-tab.is-active { color: var(--ink); background: #fff; box-shadow: 0 7px 18px rgba(31,52,92,.08); }
.comparison-content { display: none; grid-template-columns: 1fr 54px 1fr; align-items: stretch; margin-top: 22px; animation: fadePanel .35s ease both; }
.comparison-content.is-active { display: grid; }
.comparison-column { min-height: 285px; padding: 28px; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.comparison-column span { color: #737e90; font-size: 12px; font-weight: 800; }
.comparison-column strong { margin-top: 18px; font: 800 clamp(24px,3vw,37px) Manrope, sans-serif; letter-spacing: -.05em; }
.comparison-column small { margin-top: 12px; color: #7d8797; font-size: 12px; line-height: 1.7; }
.comparison-column.muted { border: 1px solid #e2e7ef; background: #fafbfc; }
.comparison-column.featured { color: #fff; background: linear-gradient(145deg, #286df7, #164ebe); box-shadow: 0 22px 50px rgba(36,107,254,.24); }
.comparison-column.featured span, .comparison-column.featured small { color: rgba(255,255,255,.74); }
.versus { align-self: center; justify-self: center; width: 42px; height: 42px; border: 1px solid #dfe5ee; border-radius: 50%; display: grid; place-items: center; color: #8791a0; background: #fff; font: 800 10px Manrope, sans-serif; z-index: 2; }

.markets-section { background: #fff; overflow: hidden; }
.market-marquee { margin-top: 55px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.market-track { width: max-content; display: flex; gap: 18px; padding: 8px 18px 30px; animation: marquee 35s linear infinite; }
.market-marquee:hover .market-track { animation-play-state: paused; }
.market-card { width: 292px; min-height: 390px; border: 1px solid #e1e7f0; border-radius: 24px; background: #fff; box-shadow: 0 13px 32px rgba(31,52,92,.06); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.market-card:hover { transform: translateY(-7px); border-color: rgba(36,107,254,.24); box-shadow: var(--shadow-md); }
.market-card-inner { min-height: 390px; padding: 22px; display:flex; flex-direction:column; }
.market-top-line { min-height: 44px; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.market-logo { min-width:58px; height:42px; padding:0 14px; border-radius:13px; display:inline-flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--market-accent,#246bfe),color-mix(in srgb,var(--market-accent,#246bfe) 64%,#0b1730)); font:800 17px/1 Manrope,sans-serif; box-shadow:0 10px 22px color-mix(in srgb,var(--market-accent,#246bfe) 22%,transparent); }
.market-status { flex:0 0 auto; min-height:30px; padding:0 12px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; white-space:nowrap; font:800 11px/1 Manrope,sans-serif; }
.market-status.live { color:#0b8d66; background:#e8faf4; }
.market-status.hot { color:#a16a00; background:#fff5df; }
.market-status.safe { color:#8d6b0f; background:#fff8e7; }
.market-status.energy { color:#0f7d68; background:#e8fbf5; }
.market-status.crypto { color:#6948d8; background:#f2ecff; }
.market-status.forex { color:#2165c0; background:#edf5ff; }
.market-type { margin-top:14px; width:max-content; min-height:27px; padding:0 10px; border-radius:999px; display:inline-flex; align-items:center; color:#667085; background:#f3f6fb; font:700 11px/1 Manrope,sans-serif; }
.market-card h3 { margin:16px 0 0; font-size:27px; line-height:1.15; letter-spacing:-.045em; }
.market-card p { margin:8px 0 0; min-height:44px; color:#7b8698; font-size:14px; line-height:1.55; }
.market-meta { margin-top:12px; display:flex; gap:7px; flex-wrap:wrap; }
.market-meta span { min-height:27px; padding:0 9px; border-radius:999px; display:inline-flex; align-items:center; color:#344054; background:#f4f7fc; font:700 10px/1 Manrope,sans-serif; }
.market-image-slot {
  margin-top: 16px;
  height: 116px;
  border: 0;
  border-radius: 17px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f9fc;
}

.market-image-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.market-footer-text { margin-top:13px; min-height:48px; padding:0 14px; border:1px solid #dce3ef; border-radius:13px; display:flex; align-items:center; color:#344054; background:#fff; font-size:14px; font-weight:800; }
.theme-nq { --market-accent:#246bfe; }
.theme-es { --market-accent:#f2a81d; }
.theme-gold { --market-accent:#c58e16; }
.theme-oil { --market-accent:#22b693; }
.theme-btc { --market-accent:#9065ef; }
.theme-forex { --market-accent:#2f85ff; }

.platform-section { background: #f7f9fc; }
.platform-switcher { margin-top: 55px; }
.platform-tabs { width: max-content; max-width: 100%; margin: 0 auto 20px; padding: 5px; display: flex; gap: 4px; border: 1px solid #e0e6ef; border-radius: 15px; background: #fff; box-shadow: 0 10px 30px rgba(31,52,92,.06); }
.platform-tab { min-width: 185px; height: 48px; border: 0; border-radius: 11px; color: #697486; background: transparent; font-weight: 700; cursor: pointer; transition: all .25s ease; }
.platform-tab span { margin-right: 8px; color: #9aa3b1; font: 800 12px Manrope, sans-serif; }
.platform-tab.is-active { color: #fff; background: #172033; box-shadow: 0 10px 20px rgba(17,24,39,.16); }
.platform-tab.is-active span { color: #8fb3ff; }
.platform-panel { display: none; min-height: 590px; grid-template-columns: .87fr 1.13fr; align-items: stretch; border: 1px solid #dfe6f0; border-radius: 30px; background: #fff; overflow: hidden; box-shadow: var(--shadow-md); animation: fadePanel .4s ease both; }
.platform-panel.is-active { display: grid; }
.platform-copy { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.platform-label { color: var(--primary); font: 800 11px Manrope, sans-serif; letter-spacing: .14em; }
.platform-copy h3 { margin: 19px 0 0; font-size: clamp(32px,3.4vw,49px); line-height: 1.2; letter-spacing: -.05em; }
.platform-copy > p { margin: 20px 0 0; color: var(--muted); }
.platform-copy ul { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: #3f4b5d; font-weight: 600; font-size: 14px; }
.platform-copy li { position: relative; padding-left: 26px; }
.platform-copy li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }
.platform-actions { margin-top: 33px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.platform-mockup { position: relative; min-height: 590px; overflow: hidden; background: #e8edf4; }
.mt5-mockup { margin: 24px 24px 24px 0; padding: 14px; border-radius: 24px; background: linear-gradient(145deg,#dde4ee,#cfd8e6); }
.mt5-window { height:100%; min-height:562px; border:1px solid #7f8b9b; border-radius:8px; overflow:hidden; display:flex; flex-direction:column; color:#17202d; background:#f3f5f8; box-shadow:0 22px 50px rgba(9,20,38,.22); font-family:Arial,sans-serif; }
.mt5-titlebar { height:30px; padding:0 10px; display:flex; align-items:center; gap:10px; color:#fff; background:#2d5f9d; font-size:11px; }
.mt5-titlebar strong { font-size:12px; }
.mt5-titlebar > span { opacity:.88; }
.mt5-window-actions { margin-left:auto; display:flex; gap:12px; }
.mt5-window-actions i { width:10px; height:10px; border:1px solid rgba(255,255,255,.75); }
.mt5-menubar { height:27px; padding:0 10px; display:flex; align-items:center; gap:18px; border-bottom:1px solid #bcc4cf; background:#f4f4f4; font-size:11px; }
.mt5-toolbar { height:38px; padding:0 9px; display:flex; align-items:center; gap:7px; border-bottom:1px solid #aeb8c5; background:linear-gradient(#fafafa,#e6e9ed); font-size:10px; }
.mt5-toolbar b { width:23px; height:23px; display:grid; place-items:center; border:1px solid #9fa9b5; background:#fff; color:#1f6ed4; font-size:18px; }
.mt5-toolbar i { width:22px; height:22px; border:1px solid #aab3bf; background:linear-gradient(135deg,#fff 45%,#4c79ac 46% 54%,#fff 55%); }
.mt5-toolbar em { min-width:27px; height:22px; padding:0 4px; border:1px solid #aab3bf; display:grid; place-items:center; background:#fff; font-style:normal; }
.mt5-toolbar span { margin-left:5px; padding:4px 8px; border:1px solid #7d9c72; color:#1c6a25; background:#e9f4e7; }
.mt5-workspace { flex:1; min-height:0; display:grid; grid-template-columns:170px 1fr; grid-template-rows:1fr 116px; background:#dfe4eb; }
.mt5-left-panel { grid-row:1; grid-column:1; border-right:1px solid #9da8b5; display:grid; grid-template-rows:1.2fr .8fr; min-height:0; }
.mt5-pane { min-height:0; background:#fff; overflow:hidden; }
.mt5-pane + .mt5-pane { border-top:1px solid #9da8b5; }
.mt5-pane header { height:25px; padding:0 7px; display:flex; align-items:center; border-bottom:1px solid #b9c1cb; background:linear-gradient(#f8f8f8,#e2e5e9); font-size:11px; font-weight:bold; }
.mt5-table-head,.mt5-quote { display:grid; grid-template-columns:1.2fr .8fr .8fr; align-items:center; }
.mt5-table-head { height:22px; padding:0 5px; color:#5b6572; background:#f1f3f6; font-size:9px; }
.mt5-quote { min-height:25px; padding:0 5px; border-bottom:1px solid #eef0f3; font-size:9px; }
.mt5-quote strong { font-size:10px; }
.mt5-quote.up span { color:#1265c5; }
.mt5-quote.down span { color:#c53434; }
.navigator-pane ul { margin:0; padding:7px 8px; list-style:none; display:grid; gap:7px; font-size:10px; }
.mt5-chart-pane { position:relative; grid-column:2; grid-row:1; min-width:0; overflow:hidden; background:#fff; }
.mt5-chart-head { position:absolute; z-index:2; left:8px; top:6px; display:flex; gap:8px; color:#22314a; font-size:10px; }
.mt5-chart-head span { color:#5f6b7b; }
.mt5-candles { position:absolute; inset:26px 43px 7px 7px; width:calc(100% - 50px); height:calc(100% - 33px); }
.mt5-grid-lines path { fill:none; stroke:#e4e7eb; stroke-width:1; }
.mt5-bars path { fill:#166bc1; stroke:#166bc1; stroke-width:2; }
.mt5-bars .bear { fill:#db3e3e; stroke:#db3e3e; }
.mt5-ma-one { fill:none; stroke:#d49a1c; stroke-width:2.2; }
.mt5-ma-two { fill:none; stroke:#7c4db3; stroke-width:1.8; }
.mt5-price-scale { position:absolute; right:3px; top:35px; bottom:10px; display:flex; flex-direction:column; justify-content:space-between; color:#596575; font-size:8px; }
.mt5-toolbox { grid-column:1 / 3; grid-row:2; border-top:1px solid #929eab; background:#fff; overflow:hidden; }
.mt5-tool-tabs { height:25px; padding:0 7px; display:flex; align-items:center; gap:13px; border-bottom:1px solid #c5ccd5; background:#eceff3; font-size:9px; white-space:nowrap; }
.mt5-tool-tabs b { color:#125fae; }
.mt5-position-row { height:28px; padding:0 8px; display:grid; grid-template-columns:1.2fr .6fr .6fr .8fr .8fr .8fr; align-items:center; gap:6px; border-bottom:1px solid #edf0f3; font-size:9px; }
.mt5-position-row strong { color:#147544; text-align:right; }
.mt5-statusbar { height:23px; padding:0 8px; display:flex; align-items:center; justify-content:flex-end; gap:18px; border-top:1px solid #aeb7c3; background:#e9edf2; font-size:8px; }
.mtr-mockup { display: grid; place-items: center; background: radial-gradient(circle at 70% 25%, #2e6de2, transparent 35%), linear-gradient(145deg, #111a2b, #1d2c48); }
.mobile-device { position: relative; width: 280px; height: 510px; padding: 12px; border: 2px solid rgba(255,255,255,.22); border-radius: 42px; background: #070b13; box-shadow: 0 35px 80px rgba(0,0,0,.38); transform: rotate(4deg); }
.mobile-notch { position: absolute; left: 50%; top: 17px; width: 86px; height: 21px; transform: translateX(-50%); border-radius: 20px; background: #070b13; z-index: 2; }
.mobile-content { height: 100%; padding: 46px 18px 20px; border-radius: 31px; color: #fff; background: linear-gradient(160deg,#1b2b47,#0f1728); overflow: hidden; }
.mobile-head span, .mobile-head b, .mobile-head em { display: block; }
.mobile-head span { color: #8fa4c6; font: 700 11px Manrope, sans-serif; }
.mobile-head b { margin-top: 4px; font: 800 24px Manrope, sans-serif; }
.mobile-head em { color: #4fd19a; font: 800 11px Manrope, sans-serif; font-style: normal; }
.mobile-content svg { width: 100%; height: 180px; margin-top: 17px; overflow: visible; }
.mobile-content svg path { fill: none; stroke: #4b83ff; stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 5px 6px rgba(36,107,254,.4)); }
.mobile-price { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mobile-price span { padding: 12px 8px; border-radius: 12px; background: #e95761; text-align: center; font: 700 10px Manrope, sans-serif; }
.mobile-price span:last-child { background: #246bfe; }
.mobile-price b { font-size: 12px; }
.mobile-nav { margin-top: 25px; display: flex; justify-content: space-around; }
.mobile-nav i { width: 22px; height: 22px; border-radius: 8px; background: rgba(255,255,255,.10); }
.mobile-nav i:first-child { background: #246bfe; }
.mtr-floating-card { position: absolute; right: 38px; top: 92px; width: 190px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(14px); box-shadow: 0 22px 50px rgba(0,0,0,.25); animation: float 4s ease-in-out infinite; }
.mtr-floating-card small, .mtr-floating-card strong, .mtr-floating-card span { display: block; }
.mtr-floating-card small { color: #afbdd2; font-size: 10px; }
.mtr-floating-card strong { margin-top: 4px; font: 800 19px Manrope, sans-serif; }
.mtr-floating-card span { margin-top: 8px; color: #5be0a8; font: 800 11px Manrope, sans-serif; }

.steps-section { background: #fff; }
.steps-grid { position: relative; margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.steps-grid::before { content: ""; position: absolute; left: 12%; right: 12%; top: 49px; height: 1px; background: linear-gradient(90deg, transparent, #bed1f8 10%, #bed1f8 90%, transparent); }
.step-card { position: relative; min-height: 280px; padding: 24px; border: 1px solid #e1e7ef; border-radius: 23px; background: #fff; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.step-card:hover { transform: translateY(-7px); border-color: rgba(36,107,254,.3); box-shadow: var(--shadow-md); }
.step-number { color: #a4adba; font: 800 11px Manrope, sans-serif; letter-spacing: .1em; }
.step-icon { position: relative; z-index: 2; width: 52px; height: 52px; margin-top: 18px; border: 6px solid #fff; border-radius: 17px; display: grid; place-items: center; color: #fff; background: var(--primary); box-shadow: 0 10px 25px rgba(36,107,254,.25); font: 800 16px Manrope, sans-serif; }
.step-card h3 { margin: 28px 0 0; font-size: 20px; }
.step-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.steps-cta { margin-top: 24px; padding: 26px 30px; border: 1px solid #dfe7f2; border-radius: 23px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #f8faff; }
.steps-cta strong, .steps-cta span { display: block; }
.steps-cta strong { font-size: 18px; }
.steps-cta span { margin-top: 5px; color: var(--muted); font-size: 14px; }

.faq-section { background: #f7f9fc; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy .text-link { display: inline-block; margin-top: 28px; }
.accordion { border-top: 1px solid #dfe5ee; }
.accordion-item { border-bottom: 1px solid #dfe5ee; }
.accordion-button { width: 100%; padding: 25px 4px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; font-size: 18px; font-weight: 800; cursor: pointer; }
.accordion-button i { position: relative; flex: 0 0 auto; width: 30px; height: 30px; border: 1px solid #dce3ed; border-radius: 50%; background: #fff; }
.accordion-button i::before, .accordion-button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; border-radius: 2px; background: #526075; transform: translate(-50%,-50%); transition: transform .25s ease; }
.accordion-button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item.is-open .accordion-button i { color: #fff; border-color: var(--primary); background: var(--primary); }
.accordion-item.is-open .accordion-button i::before, .accordion-item.is-open .accordion-button i::after { background: #fff; }
.accordion-item.is-open .accordion-button i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion-content > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 50px 0 4px; color: var(--muted); }
.accordion-item.is-open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-content > p { padding-bottom: 26px; }

.final-cta-section { padding: 80px 0; background: #fff; }
.final-cta { position: relative; min-height: 420px; padding: 65px; border-radius: 32px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 50px; color: #fff; background: linear-gradient(135deg, #174fc5 0%, #246bfe 55%, #2c78ff 100%); box-shadow: 0 35px 90px rgba(36,107,254,.26); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -250px; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,255,255,.05); }
.final-cta-pattern { position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent 20%, #000); }
.final-copy, .final-actions { position: relative; z-index: 2; }
.final-copy h2 { margin: 18px 0 0; font-size: clamp(36px,4vw,58px); line-height: 1.18; letter-spacing: -.055em; }
.final-copy p { margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 16px; }
.final-benefits { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.final-benefits span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(255,255,255,.08); font-size: 12px; font-weight: 700; }
.final-actions { display: flex; flex-direction: column; gap: 12px; justify-self: end; width: min(100%, 300px); }

.site-footer { padding: 75px 0 110px; border-top: 1px solid #e4e9f1; background: #fafbfc; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr .7fr; gap: 42px; }
.footer-logos { display: flex; align-items: center; gap: 14px; }
.footer-logos img:first-child { width: 72px; height: 72px; object-fit: contain; }
.footer-logos img:last-child { width: 47px; height: 55px; object-fit: contain; }
.footer-logos span { width: 1px; height: 38px; background: #dce2eb; }
.footer-brand p { max-width: 320px; margin: 17px 0 0; color: #7b8594; font-size: 13px; }
.footer-info h3, .footer-links h3 { margin: 0 0 18px; font: 800 11px Manrope, sans-serif; letter-spacing: .12em; }
.footer-info p, .footer-links a { display: block; margin: 8px 0; color: #748092; font-size: 12px; line-height: 1.7; }
.footer-links a:hover { color: var(--primary); }
.risk-warning { margin-top: 45px; padding: 20px 22px; border: 1px solid #e2e7ef; border-radius: 16px; display: grid; grid-template-columns: 130px 1fr; gap: 20px; background: #fff; }
.risk-warning strong { color: #3e4b60; font-size: 13px; }
.risk-warning p { margin: 0; color: #858f9e; font-size: 11px; line-height: 1.75; }
.footer-bottom { margin-top: 25px; padding-top: 24px; border-top: 1px solid #e4e8ef; display: flex; justify-content: space-between; gap: 20px; color: #8b94a1; font-size: 11px; }
.footer-bottom div { display: flex; gap: 18px; }
.mobile-sticky-cta { display: none; }

.hero-reveal { opacity: 0; filter: blur(12px); transform: translateY(24px); animation: heroReveal .8s var(--delay,0s) cubic-bezier(.22,1,.36,1) forwards; }
.reveal { opacity: 0; transform: translateY(35px); filter: blur(6px); transition: opacity .7s var(--delay,0s) cubic-bezier(.22,1,.36,1), transform .7s var(--delay,0s) cubic-bezier(.22,1,.36,1), filter .7s var(--delay,0s) ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

@keyframes heroReveal { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadePoint { to { opacity: 1; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(26,188,123,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

@media (max-width: 1120px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 13px; }
  .hero-grid { gap: 30px; }
  .hero-visual { transform: scale(.92); transform-origin: center; }
  .chip-one { left: -10px; }
  .chip-two { right: -10px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
  .desktop-nav, .nav-actions .button { display: none; }
  .menu-button { display: block; }
  .nav-actions { min-width: auto; }
  .mobile-panel.is-open { display: grid; animation: fadePanel .25s ease both; }
  .hero { padding-top: 125px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .title-line { transform-origin: center; }
  .hero-description br { display: none; }
  .hero-offer, .hero-buttons, .hero-mini-points { justify-content: center; }
  .hero-visual { min-height: 560px; transform: none; }
  .terminal-card { transform: none; }
  .stats-bar { grid-template-columns: repeat(2,1fr); gap: 24px 0; }
  .stat-divider { display: none; }
  .section { padding: 100px 0; }
  .comparison-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .comparison-copy { text-align: center; }
  .comparison-copy > p { margin-left: auto; margin-right: auto; }
  .comparison-highlights { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; }
  .platform-panel.is-active { grid-template-columns: 1fr; }
  .platform-copy { padding: 45px; }
  .platform-mockup { min-height: 520px; }
  .mt5-mockup { margin: 0 20px 20px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .faq-copy { position: static; text-align: center; }
  .final-cta { grid-template-columns: 1fr; }
  .final-actions { justify-self: start; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 22px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding: 7px 7px 0; }
  .nav-shell { min-height: 60px; padding: 7px 8px 7px 12px; border-radius: 16px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img:first-child { width: 38px; height: 38px; }
  .brand-ccl { width: 30px; height: 32px; }
  .brand-divider { height: 24px; }
  .hero { padding-top: 108px; }
  .hero-title { font-size: clamp(36px, 9.5vw, 52px); line-height: 1.05; }
  .title-line-long { font-size:.72em; }
  .title-line { white-space: normal; }
  .hero-description { font-size: 16px; }
  .hero-offer { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero-mini-points { max-width: 330px; margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 500px; margin-top: -20px; }
  .terminal-card { min-height: 410px; padding: 17px; border-radius: 23px; }
  .terminal-top { align-items: flex-start; }
  .live-chip { font-size: 8px; }
  .quote-row { margin-top: 25px; }
  .quote-row strong { font-size: 27px; }
  .chart-wrap { height: 180px; }
  .trade-panel { grid-template-columns: 1fr 72px 72px; padding: 10px; }
  .trade-button { height: 43px; }
  .floating-chip { min-width: 155px; padding: 10px; }
  .chip-one { left: -10px; top: 35px; }
  .chip-two { right: -8px; top: 170px; }
  .chip-three { left: 10px; bottom: 24px; }
  .stats-bar { margin-top: 20px; padding: 24px 12px; border-radius: 20px; }
  .stat-item { flex-direction: column; gap: 1px; text-align: center; }
  .stat-item strong { font-size: 24px; }
  .section { padding: 80px 0; }
  .section-heading h2, .comparison-copy h2, .faq-copy h2 { font-size: 38px; }
  .section-heading p, .comparison-copy > p, .faq-copy > p { font-size: 15px; }
  .trust-grid, .benefit-grid, .steps-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 355px; }
  .benefit-card { min-height: 300px; }
  .comparison-board { padding: 14px; border-radius: 23px; }
  .comparison-tabs { grid-template-columns: 1fr; }
  .comparison-content.is-active { grid-template-columns: 1fr; gap: 10px; }
  .comparison-column { min-height: 200px; }
  .versus { margin: -5px auto; }
  .market-card { width: 260px; min-height:372px; }
  .market-card-inner { min-height:372px; }
  .platform-tabs { width: 100%; }
  .platform-tab { min-width: 0; flex: 1; padding: 0 8px; font-size: 12px; }
  .platform-copy { padding: 32px 24px 38px; }
  .platform-copy h3 { font-size: 34px; }
  .platform-actions { align-items: stretch; flex-direction: column; }
  .platform-actions .button { width: 100%; }
  .platform-mockup { min-height: 460px; }
  .mt5-mockup { margin: 0 10px 10px; padding:8px; }
  .mt5-workspace { grid-template-columns:130px 1fr; }
  .mt5-menubar { gap:10px; }
  .mt5-tool-tabs { gap:7px; }
  .mtr-floating-card { right: 10px; top: 45px; transform: scale(.84); transform-origin: right top; }
  .steps-cta { align-items: stretch; flex-direction: column; }
  .accordion-button { font-size: 16px; }
  .final-cta { min-height: 0; padding: 42px 24px; border-radius: 25px; }
  .final-copy h2 { font-size: 38px; }
  .final-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .risk-warning { grid-template-columns: 1fr; gap: 8px; }
  .footer-bottom { padding-bottom: 20px; flex-direction: column; }
  .mobile-sticky-cta { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 90; padding: 7px; border: 1px solid #dce3ed; border-radius: 17px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 6px; background: rgba(255,255,255,.94); box-shadow: 0 16px 45px rgba(31,52,92,.2); backdrop-filter: blur(14px); }
  .mobile-sticky-cta a { min-height: 46px; border-radius: 12px; display: grid; place-items: center; color: #4c596c; font-size: 13px; font-weight: 800; }
  .mobile-sticky-cta .primary { color: #fff; background: var(--primary); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-reveal { opacity: 1; filter: none; transform: none; }
  .market-track { animation: none; }
}

.hero-tagline { display:none; }

.comparison-title { display:flex; flex-direction:column; align-items:center; line-height:1.15!important; }
.comparison-title span { display:block; color:inherit!important; font:inherit; }

/* final exact line and label alignment */
.hero-label-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.hero-label,
.hero-partner-label { min-height:34px; padding:0 15px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font:800 11px/1 Manrope,sans-serif; letter-spacing:.16em; white-space:nowrap; }
.hero-label { color:#c97700; border:1px solid #f2bd65; background:#fff8eb; }
.hero-partner-label { color:#526075; border:1px solid #d5deea; background:#fff; }
.comparison-title { font-size:clamp(24px,2.45vw,34px)!important; }
.comparison-title span { white-space:nowrap; }
@media (max-width:640px) {
  .comparison-title span { white-space:normal; }
  .hero-label,.hero-partner-label { min-height:31px; padding:0 12px; font-size:10px; }
}

/* ===== layout repair v4 ===== */
.hero-title.hero-title-en {
  max-width: 660px;
  font-size: clamp(38px, 3.65vw, 56px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero-title.hero-title-en .title-line-long {
  font-size: .72em;
  letter-spacing: -.025em;
}
.chart-wrap {
  transform: none !important;
  transition: none !important;
}

.benefits-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.benefits-grid .benefit-card {
  min-height: 300px;
}

.platform-heading {
  max-width: 560px;
  font-size: clamp(30px, 2.75vw, 44px) !important;
  line-height: 1.12 !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.platform-heading span {
  display: block;
  white-space: nowrap;
}

.contact-section {
  padding: 116px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.contact-shell {
  padding: 52px;
  border: 1px solid #e1e7f0;
  border-radius: 32px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 46px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 52, 92, .09);
}
.contact-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.12;
  letter-spacing: -.055em;
}
.contact-intro .heading-line {
  display: block;
  white-space: nowrap;
}
.contact-intro > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.contact-manager {
  margin-top: 28px;
  padding: 14px 16px 14px 14px;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #f8faff;
}
.manager-avatar {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #174fc5, #246bfe);
  font: 800 14px/1 Manrope, sans-serif;
}
.contact-manager strong,
.contact-manager small {
  display: block;
}
.contact-manager strong {
  font-size: 16px;
}
.contact-manager small {
  margin-top: 3px;
  color: #748095;
  font-size: 12px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  min-height: 165px;
  padding: 22px;
  border: 1px solid #e1e7f0;
  border-radius: 22px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 52, 92, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36,107,254,.3);
  box-shadow: 0 22px 45px rgba(31,52,92,.11);
}
.contact-card-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font: 800 13px/1 Manrope, sans-serif;
}
.contact-card.kakao .contact-card-icon { color: #382f00; background: #fee500; }
.contact-card.phone .contact-card-icon { color: #fff; background: #246bfe; }
.contact-card.id-card .contact-card-icon { color: #6948d8; background: #f2ecff; }
.contact-card.youtube .contact-card-icon { color: #fff; background: #ff3b4d; }
.contact-card small,
.contact-card strong,
.contact-card em {
  display: block;
}
.contact-card small {
  color: #7b8698;
  font-size: 12px;
  font-weight: 700;
}
.contact-card strong {
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.03em;
}
.contact-card em {
  margin-top: 14px;
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-intro .heading-line {
    white-space: normal;
  }
}

@media (max-width: 920px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .platform-heading span {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero-title.hero-title-en {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
  }
  .hero-title.hero-title-en .title-line-long {
    font-size: .78em;
  }
  .benefits-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-shell {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .contact-intro h2 {
    font-size: 37px;
  }
}

/* ===== requested header branding + mobile hero fit only ===== */
.brand-mark {
  position: relative;
  isolation: isolate;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 24px rgba(36, 107, 254, 0.16);
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.12;
}
.brand-copy strong {
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand-copy small {
  margin-top: 3px;
  color: #68758a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 11px;
  }
  .brand-mark::after {
    width: 21px;
    height: 16px;
  }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { margin-top: 2px; font-size: 9px; }

  /* Keep the desktop hero and all animations untouched; only prevent mobile overflow/cropping. */
  .hero,
  .hero-grid,
  .hero-copy,
  .hero-visual {
    min-width: 0;
    max-width: 100%;
  }
  .hero {
    overflow-x: clip;
  }
  .hero-grid {
    width: 100%;
  }
  .hero-title.hero-title-en,
  .hero-title.hero-title-en .title-line {
    width: 100%;
    max-width: 100%;
  }
  .hero-title.hero-title-en .title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-visual {
    width: 100%;
    padding-inline: 4px;
    box-sizing: border-box;
  }
  .terminal-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .terminal-top,
  .quote-row,
  .chart-wrap,
  .trade-panel {
    min-width: 0;
    max-width: 100%;
  }
  .floating-chip {
    max-width: calc(100% - 20px);
    box-sizing: border-box;
  }
  .chip-one { left: 0; }
  .chip-two { right: 0; }
  .chip-three { left: 0; }
}

/* =========================================================
   NJ 상담 신청 하단바 — 관리자/API 연동 전용
   기존 랜딩 섹션과 애니메이션에는 영향을 주지 않습니다.
   ========================================================= */
body {
  padding-bottom: 146px;
}

.inquiry-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(10,14,20,.965) 0%, rgba(4,7,11,.995) 100%);
  box-shadow: 0 -18px 46px rgba(4,8,15,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.inquiry-dock-toggle {
  display: none;
}

.inquiry-dock-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0 11px;
}

.inquiry-dock-title {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.inquiry-form {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(410px, 1fr) auto auto;
  align-items: center;
  gap: 9px;
}

.inquiry-input {
  width: 100%;
  height: 43px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.045);
  font: 700 14px/1 "Pretendard Variable", Pretendard, sans-serif;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.inquiry-input::placeholder {
  color: rgba(255,255,255,.34);
}

.inquiry-input:focus {
  border-color: rgba(255,166,36,.72);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 3px rgba(255,150,24,.10);
}

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

.inquiry-phone .inquiry-input {
  text-align: center;
}

.inquiry-submit {
  height: 43px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #ff6d00;
  box-shadow: 0 0 22px rgba(255,108,0,.28);
  font: 900 14px/1 "Pretendard Variable", Pretendard, sans-serif;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.inquiry-submit:hover {
  transform: translateY(-1px);
  background: #ff8420;
}

.inquiry-submit:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.inquiry-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inquiry-link {
  min-height: 37px;
  padding: 0 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.inquiry-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.inquiry-link.kakao {
  color: #181300;
  background: #fee500;
}

.inquiry-link.phone {
  color: #fff;
  background: #ff6d00;
}

.inquiry-link.youtube {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
}

.inquiry-dock-meta {
  margin: 9px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.45;
}

.inquiry-dock-meta a,
.inquiry-dock-meta b {
  color: #fff;
  font-weight: 900;
}

.inquiry-status {
  margin-left: 9px;
  color: #9be8c8;
  font-weight: 800;
}

.inquiry-status.is-error {
  color: #ff9f9f;
}

.inquiry-honeypot {
  position: fixed !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1180px) {
  .inquiry-form {
    grid-template-columns: 150px minmax(360px, 1fr) auto;
  }

  .inquiry-links {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .inquiry-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(5,11,23,.32);
  }

  .inquiry-dock-toggle {
    width: 100%;
    min-height: 60px;
    padding: 10px 16px;
    border: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    color: #fff;
    background: transparent;
  }

  .inquiry-dock-toggle span {
    font-size: 15px;
    font-weight: 900;
  }

  .inquiry-dock-toggle small {
    margin-top: 2px;
    color: rgba(255,255,255,.46);
    font-size: 11px;
  }

  .inquiry-dock-toggle i {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 11px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(225deg);
    transition: transform .22s ease;
  }

  .inquiry-dock.is-open .inquiry-dock-toggle i {
    transform: rotate(45deg);
  }

  .inquiry-dock-inner {
    display: none;
    width: 100%;
    padding: 3px 13px 14px;
  }

  .inquiry-dock.is-open .inquiry-dock-inner {
    display: block;
  }

  .inquiry-dock-title {
    margin: 3px 2px 10px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inquiry-input,
  .inquiry-submit {
    height: 45px;
  }

  .inquiry-phone {
    gap: 7px;
  }

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

  .inquiry-link {
    min-height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }

  .inquiry-dock-meta {
    margin: 9px 2px 0;
    font-size: 10px;
  }

  .inquiry-status {
    width: 100%;
    margin: 4px 0 0;
  }
}

/* ===== Trust card image replacement ===== */
.trust-art {
  height: 220px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #eef3ff, #f9fbff);
}

.trust-art::before,
.trust-art::after,
.trust-art span::before,
.trust-art span::after {
  display: none;
  content: none;
}

.trust-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===== NJ logo image overrides ===== */
.manager-avatar,
.brand-mark.small {
  overflow: hidden;
  background: transparent;
  color: transparent;
  font-size: 0;
}

.manager-avatar::before,
.manager-avatar::after,
.brand-mark.small::before,
.brand-mark.small::after {
  display: none;
}

.manager-avatar img,
.brand-mark.small img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

