:root {
  --bg: #060d20;
  --panel: #0a2244;
  --panel-deep: #021832;
  --ink: #f2f7ff;
  --muted: #9db9da;
  --blue: #1e87f5;
  --blue-bright: #48b4ff;
  --gold: #e8c47a;
  --line: #2b86e6;
  --maxw: 1160px;
  --hero-image: none;
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-account-page="demo"] { --hero-image: url("demo-account-banner.jpg"); }
body[data-account-page="stp"] { --hero-image: url("stp-account-banner.jpg"); }
body[data-account-page="ecn"] { --hero-image: url("ecn-account-banner.jpg"); }
body[data-account-page="pamm-mam"] { --hero-image: url("pamm-mam-banner.jpg"); }
body[data-account-page="vps"] { --hero-image: url("vps-banner.jpg"); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: #060d20 url("page-background.png") center top / 100% 100% no-repeat;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(calc(100% - 48px), var(--maxw)); margin-inline: auto; }

.site-header { position: sticky; top: 18px; z-index: 60; height: 0; pointer-events: none; }
.site-nav {
  position: relative;
  width: min(calc(100% - 48px), 1360px);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px 0 26px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(4,16,34,.78);
  box-shadow: 0 18px 54px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 215px; max-height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 16px; color: #c7d8ef; }
.nav-item { position: static; display: flex; align-items: center; }
.nav-item > a, .nav-links > a { min-height: 68px; display: flex; align-items: center; gap: 6px; font-weight: 600; opacity: .86; }
.nav-item > a:hover, .nav-links > a:hover, .nav-item > a.active { color: #fff; opacity: 1; }
.chev { width: 11px; height: 11px; opacity: .62; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.language { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.06); color: #c7d8ef; }
.language svg { width: 20px; height: 20px; }
.btn { min-height: 44px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; color: #fff; font-weight: 700; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg,#39a7ff,#1688f8); box-shadow: 0 14px 38px rgba(22,136,248,.35); }
.btn-primary:hover { box-shadow: 0 18px 46px rgba(22,136,248,.5); }
.btn-ghost { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.055); }
.nav-right .btn { min-height: 40px; padding-inline: 21px; }

.mega {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-height: 405px;
  padding: 104px max(46px, calc((100vw - 1360px)/2 + 24px)) 42px;
  border-block: 1px solid rgba(120,180,240,.16);
  background: linear-gradient(180deg,rgba(4,16,34,.94),rgba(4,14,30,.8)), radial-gradient(circle at 78% 26%,rgba(72,180,255,.2),transparent 34%);
  box-shadow: 0 28px 78px rgba(0,0,0,.36), inset 0 -1px 0 rgba(120,180,240,.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  pointer-events: none;
  transition: .22s ease;
}
.mega::before { content: ""; position: absolute; inset: 0 0 auto; height: 112px; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.mega-inner { position: relative; display: grid; grid-template-columns: minmax(330px,430px) 1fr; gap: 70px; max-width: 1360px; margin: auto; }
.mega-promo { padding: 10px 0 0 120px; }
.mega-promo h3 { max-width: 390px; font-size: 32px; font-weight: 300; line-height: 1.38; }
.mega-actions { display: flex; gap: 14px; margin-top: 30px; }
.mega-actions .btn { min-height: 46px; border-radius: 8px; }
.mega-grid { display: grid; grid-template-columns: repeat(3,minmax(120px,1fr)); gap: 50px 56px; align-content: start; }
.mega.account .mega-grid { grid-template-columns: 170px 130px 120px; }
.mega-col { display: grid; align-content: start; gap: 9px; }
.mega-col h4 { margin-bottom: 9px; font-size: 18px; font-weight: 600; }
.mega-col a { padding: 4px 0; color: rgba(219,233,251,.65); font-size: 14px; white-space: nowrap; }
.mega-col a:hover, .mega-col a.current { color: #fff; }
.mega-col.offset { padding-top: 37px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); color: #c7d8ef; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: auto; border-radius: 99px; background: currentColor; box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor; }
.mobile-panel { display: none; }

.account-hero {
  position: relative;
  min-height: 610px;
  margin-top: 0;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(120,180,240,.13);
  background-image:
    linear-gradient(90deg,rgba(4,14,31,.96) 0%,rgba(4,14,31,.8) 46%,rgba(4,14,31,.34) 100%),
    linear-gradient(180deg,rgba(3,13,32,.08),#060d20 100%),
    var(--hero-image),
    radial-gradient(circle at 82% 42%,rgba(34,130,245,.22),transparent 34%),
    linear-gradient(135deg,#07172f,#061026 58%,#07182f);
  background-position: center;
  background-size: cover;
}
.account-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,transparent 0 64%,rgba(72,180,255,.035) 64% 64.15%,transparent 64.15%); pointer-events: none; }
.account-hero::after { content: ""; position: absolute; left: 50%; bottom: 0; width: min(980px,86vw); height: 1px; background: linear-gradient(90deg,transparent,rgba(88,183,255,.58),transparent); transform: translateX(-50%); }
.hero-copy { position: relative; z-index: 1; max-width: 760px; padding-top: 86px; }
.eyebrow { display: none; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px rgba(232,196,122,.7); }
h1,h2,h3 { line-height: 1.22; letter-spacing: -.025em; }
h1 { max-width: 820px; font-size: clamp(46px,5.3vw,76px); font-weight: 500; }
.hero-lead { max-width: 650px; margin-top: 24px; color: #b8d3f5; font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-image-note { display: none; }

.section { position: relative; padding: 96px 0; }
.section.alt { background: linear-gradient(180deg,rgba(7,22,44,.14),rgba(8,22,42,.5)); }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px,4.4vw,52px); font-weight: 500; }
.section-head p { margin-top: 20px; color: var(--muted); font-size: 17px; line-height: 1.95; }
.intro-panel { position: relative; overflow: hidden; padding: 50px 54px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg,var(--panel),var(--panel-deep)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 28px 72px rgba(0,10,28,.25); }
.intro-panel::before { content: ""; position: absolute; top: -140px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(72,180,255,.16),transparent 68%); }
.intro-panel > * { position: relative; }
.intro-panel h2 { font-size: clamp(34px,4vw,48px); font-weight: 500; }
.intro-panel p { max-width: 980px; margin-top: 22px; color: #afc8e8; font-size: 17px; line-height: 2; }
.intro-panel.intro-panel--plain {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}
.intro-panel.intro-panel--plain::before { display: none; }
.intro-panel.intro-panel--plain p { margin-inline: auto; }

.advantage-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.advantage-card { position: relative; min-height: 214px; padding: 34px 34px 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(180deg,var(--panel),var(--panel-deep)); transition: transform .25s ease, box-shadow .25s ease; }
.advantage-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,20,54,.44); }
.advantage-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 0,rgba(72,180,255,.13),transparent 42%); pointer-events: none; }
.card-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.icon { flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(232,196,122,.58); border-radius: 50%; color: var(--gold); background: linear-gradient(155deg,rgba(244,221,164,.2),rgba(202,161,78,.07)); box-shadow: 0 10px 26px rgba(176,134,52,.18); }
.icon svg { width: 25px; height: 25px; }
.advantage-card h3 { font-size: 24px; font-weight: 500; }
.advantage-card p { position: relative; z-index: 1; padding-left: 74px; color: rgba(187,207,232,.78); font-size: 16px; line-height: 1.85; }
.advantage-card p.no-wrap-copy { white-space: nowrap; }
.advantage-grid.five .advantage-card:last-child { grid-column: 1 / -1; min-height: 180px; }

/* ECN advantages: one connected five-column feature rail on desktop. */
body[data-account-page="ecn"] .advantage-grid.five {
  counter-reset: ecn-advantage;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(43,134,230,.58);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -28%,rgba(72,180,255,.18),transparent 44%),
    linear-gradient(180deg,rgba(8,31,62,.82),rgba(2,17,38,.92));
  box-shadow: 0 30px 80px rgba(0,10,31,.34),inset 0 1px 0 rgba(255,255,255,.055);
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card {
  counter-increment: ecn-advantage;
  min-width: 0;
  min-height: 310px;
  padding: 32px 22px 28px;
  border: 0;
  border-right: 1px solid rgba(72,180,255,.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card:last-child {
  grid-column: auto;
  min-height: 310px;
  border-right: 0;
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card::before {
  content: "0" counter(ecn-advantage);
  position: absolute;
  top: 23px;
  right: 19px;
  z-index: 1;
  color: rgba(109,180,248,.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card::after {
  opacity: .45;
  background:
    linear-gradient(180deg,rgba(72,180,255,.075),transparent 34%),
    radial-gradient(circle at var(--card-x,50%) var(--card-y,0%),rgba(72,180,255,.16),transparent 48%);
  transition: opacity .28s ease,background-color .28s ease;
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card:hover {
  z-index: 1;
  transform: none;
  background: rgba(19,67,119,.22);
  box-shadow: inset 0 0 0 1px rgba(72,180,255,.26),0 18px 42px rgba(0,14,40,.22);
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card:hover::after { opacity: 1; }
body[data-account-page="ecn"] .advantage-grid.five .card-top {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-bottom: 17px;
}
body[data-account-page="ecn"] .advantage-grid.five .icon {
  width: 58px;
  height: 58px;
  box-shadow: 0 0 0 7px rgba(232,196,122,.035),0 12px 28px rgba(176,134,52,.16);
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card h3 {
  min-height: 2.5em;
  font-size: clamp(18px,1.28vw,21px);
  line-height: 1.25;
}
body[data-account-page="ecn"] .advantage-grid.five .advantage-card p {
  padding-left: 0;
  font-size: 14px;
  line-height: 1.78;
}

.process {
  --process-line-scale: 1;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  padding: 86px 28px 34px;
  border: 1px solid rgba(43,134,230,.5);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -18%,rgba(72,180,255,.2),transparent 42%),
    repeating-linear-gradient(90deg,transparent 0 62px,rgba(72,180,255,.022) 63px 64px),
    linear-gradient(180deg,rgba(8,31,62,.76),rgba(2,17,38,.9));
  box-shadow: 0 30px 80px rgba(0,10,31,.36),inset 0 1px 0 rgba(255,255,255,.055),inset 0 0 70px rgba(30,135,245,.055);
}
.process::before {
  content: "";
  position: absolute;
  top: 84px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg,rgba(30,135,245,.12),#2d91f4 14%,#e8c47a 50%,#2d91f4 86%,rgba(30,135,245,.12));
  box-shadow: 0 0 12px rgba(72,180,255,.58),0 0 30px rgba(30,135,245,.2);
  transform: scaleX(var(--process-line-scale));
  transform-origin: left center;
}
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(118deg,transparent 0 46%,rgba(72,180,255,.055) 49%,transparent 52% 100%);
  pointer-events: none;
}
.process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 210px;
  padding: 42px 23px 28px;
  overflow: visible;
  border: 1px solid rgba(72,180,255,.3);
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0,rgba(72,180,255,.11),transparent 42%),linear-gradient(160deg,rgba(10,39,76,.95),rgba(2,20,43,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055),0 18px 34px rgba(0,12,35,.26);
  transition: transform .28s ease,border-color .28s ease,box-shadow .28s ease,background .28s ease;
}
.process-step::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg,rgba(72,180,255,.42),transparent);
  opacity: .55;
}
.process-step::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(232,196,122,.8);
  border-right: 1px solid rgba(232,196,122,.8);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 7px rgba(232,196,122,.4));
}
.process-step:last-child::after { display: none; }
.process-step:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(72,180,255,.76);
  background: radial-gradient(circle at 50% 0,rgba(72,180,255,.2),transparent 46%),linear-gradient(160deg,rgba(12,48,91,.98),rgba(2,23,49,.96));
  box-shadow: 0 25px 55px rgba(0,21,58,.48),0 0 0 1px rgba(72,180,255,.08),inset 0 1px 0 rgba(255,255,255,.09);
}
.step-no {
  position: absolute;
  top: -71px;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,196,122,.72);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 38%,rgba(72,180,255,.42),rgba(8,34,67,.98) 58%,#03162f 100%);
  box-shadow: 0 0 0 7px rgba(30,135,245,.09),0 0 0 8px rgba(72,180,255,.18),0 0 28px rgba(30,135,245,.54),inset 0 1px 0 rgba(255,255,255,.2);
  color: #f2cf86;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  transform: translateX(-50%);
  transition: box-shadow .28s ease,transform .28s ease,border-color .28s ease;
}
.step-no::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 15px;
  background: linear-gradient(#e8c47a,rgba(72,180,255,.2));
}
.process-step:hover .step-no { border-color: #f2d591; box-shadow: 0 0 0 8px rgba(30,135,245,.12),0 0 36px rgba(72,180,255,.72),inset 0 1px 0 rgba(255,255,255,.24); transform: translateX(-50%) scale(1.06); }
.process-step h3 { margin: 0; color: #f4f8ff; font-size: clamp(20px,1.45vw,24px); font-weight: 500; }
.process-step p { margin-top: 15px; padding-bottom: 14px; color: rgba(187,207,232,.72); font-size: 14.5px; line-height: 1.78; }
.process.three { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.process.four { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.process.three .process-step { min-height: 220px; }

/* Match the About page's closing CTA and illuminated footer transition. */
main:has(> .closing:last-child) {
  position: relative;
  isolation: isolate;
  background: none;
}
main:has(> .closing:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 48.8194vw;
  pointer-events: none;
  background:
    linear-gradient(180deg,rgba(3,13,32,.18),rgba(3,18,42,.34)) center / 100% 100% no-repeat,
    url("inner-page-footer-bg.png") center bottom / 100% auto no-repeat;
  -webkit-mask-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.18) 10%,#000 28%);
  mask-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.18) 10%,#000 28%);
}
.closing {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(360px,29.583vw,460px);
  margin: 0;
  padding: 48px 0;
  background: none;
}
.closing > .wrap { padding-inline: 0; }
.closing-box {
  position: relative;
  min-height: 240px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #2b86e6;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg,#0a2244,#021832);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .25s,box-shadow .25s,transform .25s;
}
.closing-box:hover {
  border-color: #2b86e6;
  box-shadow: 0 18px 52px rgba(0,18,44,.42),inset 0 1px 0 rgba(255,255,255,.055);
  transform: translateY(-4px);
}
.closing-box h2 { max-width: 800px; font-size: clamp(34px,4vw,48px); font-weight: 500; white-space: pre-line; }
.closing-box p { max-width: 660px; margin: 16px auto 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.closing-box .btn { margin-top: 30px; }
.closing-box p + .btn { margin-top: 26px; }
main:has(> .closing:last-child) + [data-site-footer] .site-footer { margin-top: 0; }

.site-footer { margin-top: 70px; padding: 78px 0 34px; border-top: 1px solid rgba(255,255,255,.07); background: linear-gradient(180deg,rgba(3,11,22,0),rgba(3,11,22,.84)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 34px; }
.footer-brand img { width: 210px; }
.footer-col h4 { margin-bottom: 16px; color: #58b7ff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; list-style: none; }
.footer-col a { color: #b8cbe6; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.risk { margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); }
.risk p { margin-top: 8px; color: rgba(157,185,218,.58); font-size: 12px; line-height: 1.8; }
.copyright { margin-top: 18px !important; }

.reveal { opacity: 1; transform: none; }
.notice-toast { position: fixed; left: 50%; bottom: 30px; z-index: 100; max-width: calc(100% - 32px); padding: 13px 20px; border: 1px solid rgba(72,180,255,.45); border-radius: 999px; background: rgba(4,16,34,.94); box-shadow: 0 18px 48px rgba(0,0,0,.4); color: #dceeff; font-size: 14px; opacity: 0; transform: translate(-50%,16px); pointer-events: none; transition: .25s ease; }
.notice-toast.show { opacity: 1; transform: translate(-50%,0); }

/* Account-page motion hooks. GSAP adds these classes only while animating. */
.is-animating { will-change: transform,opacity; }
.process.is-line-animating::before { will-change: transform; }
.account-motion-ready .advantage-card::after {
  background: radial-gradient(circle at var(--card-x,10%) var(--card-y,0%),rgba(72,180,255,.15),transparent 42%);
  transition: opacity .25s ease;
}
.account-motion-ready .advantage-card:hover::after { opacity: 1; }

@media (max-width: 1100px) {
  .nav-right .language, .nav-right .btn-ghost { display: none; }
  .mega-promo { padding-left: 40px; }
  .process,.process.three,.process.four { grid-template-columns: 1fr; gap: 18px; padding: 24px 24px 24px 78px; overflow: visible; }
  .process::before { top: 48px; right: auto; bottom: 48px; left: 38px; width: 2px; height: auto; background: linear-gradient(180deg,rgba(30,135,245,.12),#2d91f4 14%,#e8c47a 50%,#2d91f4 86%,rgba(30,135,245,.12)); }
  .process::before { transform: scaleY(var(--process-line-scale)); transform-origin: center top; }
  .process-step,.process.three .process-step { min-height: 0; padding: 28px 28px 29px; }
  .process-step::after { display: none; }
  .step-no { top: 24px; left: -69px; width: 52px; height: 52px; transform: none; }
  .step-no::after { display: none; }
  .process-step:hover .step-no { transform: scale(1.06); }
  body[data-account-page="ecn"] .advantage-grid.five {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card,
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card:last-child {
    min-height: 270px;
    border: 1px solid rgba(43,134,230,.58);
    border-radius: 16px;
    background: linear-gradient(180deg,rgba(8,31,62,.82),rgba(2,17,38,.92));
  }
}

@media (max-width: 820px) {
  .banner-copy-break { display: none; }
  .wrap { width: min(calc(100% - 36px), var(--maxw)); }
  .site-header { top: 10px; }
  .site-nav { width: calc(100% - 24px); min-height: 58px; padding: 0 12px 0 18px; border-radius: 18px; }
  .brand img { width: 160px; }
  .mobile-sub { display: grid; gap: 4px; padding: 0 14px 12px; }
  .mobile-sub a { padding: 8px 12px; color: #8eafd2; font-size: 14px; }
  .mobile-sub a.current { color: #fff; }
  .account-hero { min-height: 560px; background-image: linear-gradient(180deg,rgba(4,14,31,.62),rgba(4,14,31,.9)),var(--hero-image),radial-gradient(circle at 70% 35%,rgba(34,130,245,.22),transparent 42%),linear-gradient(135deg,#07172f,#061026); }
  .hero-copy { padding-top: 64px; }
  h1 { font-size: clamp(39px,9vw,58px); }
  .section { padding: 74px 0; }
  .intro-panel { padding: 40px 34px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid.five .advantage-card:last-child { grid-column: auto; }
  body[data-account-page="ecn"] .advantage-grid.five { grid-template-columns: 1fr; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card,
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card:last-child {
    min-height: 0;
    padding: 25px 24px 24px;
  }
  body[data-account-page="ecn"] .advantage-grid.five .card-top {
    grid-template-columns: 54px minmax(0,1fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
  }
  body[data-account-page="ecn"] .advantage-grid.five .icon { width: 54px; height: 54px; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card h3 { min-height: 0; font-size: 21px; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card p { padding-left: 72px; }
  .process, .process.three, .process.four { gap: 16px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* 七个中文一级栏目在 1280px 以下排不进胶囊，会逐字折行，
   所以在这里就收起成汉堡菜单（与站点其余页面一致） */
@media (max-width: 1280px) {
  .nav-links, .nav-right { display: none; }
  .menu-toggle { display: grid; margin-left: auto; place-items: center; }
  .mobile-panel { position: absolute; top: 70px; left: 0; right: 0; max-height: calc(100vh - 92px); overflow: auto; display: none; padding: 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(4,16,34,.97); box-shadow: 0 24px 58px rgba(0,0,0,.45); }
  .site-nav.open .mobile-panel { display: block; }
  .mobile-panel > a, .mobile-panel summary { display: block; padding: 13px 12px; color: #d7e6f8; cursor: pointer; list-style: none; }
  .mobile-panel summary::-webkit-details-marker { display: none; }
  .mobile-panel summary::after { content: "+"; float: right; color: #78bfff; }
  .mobile-panel details[open] summary::after { content: "–"; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 32px); }
  .account-hero { min-height: 520px; }
  .hero-copy { padding-top: 70px; }
  h1 { font-size: 39px; line-height: 1.3; }
  .hero-lead { margin-top: 18px; font-size: 15.5px; }
  .section { padding: 62px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .intro-panel h2 { font-size: 32px; }
  .section-head p, .intro-panel p { font-size: 15px; line-height: 1.85; }
  .intro-panel { padding: 32px 22px; border-radius: 12px; }
  .advantage-card { min-height: 0; padding: 26px 22px; }
  .card-top { gap: 16px; }
  .icon { width: 50px; height: 50px; }
  .advantage-card h3 { font-size: 20px; }
  .advantage-card p { padding-left: 0; font-size: 14.5px; }
  .advantage-card p.no-wrap-copy { font-size: clamp(10.5px,3.35vw,14.5px); }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card,
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card:last-child { padding: 22px 20px 21px; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card::before { top: 17px; right: 16px; }
  body[data-account-page="ecn"] .advantage-grid.five .card-top { grid-template-columns: 50px minmax(0,1fr); gap: 15px; }
  body[data-account-page="ecn"] .advantage-grid.five .icon { width: 50px; height: 50px; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card h3 { padding-right: 24px; font-size: 20px; }
  body[data-account-page="ecn"] .advantage-grid.five .advantage-card p { padding-left: 65px; font-size: 14px; line-height: 1.72; }
  .process,.process.three,.process.four { padding: 20px 14px 20px 64px; border-radius: 20px; }
  .process::before { left: 31px; }
  .process-step, .process.three .process-step { min-height: 0; padding: 24px 21px 25px; }
  .step-no { top: 22px; left: -57px; width: 46px; height: 46px; font-size: 12px; }
  .process-step h3 { font-size: 20px; }
  .process-step p { margin-top: 10px; font-size: 14px; }
  main:has(> .closing:last-child)::before { height: 430px; background-size: 100% 100%,auto 430px; }
  .closing { min-height: 430px; padding: 64px 0; }
  .closing-box { min-height: 220px; padding: 40px 20px; border-radius: 24px; }
  .closing-box p { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Unified site header: kept in lockstep with the home page navigation. */
[data-site-header] {
  position: sticky;
  top: 18px;
  z-index: 60;
  height: 0;
  pointer-events: none;
}
[data-site-header] header {
  position: static;
  height: 0;
  background: transparent;
  pointer-events: none;
}
[data-site-header] nav {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: 1360px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px 0 26px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(4,16,34,.76);
  box-shadow: 0 18px 54px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}
[data-site-header] .logo { display: flex; align-items: center; flex: 0 0 auto; }
[data-site-header] .nav-logo-img { width: 215px; height: auto; max-height: 48px; object-fit: contain; }
[data-site-header] .nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 8px;
  color: #c7d8ef;
  font-family: var(--font);
  font-size: 16px;
}
[data-site-header] .nav-links > a,
[data-site-header] .nav-item > a {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-weight: 600;
  opacity: .86;
}
[data-site-header] .nav-links a:hover,
[data-site-header] .nav-links a.active { color: #fff; opacity: 1; }
[data-site-header] .nav-links svg {
  width: 11px;
  height: 11px;
  opacity: .62;
  transition: transform .28s ease,opacity .28s ease;
}
[data-site-header] .nav-item:hover > a svg,
[data-site-header] .nav-item:focus-within > a svg {
  opacity: 1;
  transform: rotate(180deg);
}
[data-site-header] .nav-item { position: static; display: flex; align-items: center; }
[data-site-header] .nav-dropdown {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: clamp(380px,42vh,430px);
  padding: 104px max(46px,calc((100vw - 1360px)/2 + 24px)) 42px;
  border: 1px solid rgba(120,180,240,.16);
  border-right: 0;
  border-left: 0;
  background: linear-gradient(180deg,rgba(4,16,34,.9),rgba(4,14,30,.74)),radial-gradient(circle at 78% 26%,rgba(72,180,255,.22),transparent 34%);
  box-shadow: 0 28px 78px rgba(0,0,0,.36);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-10px);
  pointer-events: none;
  transition: .22s ease;
}
[data-site-header] .nav-item:hover .nav-dropdown,
[data-site-header] .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,0);
  pointer-events: auto;
}
[data-site-header] .mega-menu {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px,430px) minmax(0,1fr);
  gap: 70px;
}
[data-site-header] .mega-promo { padding-top: 10px; padding-left: 120px; }
[data-site-header] .mega-promo h3 {
  max-width: 390px;
  color: #eef6ff;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: 0;
}
[data-site-header] .mega-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
[data-site-header] .mega-actions a {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .24s ease,box-shadow .24s ease,border-color .24s ease,background-color .24s ease;
}
[data-site-header] .mega-primary {
  color: #fff;
  background: linear-gradient(180deg,#39a7ff,#1688f8);
  box-shadow: 0 12px 34px rgba(22,136,248,.38);
}
[data-site-header] .mega-ghost {
  border: 1px solid rgba(57,167,255,.72);
  color: #eaf6ff;
  background: rgba(22,136,248,.08);
}
[data-site-header] .mega-actions a:hover,
[data-site-header] .mega-actions a:focus-visible {
  outline: none;
  transform: translateY(-3px);
}
[data-site-header] .mega-primary:hover,
[data-site-header] .mega-primary:focus-visible {
  box-shadow: 0 16px 42px rgba(22,136,248,.5),0 0 0 1px rgba(116,199,255,.24);
}
[data-site-header] .mega-ghost:hover,
[data-site-header] .mega-ghost:focus-visible {
  border-color: rgba(89,190,255,.95);
  background: rgba(22,136,248,.16);
}
[data-site-header] .mega-actions a:active { transform: translateY(-1px) scale(.98); }
[data-site-header] .nav-menu-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(150px,1fr));
  gap: 50px 86px;
  align-content: start;
}
[data-site-header] .nav-dropdown.market .nav-menu-grid {
  grid-template-columns: 150px 120px 120px;
  gap: 50px 34px;
  justify-content: start;
}
[data-site-header] .nav-menu-col { display: grid; align-content: start; gap: 10px; }
[data-site-header] .nav-menu-col h4 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
[data-site-header] .nav-dropdown .nav-menu-col a {
  padding: 4px 0;
  color: rgba(219,233,251,.66);
  font-family: var(--font);
  font-size: 14px;
  white-space: nowrap;
}
[data-site-header] .nav-dropdown .nav-menu-col a:hover { color: #fff; }
[data-site-header] .nav-dropdown.market .market-extra { padding-top: 48px; }
[data-site-header] .nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
[data-site-header] .nav-right .btn { min-height: 40px; padding: 0 21px; }
[data-site-header] .lang-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #c7d8ef;
  background: rgba(255,255,255,.06);
}
[data-site-header] .lang-btn svg { width: 20px; height: 20px; }
[data-site-header] .menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #c7d8ef;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
[data-site-header] .menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  color: inherit;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor,0 -7px 0 currentColor;
}
[data-site-header] .mobile-menu-panel { display: none; }

@media (max-width: 900px) {
  [data-site-header] { top: 12px; }
  [data-site-header] nav { height: 68px; margin: 0 14px; padding: 0 18px; gap: 18px; }
  [data-site-header] .nav-logo-img { width: 180px; }
}

/* 七个中文一级栏目在 1280px 以下排不进胶囊，会逐字折行，
   所以在这里就收起成汉堡菜单（与站点其余页面一致） */
@media (max-width: 1280px) {
  [data-site-header] .nav-links { display: none; }
  [data-site-header] .nav-right .lang-btn { display: none; }
  [data-site-header] .nav-right .btn { display: inline-flex; padding: 9px 15px; font-size: 13px; line-height: 1; }
  [data-site-header] .menu-toggle { display: grid; }
  [data-site-header] nav.menu-open .menu-toggle span { position: relative; height: 0; box-shadow: none; }
  [data-site-header] nav.menu-open .menu-toggle span::before,
  [data-site-header] nav.menu-open .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
  }
  [data-site-header] nav.menu-open .menu-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
  [data-site-header] nav.menu-open .menu-toggle span::after { transform: translate(-50%,-50%) rotate(-45deg); }
  [data-site-header] .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 10px;
    right: 10px;
    display: block;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 26px 22px 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: rgba(4,12,30,.96);
    box-shadow: 0 26px 70px rgba(0,0,0,.48),inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: .22s ease;
  }
  [data-site-header] nav.menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  [data-site-header] .mobile-menu-main { display: grid; gap: 0; }
  [data-site-header] .mobile-menu-main > a,
  [data-site-header] .mobile-menu-main summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #dbe6f7;
    font-family: var(--font);
    font-size: 18px;
    cursor: pointer;
    list-style: none;
  }
  [data-site-header] .mobile-menu-main summary::-webkit-details-marker { display: none; }
  [data-site-header] .mobile-menu-main summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: .65;
    transform: rotate(45deg);
    transition: .2s;
  }
  [data-site-header] .mobile-submenu[open] summary::after { transform: rotate(225deg); }
  [data-site-header] .mobile-submenu-links {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 4px 14px;
    padding: 12px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  [data-site-header] .mobile-submenu-links a {
    display: block;
    padding: 7px 0;
    color: #a8c2e4;
    font-size: 14.5px;
    line-height: 1.35;
  }
  [data-site-header] .mobile-menu-meta {
    margin-top: 22px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  [data-site-header] .mobile-menu-col h4 {
    margin: 0 0 14px;
    color: #697184;
    font-family: var(--font);
    font-size: 13px;
    letter-spacing: .32em;
    text-transform: uppercase;
  }
  [data-site-header] .mobile-menu-col button {
    width: 100%;
    padding: 4px 0;
    border: 0;
    color: #a8b1c2;
    background: transparent;
    text-align: left;
    font: inherit;
    font-size: 15px;
    line-height: 1.7;
    cursor: pointer;
  }
  [data-site-header] .mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    column-gap: 20px;
  }
  [data-site-header] .mobile-menu-actions { display: none; }
}

@media (max-width: 560px) {
  [data-site-header] { top: 8px; }
  [data-site-header] nav {
    width: calc(100% - 20px);
    height: 58px;
    min-height: 58px;
    margin: 0 10px;
    padding: 0 10px 0 14px;
    gap: 6px;
    border-radius: 26px;
  }
  /* Android uses slightly wider CJK glyph metrics than desktop Chrome. Keep
     the action cluster intrinsic and let only the logo scale on very narrow
     screens, otherwise flexbox shrinks the two links until each Han character
     wraps onto its own line. */
  [data-site-header] .logo {
    width: clamp(124px,calc(100vw - 188px),160px);
    min-width: 0;
    flex: 0 1 auto;
  }
  [data-site-header] .nav-logo-img { width: 100%; max-height: 38px; }
  [data-site-header] .nav-right {
    flex: 0 0 auto;
    gap: 6px;
  }
  [data-site-header] .nav-right .btn {
    min-width: 44px;
    min-height: 40px;
    padding: 0 9px;
    flex: 0 0 auto;
    white-space: nowrap;
    word-break: keep-all;
    writing-mode: horizontal-tb;
  }
  [data-site-header] .menu-toggle { width: 38px; height: 38px; border-radius: 10px; }
  [data-site-header] .menu-toggle span { position: relative; width: 19px; }
  [data-site-header] nav.menu-open .menu-toggle span::before,
  [data-site-header] nav.menu-open .menu-toggle span::after { width: 19px; }
  [data-site-header] .mobile-menu-panel { left: 0; right: 0; padding: 22px 22px 24px; border-radius: 22px; }
  [data-site-header] .mobile-menu-main > a,
  [data-site-header] .mobile-menu-main summary { min-height: 48px; font-size: 17px; }
  [data-site-header] .mobile-menu-meta { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .is-animating { opacity: 1 !important; transform: none !important; will-change: auto !important; }
  .process { --process-line-scale: 1 !important; }
}

/* STP order flow: a single horizontal stepper inspired by the supplied reference. */
.process.process--timeline {
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
  align-items: start;
  overflow: hidden;
  padding: 34px 28px 38px;
  border-color: rgba(43,134,230,.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -45%,rgba(72,180,255,.18),transparent 55%),
    repeating-linear-gradient(90deg,transparent 0 88px,rgba(72,180,255,.018) 89px 90px),
    linear-gradient(180deg,rgba(8,31,62,.68),rgba(2,17,38,.82));
  box-shadow: 0 26px 70px rgba(0,10,31,.3),inset 0 1px 0 rgba(255,255,255,.05);
}
.process.process--timeline::before {
  top: 65px;
  right: 10%;
  bottom: auto;
  left: 10%;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg,rgba(45,145,244,.22),#2d91f4 16%,#e8c47a 50%,#2d91f4 84%,rgba(45,145,244,.22));
  box-shadow: 0 0 10px rgba(72,180,255,.4);
  transform: scaleX(var(--process-line-scale));
  transform-origin: left center;
}
.process.process--timeline::after {
  background: linear-gradient(118deg,transparent 0 46%,rgba(72,180,255,.035) 49%,transparent 52% 100%);
}
.process--timeline .process-step {
  min-height: 190px;
  padding: 96px 17px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.process--timeline .process-step::before,
.process--timeline .process-step::after { display: none; }
.process--timeline .process-step:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.process--timeline .step-no {
  top: 0;
  width: 64px;
  height: 64px;
  border-color: rgba(232,196,122,.76);
  background: radial-gradient(circle at 42% 34%,rgba(72,180,255,.45),rgba(8,34,67,.98) 58%,#03162f 100%);
  box-shadow: 0 0 0 7px rgba(30,135,245,.08),0 0 24px rgba(30,135,245,.45),inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 13px;
}
.process--timeline .step-no::after { display: none; }
.process--timeline .process-step:hover .step-no {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 0 0 8px rgba(30,135,245,.1),0 0 32px rgba(72,180,255,.62),inset 0 1px 0 rgba(255,255,255,.24);
}
.process--timeline .process-step h3 {
  color: #f4f8ff;
  font-size: clamp(17px,1.25vw,20px);
  font-weight: 600;
}
.process--timeline .process-step p {
  max-width: 190px;
  margin: 12px auto 0;
  padding: 0;
  color: rgba(187,207,232,.7);
  font-size: 13.5px;
  line-height: 1.72;
}
body[data-account-page="demo"] #start .process-step p { text-wrap: balance; }
.process.process--timeline.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.process.process--timeline.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.process.process--timeline.three .process-step { min-height: 190px; }

@media (max-width: 1100px) and (min-width: 821px) {
  .process.process--timeline {
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 0;
    padding: 32px 20px 34px;
  }
  .process.process--timeline::before {
    top: 61px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
    transform: scaleX(var(--process-line-scale));
    transform-origin: left center;
  }
  .process--timeline .process-step { min-height: 184px; padding: 91px 10px 0; }
  .process--timeline .step-no { top: 0; left: 50%; width: 60px; height: 60px; transform: translateX(-50%); }
  .process--timeline .process-step:hover .step-no { transform: translateX(-50%) scale(1.06); }
  .process--timeline .process-step p { font-size: 13px; }
}

@media (max-width: 820px) {
  .process.process--timeline,
  .process.process--timeline.three,
  .process.process--timeline.four {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 30px 24px 18px;
  }
  .process.process--timeline::before {
    top: 62px;
    right: auto;
    bottom: 70px;
    left: 55px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg,rgba(45,145,244,.25),#2d91f4 16%,#e8c47a 50%,#2d91f4 84%,rgba(45,145,244,.25));
    transform: scaleY(var(--process-line-scale));
    transform-origin: center top;
  }
  .process--timeline .process-step {
    min-height: 112px;
    padding: 9px 8px 30px 86px;
    text-align: left;
  }
  .process.process--timeline.three .process-step { min-height: 112px; }
  .process--timeline .step-no {
    top: 0;
    left: 2px;
    width: 58px;
    height: 58px;
    transform: none;
  }
  .process--timeline .process-step:hover .step-no { transform: scale(1.06); }
  .process--timeline .process-step p { max-width: none; margin: 9px 0 0; }
}

@media (max-width: 560px) {
  .process.process--timeline { padding: 26px 14px 12px; border-radius: 18px; }
  .process.process--timeline::before { top: 55px; bottom: 63px; left: 40px; }
  .process--timeline .process-step { min-height: 105px; padding: 6px 6px 28px 68px; }
  .process.process--timeline.three .process-step { min-height: 105px; }
  .process--timeline .step-no { left: 0; width: 52px; height: 52px; }
  .process--timeline .process-step h3 { font-size: 19px; }
  .process--timeline .process-step p { margin-top: 7px; font-size: 13.5px; }
}
