:root {
  --bg: #050915;
  --bg-soft: #0a1020;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f5f7fb;
  --muted: #aab5c8;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d9b66c;
  --blue: #4aa3ff;
  --cyan: #67e8f9;
  --neon: #00c8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 200, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 16% 10%, rgba(74, 163, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 0%, rgba(217, 182, 108, 0.12), transparent 24rem),
    linear-gradient(180deg, #050915 0%, #08101f 44%, #050915 100%);
  color: var(--text);
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.lang-zh {
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.lang-zh h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

body.lang-zh h2 {
  letter-spacing: -0.025em;
  line-height: 1.12;
}

body.lang-zh .hero-subtitle,
body.lang-zh .eyebrow {
  letter-spacing: 0.08em;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 9, 21, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 182, 108, 0.55);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.22), rgba(217, 182, 108, 0.12));
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(0, 200, 255, 0.12);
  box-shadow: inset 0 -1px 0 rgba(103, 232, 249, 0.28);
}

.nav-links a.active {
  color: var(--blue);
  background: rgba(8, 119, 201, 0.1);
  box-shadow: inset 0 0 0 1px rgba(8, 119, 201, 0.12), 0 10px 26px rgba(8, 119, 201, 0.08);
}

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

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.lang-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 76px;
  justify-content: center;
}

.lang-toggle strong,
.lang-toggle em {
  font-style: normal;
  font-weight: 800;
}

.lang-toggle span {
  color: rgba(95, 112, 135, 0.5);
}

.lang-toggle strong,
body.lang-zh .lang-toggle em {
  color: var(--muted);
}

body.lang-zh .lang-toggle strong,
.lang-toggle em {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(217, 182, 108, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #00c8ff, #67e8f9 45%, #d9b66c);
  color: #04111f;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(0, 200, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(0, 200, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(103, 232, 249, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.085) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% 8% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 200, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 50% 44%, rgba(75, 77, 255, 0.16), transparent 34rem);
  filter: blur(4px);
}

.hero-grid,
.two-column,
.about-grid,
.markets-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  padding-top: 34px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 9px 18px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7.2vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  background: linear-gradient(90deg, #67e8f9 0%, #009dff 45%, #7c8cff 78%, #d9b66c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 38px rgba(0, 200, 255, 0.22);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 3.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.hero-subtitle {
  max-width: 880px;
  margin-bottom: 0;
  padding: 13px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #cfd8e8;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 32px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-row span,
.market-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  padding: 10px 14px;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: stretch;
  width: min(980px, 100%);
  margin: 0 auto;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  width: 260px;
  height: 260px;
  left: 6%;
  top: -80px;
  border: 1px solid rgba(74, 163, 255, 0.3);
  background: radial-gradient(circle, rgba(74, 163, 255, 0.18), transparent 66%);
}

.orb-two {
  width: 180px;
  height: 180px;
  right: 8%;
  bottom: -42px;
  border: 1px solid rgba(217, 182, 108, 0.28);
  background: radial-gradient(circle, rgba(217, 182, 108, 0.15), transparent 65%);
}

.panel-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  text-align: left;
}

.main-card {
  width: 100%;
  padding: 26px;
}

.main-card span,
.floating-card span {
  color: var(--muted);
}

.main-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.floating-card {
  position: relative;
  width: auto;
  padding: 24px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 8px;
}

.pain-section,
.services-section,
.process-section,
.contact-section {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-list {
  display: grid;
  gap: 14px;
}

.pain-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.pain-list span,
.card-number,
.process-track span {
  color: var(--gold);
  font-weight: 800;
}

.pain-list p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.markets-grid p,
.insight-card p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--blue);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.stat-grid span {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.62;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.package-card,
.experience-list article,
.insight-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 310px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card h3,
.package-card h3,
.experience-list h3 {
  color: #eef7ff;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 163, 255, 0.48);
}

.service-card p,
.package-card p,
.experience-list p {
  color: var(--muted);
  line-height: 1.72;
}

.card-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  color: #49647f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 4px rgba(8, 119, 201, 0.08);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  padding: 30px;
}

.package-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 700;
}

.package-card.featured {
  border-color: rgba(217, 182, 108, 0.48);
  background: linear-gradient(145deg, rgba(217, 182, 108, 0.16), rgba(255, 255, 255, 0.07));
}

.markets-grid {
  align-items: start;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 200, 255, 0.08), transparent 40%, rgba(217, 182, 108, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.process-track div {
  min-height: 150px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.process-track div:last-child {
  border-right: 0;
}

.process-track strong {
  display: block;
  margin-top: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.process-track small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.experience-list {
  display: grid;
  gap: 18px;
}

.experience-list article {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 30px;
}

.experience-list span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
}

.experience-list p {
  margin-bottom: 0;
}

.insight-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(74, 163, 255, 0.13), rgba(217, 182, 108, 0.08)),
    var(--panel);
}

.contact-grid {
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--cyan);
  font-weight: 700;
}

.contact-methods span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(74, 163, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder {
  color: rgba(170, 181, 200, 0.55);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 119, 201, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: 0 18px 44px rgba(12, 53, 98, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(14px);
}

.back-to-top span {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(8, 119, 201, 0.24);
}

.footer-grid {
  align-items: center;
}

.footer-grid p {
  margin: 6px 0 0;
}

.footer-company {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-grid a {
  justify-self: end;
  color: var(--text);
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 22px;
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .hero-grid,
  .two-column,
  .about-grid,
  .markets-grid,
  .contact-grid,
  .insight-card,
  .experience-list article {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

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

  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-track div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .section {
    padding: 76px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.6rem);
    letter-spacing: -0.052em;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-panel {
    gap: 12px;
  }

  .floating-card {
    width: 100%;
  }

  .main-card {
    padding: 24px;
  }

  .main-card strong {
    font-size: 1.45rem;
  }

  .stat-grid,
  .card-grid,
  .package-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track div {
    min-height: auto;
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid a {
    justify-self: start;
  }
}

/* White brand theme */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #071d3a;
  --muted: #5f7087;
  --line: rgba(12, 53, 98, 0.12);
  --gold: #c58b2d;
  --blue: #0877c9;
  --cyan: #11a9e6;
  --neon: #0877c9;
  --shadow: 0 24px 80px rgba(20, 57, 100, 0.12);
}

body {
  background:
    radial-gradient(circle at 16% 8%, rgba(17, 169, 230, 0.08), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(197, 139, 45, 0.07), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 48%, #fafcff 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(12, 53, 98, 0.1);
  box-shadow: 0 10px 34px rgba(12, 53, 98, 0.06);
}

.brand {
  color: var(--text);
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark {
  background: linear-gradient(135deg, rgba(8, 119, 201, 0.12), rgba(197, 139, 45, 0.12));
  color: var(--blue);
  box-shadow: 0 0 22px rgba(8, 119, 201, 0.12);
}

.brand small,
.nav-links,
.lang-toggle,
.menu-toggle {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--blue);
  background: rgba(8, 119, 201, 0.08);
  box-shadow: inset 0 -1px 0 rgba(8, 119, 201, 0.22);
}

.lang-toggle,
.menu-toggle {
  background: #ffffff;
  border-color: rgba(12, 53, 98, 0.12);
}

.menu-toggle span {
  background: var(--text);
}

.btn {
  border-color: rgba(8, 119, 201, 0.2);
  background: linear-gradient(135deg, #075ea5, #11a9e6 52%, #d8a44d);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 119, 201, 0.18);
}

.btn:hover {
  box-shadow: 0 20px 48px rgba(8, 119, 201, 0.24);
}

.btn-secondary {
  background: #ffffff;
  color: var(--blue);
  border-color: rgba(8, 119, 201, 0.18);
  box-shadow: 0 12px 30px rgba(12, 53, 98, 0.08);
}

.hero {
  background:
    radial-gradient(circle at 50% 8%, rgba(17, 169, 230, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 72%, #f7f9fc 100%);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-logo {
  width: min(420px, 72vw);
  height: auto;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 22px 42px rgba(12, 53, 98, 0.12));
}

.eyebrow {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 119, 201, 0.14);
  box-shadow: 0 12px 30px rgba(12, 53, 98, 0.07);
}

h1 {
  background: linear-gradient(90deg, #062c5b 0%, #0877c9 42%, #12a9e6 68%, #c58b2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

h2,
h3,
.service-card h3,
.package-card h3,
.experience-list h3 {
  color: #071d3a;
}

.hero-subtitle {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(8, 119, 201, 0.12);
  color: #31516f;
  box-shadow: 0 18px 54px rgba(12, 53, 98, 0.09);
}

.trust-row span,
.market-tags span {
  background: #ffffff;
  border-color: rgba(8, 119, 201, 0.12);
  color: #49647f;
  box-shadow: 0 10px 28px rgba(12, 53, 98, 0.06);
}

.orb-one {
  border-color: rgba(8, 119, 201, 0.22);
  background: radial-gradient(circle, rgba(17, 169, 230, 0.16), transparent 66%);
}

.orb-two {
  border-color: rgba(197, 139, 45, 0.22);
  background: radial-gradient(circle, rgba(197, 139, 45, 0.13), transparent 65%);
}

.panel-card,
.service-card,
.package-card,
.experience-list article,
.insight-card,
.contact-form,
.stat-grid div,
.pain-list article {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 53, 98, 0.1);
  box-shadow: 0 18px 54px rgba(12, 53, 98, 0.08);
}

.main-card span,
.floating-card span,
.section-heading p:not(.eyebrow),
.about-copy p,
.markets-grid p,
.insight-card p,
.contact-grid p,
.pain-list p,
.service-card p,
.package-card p,
.experience-list p,
.contact-methods span,
.form-note {
  color: var(--muted);
}

.pain-section,
.services-section,
.process-section,
.contact-section {
  background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
  border-color: rgba(12, 53, 98, 0.08);
}

.card-number,
.process-track span,
.pain-list span,
.package-card > span,
.experience-list span,
.contact-methods a,
.package-card a {
  color: var(--blue);
}

.stat-grid strong {
  color: var(--blue);
}

.package-card.featured {
  border-color: rgba(197, 139, 45, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.9));
}

.process-track {
  border-color: rgba(12, 53, 98, 0.1);
  background:
    linear-gradient(90deg, rgba(8, 119, 201, 0.08), transparent 42%, rgba(197, 139, 45, 0.08)),
    #ffffff;
  box-shadow: 0 18px 54px rgba(12, 53, 98, 0.08);
}

.process-track div {
  border-right-color: rgba(12, 53, 98, 0.1);
}

.insight-card {
  background:
    linear-gradient(135deg, rgba(8, 119, 201, 0.08), rgba(197, 139, 45, 0.08)),
    #ffffff;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border-color: rgba(12, 53, 98, 0.14);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 119, 201, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 119, 201, 0.08);
}

.site-footer {
  background: #ffffff;
  border-top-color: rgba(12, 53, 98, 0.1);
  color: var(--muted);
}

.footer-grid a {
  color: var(--blue);
}

@media (max-width: 680px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero-logo {
    width: min(320px, 82vw);
    margin-bottom: 18px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Content polish */
body {
  background:
    radial-gradient(circle at 12% 6%, rgba(17, 169, 230, 0.07), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(197, 139, 45, 0.06), transparent 22rem),
    linear-gradient(180deg, #f7faff 0%, #f4f7fb 46%, #fafcff 100%);
}

.site-header {
  box-shadow: 0 8px 28px rgba(12, 53, 98, 0.05);
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: auto;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 50% 8%, rgba(17, 169, 230, 0.07), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 70%, #f6f9fd 100%);
}

.hero-grid {
  gap: 34px;
  padding-top: 0;
}

.hero-logo {
  width: min(320px, 58vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 34px rgba(12, 53, 98, 0.1));
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 1.02;
}

h2 {
  max-width: 880px;
}

.hero-subtitle {
  max-width: 760px;
  padding: 12px 24px;
  font-weight: 700;
}

.hero-actions {
  margin: 28px 0 24px;
}

.hero-panel {
  width: min(900px, 100%);
  gap: 14px;
}

.panel-card,
.service-card,
.package-card,
.experience-list article,
.insight-card,
.contact-form,
.stat-grid div,
.pain-list article {
  border-radius: 24px;
}

.main-card,
.floating-card {
  padding: 24px;
}

.main-card strong,
.floating-card strong {
  color: #071d3a;
}

.pain-section,
.services-section,
.process-section,
.contact-section {
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.88) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.section-heading {
  max-width: 860px;
}

.section-heading.centered {
  margin-bottom: 40px;
}

.service-card {
  min-height: 285px;
  padding: 30px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.package-card {
  padding: 32px;
}

.package-card.featured {
  transform: translateY(-8px);
}

.markets-grid {
  align-items: center;
}

.market-tags span {
  padding: 12px 16px;
  font-weight: 700;
}

.process-track div {
  min-height: 132px;
}

.process-track {
  grid-template-columns: repeat(3, 1fr);
}

.process-track div:nth-child(3n) {
  border-right: 0;
}

.process-track div:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(12, 53, 98, 0.1);
}

.experience-list article {
  align-items: center;
}

.contact-form {
  gap: 14px;
}

.contact-form .btn {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .hero {
    padding: 62px 0 78px;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero-logo {
    width: min(250px, 76vw);
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 3.7rem);
  }

  .hero-subtitle {
    border-radius: 22px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-card,
  .package-card,
  .experience-list article,
  .contact-form {
    padding: 24px;
  }
}

/* Motion system */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%) skewX(-16deg);
  }

  100% {
    transform: translateX(220%) skewX(-16deg);
  }
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 16px 42px rgba(12, 53, 98, 0.1), 0 0 0 0 rgba(8, 119, 201, 0.14);
  }

  50% {
    box-shadow: 0 20px 52px rgba(12, 53, 98, 0.14), 0 0 0 9px rgba(8, 119, 201, 0.04);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.hero-logo,
.hero .eyebrow,
.hero h1,
.hero-subtitle,
.hero-actions,
.hero-panel {
  animation: fadeUp 0.75s ease both;
}

.hero-logo {
  animation-delay: 0.04s;
}

.hero .eyebrow {
  animation-delay: 0.12s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.28s;
}

.hero-actions {
  animation-delay: 0.36s;
}

.hero-panel {
  animation-delay: 0.44s;
}

.orb-one,
.orb-two {
  animation: softFloat 7s ease-in-out infinite;
}

.orb-two {
  animation-delay: 1.6s;
}

.partner-map {
  position: relative;
  display: block;
  width: min(940px, 100%);
  height: 380px;
  margin: 4px auto 0;
  border: 1px solid rgba(12, 53, 98, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 169, 230, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44));
  box-shadow: 0 24px 80px rgba(12, 53, 98, 0.08);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.partner-map::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(8, 119, 201, 0.13);
  border-radius: 28px;
  pointer-events: none;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-lines path {
  fill: none;
  stroke: url("#networkGradient");
  stroke: rgba(8, 119, 201, 0.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 14;
  animation: lineFlow 8s linear infinite;
}

.network-node {
  position: absolute;
  z-index: 2;
  width: 170px;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 119, 201, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: #071d3a;
  text-align: left;
  box-shadow: 0 16px 42px rgba(12, 53, 98, 0.1);
  animation: nodeFloat 6s ease-in-out infinite;
}

.network-node strong {
  color: #071d3a;
  font-size: 0.98rem;
  line-height: 1.2;
}

.network-node span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.network-center {
  left: 50%;
  top: 50%;
  width: 190px;
  min-height: 112px;
  justify-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border-color: rgba(197, 139, 45, 0.28);
  background: linear-gradient(145deg, #ffffff, rgba(255, 248, 236, 0.9));
  animation: nodePulse 4.5s ease-in-out infinite;
}

.network-center img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.node-merchants {
  left: 42px;
  top: 58px;
  animation-delay: 0.1s;
}

.node-channels {
  right: 54px;
  top: 58px;
  animation-delay: 0.8s;
}

.node-investors {
  left: 62px;
  bottom: 56px;
  animation-delay: 1.4s;
}

.node-kols {
  right: 62px;
  bottom: 56px;
  animation-delay: 2s;
}

.node-events {
  left: 285px;
  top: 28px;
  animation-delay: 2.6s;
}

.node-industry {
  right: 285px;
  top: 28px;
  animation-delay: 3.2s;
}

@keyframes orbitRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitCounterRotate {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    box-shadow: 0 18px 54px rgba(12, 53, 98, 0.1), 0 0 0 0 rgba(8, 119, 201, 0.12);
  }

  50% {
    box-shadow: 0 22px 66px rgba(12, 53, 98, 0.14), 0 0 0 10px rgba(8, 119, 201, 0.04);
  }
}

.market-orbit {
  position: relative;
  display: block;
  width: min(920px, 100%);
  height: 430px;
  margin: 4px auto 0;
  border: 1px solid rgba(12, 53, 98, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 169, 230, 0.13), transparent 15rem),
    radial-gradient(circle at 68% 24%, rgba(197, 139, 45, 0.09), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52));
  box-shadow: 0 24px 80px rgba(12, 53, 98, 0.08);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.market-orbit::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(8, 119, 201, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 119, 201, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 48%, transparent 74%);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(8, 119, 201, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 18px rgba(8, 119, 201, 0.32);
}

.orbit-ring::before {
  left: 18%;
  top: 8%;
}

.orbit-ring::after {
  right: 14%;
  bottom: 12%;
}

.orbit-ring-outer {
  width: 620px;
  height: 280px;
  animation: orbitRotate 32s linear infinite;
}

.orbit-ring-inner {
  width: 410px;
  height: 190px;
  border-color: rgba(197, 139, 45, 0.25);
  animation: orbitCounterRotate 28s linear infinite;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 230px;
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 24px;
  border: 1px solid rgba(197, 139, 45, 0.28);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, rgba(255, 248, 236, 0.92));
  color: #071d3a;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: orbitGlow 4.5s ease-in-out infinite;
}

.orbit-center img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.orbit-center strong,
.orbit-node strong {
  color: #071d3a;
  line-height: 1.2;
}

.orbit-center span,
.orbit-node span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.38;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  width: 178px;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 15px 17px;
  border: 1px solid rgba(8, 119, 201, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  box-shadow: 0 16px 42px rgba(12, 53, 98, 0.1);
  animation: nodeFloat 6s ease-in-out infinite;
}

.orbit-australia {
  left: 56px;
  top: 80px;
  animation-delay: 0.2s;
}

.orbit-singapore {
  right: 64px;
  top: 78px;
  animation-delay: 0.9s;
}

.orbit-uk {
  left: 112px;
  bottom: 72px;
  animation-delay: 1.6s;
}

.orbit-us {
  right: 112px;
  bottom: 72px;
  animation-delay: 2.3s;
}

.orbit-malaysia {
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
}

.btn:hover::after {
  opacity: 1;
  animation: sheen 0.9s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.package-card,
.experience-list article,
.pain-list article,
.panel-card,
.market-tags span,
.stat-grid div {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.package-card:hover,
.experience-list article:hover,
.pain-list article:hover,
.panel-card:hover,
.stat-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 119, 201, 0.22);
  box-shadow: 0 24px 64px rgba(12, 53, 98, 0.12);
}

.market-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 119, 201, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Browser zoom and mobile refinements */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

.section {
  scroll-margin-top: 88px;
}

h1,
h2,
h3,
p,
li,
a,
strong,
span {
  overflow-wrap: break-word;
}

.hero h1 {
  text-wrap: balance;
}

.brand {
  min-width: 0;
}

.brand > span {
  min-width: 0;
}

.brand strong,
.brand small {
  white-space: nowrap;
}

.nav-links {
  flex: 1;
  min-width: 0;
}

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

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 36px, 1080px);
  }

  .nav {
    gap: 14px;
  }

  .nav-links {
    gap: 6px;
    font-size: 0.84rem;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-logo {
    width: min(280px, 52vw);
  }

  h1 {
    font-size: clamp(2.75rem, 5.4vw, 5rem);
  }

  body.lang-zh h1 {
    font-size: clamp(2.55rem, 5vw, 4.5rem);
  }
}

@media (max-width: 1080px) {
  .nav {
    flex-wrap: wrap;
    min-height: 68px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: grid;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0 16px;
    font-size: 0.95rem;
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 11px 14px;
  }

  .hero-grid,
  .two-column,
  .about-grid,
  .markets-grid,
  .contact-grid,
  .insight-card,
  .experience-list article {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .partner-map {
    max-width: 720px;
    height: 520px;
  }

  .market-orbit {
    max-width: 720px;
    height: 520px;
  }

  .orbit-ring-outer {
    width: 500px;
    height: 270px;
  }

  .orbit-ring-inner {
    width: 330px;
    height: 180px;
  }

  .orbit-australia {
    left: 32px;
    top: 56px;
  }

  .orbit-singapore {
    right: 32px;
    top: 56px;
  }

  .orbit-uk {
    left: 42px;
    bottom: 64px;
  }

  .orbit-us {
    right: 42px;
    bottom: 64px;
  }

  .orbit-malaysia {
    top: 28px;
  }

  .network-lines {
    opacity: 0.55;
  }

  .node-merchants {
    left: 32px;
    top: 44px;
  }

  .node-channels {
    right: 32px;
    top: 44px;
  }

  .node-events {
    left: 32px;
    top: 210px;
  }

  .node-industry {
    right: 32px;
    top: 210px;
  }

  .node-investors {
    left: 32px;
    bottom: 42px;
  }

  .node-kols {
    right: 32px;
    bottom: 42px;
  }

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

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

  .package-card.featured {
    transform: none;
  }

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

  .process-track div,
  .process-track div:nth-child(3n),
  .process-track div:nth-child(-n + 3) {
    border-right: 1px solid rgba(12, 53, 98, 0.1);
    border-bottom: 1px solid rgba(12, 53, 98, 0.1);
  }

  .process-track div:nth-child(2n) {
    border-right: 0;
  }

  .process-track div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1160px);
    --radius: 22px;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    max-width: 132px;
    font-size: 0.68rem;
  }

  .lang-toggle {
    min-width: 68px;
    padding: 9px 11px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 60px 0;
    scroll-margin-top: 82px;
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-logo {
    width: min(230px, 70vw);
    margin-bottom: 14px;
  }

  .eyebrow {
    max-width: 100%;
    padding: 8px 13px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  body.lang-zh .eyebrow {
    letter-spacing: 0.05em;
  }

  h1,
  body.lang-zh h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.8vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  h2,
  body.lang-zh h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.16;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-subtitle {
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .partner-map {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
  }

  .partner-map::before,
  .network-lines,
  .partner-map .orb {
    display: none;
  }

  .network-node,
  .network-center,
  .node-merchants,
  .node-channels,
  .node-investors,
  .node-kols,
  .node-events,
  .node-industry {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none;
    animation: none;
  }

  .network-center {
    justify-items: start;
    text-align: left;
    grid-template-columns: 42px 1fr;
    align-items: center;
  }

  .network-center img {
    grid-row: span 2;
    width: 38px;
    height: 38px;
  }

  .network-center span {
    grid-column: 2;
  }

  .market-orbit {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
  }

  .market-orbit::before,
  .market-orbit .orb,
  .orbit-ring {
    display: none;
  }

  .orbit-center,
  .orbit-node,
  .orbit-australia,
  .orbit-singapore,
  .orbit-uk,
  .orbit-us,
  .orbit-malaysia {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none;
    animation: none;
  }

  .orbit-center {
    justify-items: start;
    text-align: left;
    grid-template-columns: 42px 1fr;
    align-items: center;
  }

  .orbit-center img {
    grid-row: span 2;
    width: 38px;
    height: 38px;
  }

  .orbit-center span {
    grid-column: 2;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .card-grid,
  .stat-grid,
  .package-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .panel-card,
  .service-card,
  .package-card,
  .experience-list article,
  .insight-card,
  .contact-form,
  .stat-grid div,
  .pain-list article {
    border-radius: 20px;
  }

  .main-card,
  .floating-card,
  .service-card,
  .package-card,
  .experience-list article,
  .contact-form,
  .insight-card {
    padding: 22px;
  }

  .pain-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .process-track div,
  .process-track div:nth-child(2n),
  .process-track div:nth-child(3n),
  .process-track div:nth-child(-n + 3),
  .process-track div:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 53, 98, 0.1);
  }

  .process-track div:last-child {
    border-bottom: 0;
  }

  .process-track strong {
    margin-top: 18px;
  }

  .market-tags {
    gap: 10px;
  }

  .market-tags span {
    width: 100%;
    border-radius: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 14px;
  }

  .footer-company {
    font-size: 0.82rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 22px, 1160px);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .lang-toggle {
    min-width: 62px;
    gap: 5px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-logo {
    width: min(205px, 72vw);
  }

  h1,
  body.lang-zh h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .main-card,
  .floating-card,
  .service-card,
  .package-card,
  .experience-list article,
  .contact-form,
  .insight-card {
    padding: 18px;
  }
}

/* Refined global orbit visual */
.market-orbit {
  height: 390px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 119, 201, 0.08), transparent 14rem),
    radial-gradient(circle at 72% 24%, rgba(197, 139, 45, 0.055), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.72));
  box-shadow: 0 22px 70px rgba(12, 53, 98, 0.075);
}

.market-orbit::before {
  display: none;
}

.orbit-ring {
  border-style: solid;
  border-color: rgba(8, 119, 201, 0.12);
  opacity: 0.9;
  animation: none;
}

.orbit-ring::before,
.orbit-ring::after {
  width: 7px;
  height: 7px;
  background: #0877c9;
  box-shadow: 0 0 14px rgba(8, 119, 201, 0.24);
}

.orbit-ring-outer {
  width: 600px;
  height: 245px;
}

.orbit-ring-inner {
  width: 410px;
  height: 168px;
  border-color: rgba(197, 139, 45, 0.16);
}

.orbit-center {
  width: 218px;
  min-height: 118px;
  border-color: rgba(8, 119, 201, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(12, 53, 98, 0.1);
  animation: orbitGlow 6s ease-in-out infinite;
}

.orbit-center img {
  width: 44px;
  height: 44px;
}

.orbit-node {
  width: 166px;
  min-height: 70px;
  padding: 13px 15px;
  border-color: rgba(8, 119, 201, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(12, 53, 98, 0.075);
  animation: none;
}

.orbit-node:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 119, 201, 0.2);
  box-shadow: 0 18px 44px rgba(12, 53, 98, 0.11);
}

.orbit-australia {
  left: 70px;
  top: 74px;
}

.orbit-singapore {
  right: 74px;
  top: 74px;
}

.orbit-uk {
  left: 125px;
  bottom: 62px;
}

.orbit-us {
  right: 125px;
  bottom: 62px;
}

.orbit-malaysia {
  top: 30px;
}

@media (max-width: 1080px) {
  .market-orbit {
    height: 480px;
  }

  .orbit-ring-outer {
    width: 500px;
    height: 255px;
  }

  .orbit-ring-inner {
    width: 330px;
    height: 170px;
  }
}

@media (max-width: 760px) {
  .market-orbit {
    height: auto;
  }

  .orbit-node:hover {
    transform: none;
  }
}

/* Refined abstract market map */
.market-map {
  position: relative;
  display: block;
  width: min(920px, 100%);
  height: 420px;
  margin: 4px auto 0;
  border: 1px solid rgba(12, 53, 98, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 119, 201, 0.09), transparent 15rem),
    radial-gradient(circle at 72% 24%, rgba(197, 139, 45, 0.06), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.74));
  box-shadow: 0 22px 70px rgba(12, 53, 98, 0.075);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.global-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-region {
  fill: rgba(255, 255, 255, 0.76);
  stroke: rgba(8, 119, 201, 0.18);
  stroke-width: 1.5;
  filter: drop-shadow(0 14px 22px rgba(12, 53, 98, 0.08));
  transition: fill 0.24s ease, stroke 0.24s ease, transform 0.24s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.region-au,
.region-sg {
  fill: rgba(17, 169, 230, 0.1);
}

.region-uk,
.region-my {
  fill: rgba(197, 139, 45, 0.1);
}

.region-us {
  fill: rgba(8, 119, 201, 0.08);
}

.map-region:hover {
  fill: rgba(17, 169, 230, 0.16);
  stroke: rgba(8, 119, 201, 0.34);
  transform: scale(1.025);
}

.map-link {
  fill: none;
  stroke: rgba(8, 119, 201, 0.18);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 5 10;
  animation: lineFlow 9s linear infinite;
}

.hk-dot {
  fill: #0877c9;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
  filter: drop-shadow(0 0 16px rgba(8, 119, 201, 0.4));
}

.map-label {
  fill: #31516f;
  font: 700 14px "Inter", "Noto Sans SC", sans-serif;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 220px;
  min-height: 116px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(8, 119, 201, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  color: #071d3a;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 52px rgba(12, 53, 98, 0.1);
  animation: orbitGlow 6s ease-in-out infinite;
}

.map-center img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.map-center strong {
  color: #071d3a;
  line-height: 1.2;
}

.map-center span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.38;
}

@media (max-width: 1080px) {
  .market-map {
    max-width: 720px;
    height: 390px;
  }

  .map-label {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .market-map {
    height: 360px;
    border-radius: 24px;
  }

  .map-center {
    width: 190px;
    min-height: 104px;
    padding: 18px;
  }

  .map-center img {
    width: 38px;
    height: 38px;
  }

  .map-label {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .market-map {
    height: 330px;
  }

  .map-center {
    width: 172px;
    min-height: 98px;
  }

  .map-label {
    font-size: 20px;
  }
}

/* Real earth globe visual */
.earth-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 24px;
  width: min(920px, 100%);
  min-height: 430px;
  margin: 4px auto 0;
  padding: 34px;
  border: 1px solid rgba(12, 53, 98, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 34% 50%, rgba(8, 119, 201, 0.1), transparent 17rem),
    radial-gradient(circle at 80% 30%, rgba(197, 139, 45, 0.06), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.74));
  box-shadow: 0 22px 70px rgba(12, 53, 98, 0.075);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.globe-stage {
  position: relative;
  min-height: 350px;
  border-radius: 999px;
  cursor: grab;
  touch-action: none;
}

.globe-stage.is-dragging {
  cursor: grabbing;
}

.globe-canvas,
.globe-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.globe-canvas {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.globe-ready .globe-canvas {
  opacity: 1;
}

.globe-fallback {
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.95), transparent 13%),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(7, 29, 58, 0.18) 21px 22px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(7, 29, 58, 0.16) 25px 26px),
    radial-gradient(circle at 48% 48%, #ffffff 0%, #f9fbff 58%, #dfeaf5 100%);
  border: 1px solid rgba(7, 29, 58, 0.18);
  box-shadow: inset -24px -18px 50px rgba(7, 29, 58, 0.08), 0 24px 60px rgba(12, 53, 98, 0.12);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.globe-ready .globe-fallback {
  opacity: 0;
}

@media (max-width: 1080px) {
  .earth-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .globe-stage {
    min-height: 360px;
  }

}

@media (max-width: 760px) {
  .earth-visual {
    padding: 20px;
    border-radius: 24px;
  }

  .globe-stage {
    min-height: 280px;
  }

}

@media (max-width: 420px) {
  .globe-stage {
    min-height: 235px;
  }
}

/* Hero globe presentation */
.earth-visual {
  display: block;
  width: min(980px, 100%);
  min-height: 520px;
  margin: 10px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.earth-visual .orb {
  display: none;
}

.globe-stage {
  width: min(760px, 92vw);
  min-height: 520px;
  margin: 0 auto;
}

.globe-fallback {
  box-shadow: inset -24px -18px 50px rgba(7, 29, 58, 0.08), 0 28px 80px rgba(12, 53, 98, 0.12);
}

@media (max-width: 1080px) {
  .earth-visual {
    min-height: 480px;
  }

  .globe-stage {
    width: min(700px, 94vw);
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .earth-visual {
    min-height: 360px;
    padding: 0;
  }

  .globe-stage {
    width: min(520px, 96vw);
    min-height: 360px;
  }
}

@media (max-width: 420px) {
  .earth-visual {
    min-height: 300px;
  }

  .globe-stage {
    width: min(390px, 98vw);
    min-height: 300px;
  }
}

/* Left-background globe placement */
.hero {
  min-height: 900px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
}

.hero-copy {
  z-index: 3;
}

.hero-copy,
.hero-logo,
.earth-visual,
.globe-stage {
  -webkit-user-select: none;
  user-select: none;
}

.hero-logo {
  -webkit-user-drag: none;
}

body.is-globe-dragging,
body.is-globe-dragging * {
  cursor: grabbing !important;
  -webkit-user-select: none;
  user-select: none;
}

.earth-visual {
  position: absolute;
  left: clamp(-620px, -40vw, -420px);
  top: 54px;
  z-index: 1;
  width: min(1060px, 88vw);
  min-height: 740px;
  margin: 0;
  pointer-events: none;
}

.earth-visual::after {
  display: none;
}

.earth-visual .globe-stage {
  width: min(1040px, 88vw);
  min-height: 740px;
  pointer-events: auto;
}

@media (max-width: 1180px) {
  .hero {
    min-height: 860px;
  }

  .earth-visual {
    left: -520px;
    top: 60px;
    width: 980px;
    min-height: 700px;
  }

  .earth-visual .globe-stage {
    width: 980px;
    min-height: 700px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-bottom: 300px;
  }

  .earth-visual {
    left: -150px;
    top: auto;
    bottom: 16px;
    width: 520px;
    min-height: 360px;
  }

  .earth-visual .globe-stage {
    width: 520px;
    min-height: 360px;
  }

  .earth-visual::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-bottom: 260px;
  }

  .earth-visual {
    left: -120px;
    bottom: -20px;
    width: 420px;
    min-height: 300px;
  }

  .earth-visual .globe-stage {
    width: 420px;
    min-height: 300px;
  }
}
