:root {
  --navy-950: #050d1c;
  --navy-900: #071426;
  --navy-850: #0a1a30;
  --navy-800: #0c2039;
  --cyan: #1bc8ff;
  --cyan-light: #79dcff;
  --blue: #0f8fff;
  --text: #eaf1ff;
  --muted: #9eabc1;
  --line: rgba(133, 178, 230, 0.14);
  --surface: rgba(11, 30, 53, 0.66);
  --container: 1380px;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--navy-950);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  color: #02111f;
  background: var(--cyan);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 13, 28, 0.86);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 2px;
  user-select: none;
  font-family: inherit;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(11, 30, 53, 0.85);
  border: 1px solid rgba(76, 215, 246, 0.35);
  border-radius: 8px;
  color: #dae2fd;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.2;
  font-family: inherit;
}

.lang-trigger:hover,
.lang-trigger:focus-visible,
.language-switcher.is-open .lang-trigger {
  border-color: #4cd7f6;
  background: rgba(16, 44, 77, 0.95);
  box-shadow: 0 0 14px rgba(76, 215, 246, 0.25);
  color: #ffffff;
}

.lang-trigger:focus-visible {
  outline: 2px solid #4cd7f6;
  outline-offset: 1px;
}

.lang-globe-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4cd7f6;
  flex-shrink: 0;
}

.lang-current-flag,
.lang-flag-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.lang-current-flag {
  color: transparent;
}

.lang-flag-svg {
  display: block;
  width: 20px;
  height: 14px;
  border-radius: 2.5px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  object-fit: cover;
}

.lang-current-name {
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  white-space: nowrap;
}

.lang-chevron-wrapper {
  display: inline-flex;
  align-items: center;
  color: #8ba3cb;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  margin-left: 1px;
}

.lang-trigger:hover .lang-chevron-wrapper,
.language-switcher.is-open .lang-chevron-wrapper {
  color: #4cd7f6;
}

.language-switcher.is-open .lang-chevron-wrapper {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 155px;
  background: rgba(9, 23, 41, 0.96);
  border: 1px solid rgba(76, 215, 246, 0.3);
  border-radius: 10px;
  box-shadow:
    0 12px 32px rgba(2, 11, 29, 0.75),
    0 0 20px rgba(76, 215, 246, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.language-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #c4d2e7;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  outline: none;
  font-family: inherit;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(76, 215, 246, 0.12);
  color: #ffffff;
}

.lang-option.is-active {
  background: rgba(76, 215, 246, 0.16);
  color: #4cd7f6;
  font-weight: 600;
}

.lang-option-name {
  flex: 1 1 auto;
  white-space: nowrap;
}

.lang-check-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #4cd7f6;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: 140px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.logo-max {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.logo-seller {
  margin-left: 6px;
  color: #bac5d9;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: #b9c5d8;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--cyan-light);
}

.primary-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, #087deb, #10bde8);
  box-shadow:
    0 10px 30px rgba(10, 155, 241, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 38px rgba(10, 155, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(27, 200, 255, 0.45);
  outline-offset: 3px;
}

.button-sm {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 12px;
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-outline {
  border-color: rgba(43, 203, 255, 0.55);
  background: rgba(6, 24, 43, 0.52);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--cyan);
  background: rgba(13, 54, 78, 0.7);
  box-shadow: 0 10px 30px rgba(0, 151, 230, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(11, 30, 53, 0.8);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%,
      rgba(10, 100, 178, 0.14),
      transparent 33%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(48, 188, 255, 0.35),
      transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.hero-glow-one {
  top: 150px;
  right: -120px;
  background: #00bfff;
}

.hero-glow-two {
  bottom: -260px;
  left: 15%;
  background: #0e69ff;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

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

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  max-width: 630px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 69px);
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--cyan-light);
}

.hero-lead {
  max-width: 585px;
  margin-bottom: 32px;
  color: #b4c1d4;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trusted {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
}

.trusted p {
  margin: 0;
  color: #8f9db3;
  font-size: 12px;
}

.trusted strong {
  color: #f2f6ff;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  color: #d8e8f9;
  background: linear-gradient(135deg, #193b58, #80634c);
  font-size: 8px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 13% 3% 6%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 157, 255, 0.22);
  filter: blur(60px);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: 0;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.45));
}

.hero-visual picture {
  display: block;
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(43, 200, 255, 0.15);
  border-radius: 50%;
}

.orbit-one {
  inset: 5% 8%;
  transform: rotate(-15deg);
}

.orbit-two {
  inset: 20% 0 10% 20%;
  transform: rotate(17deg);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 180px;
  padding: 12px 15px;
  border: 1px solid rgba(87, 196, 255, 0.24);
  border-radius: 12px;
  background: rgba(6, 22, 40, 0.82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 11%;
  right: -4%;
  animation: float 5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 8%;
  left: 2%;
  animation: float 5s 1.2s ease-in-out infinite;
}

.floating-card small {
  display: block;
  color: #8798b2;
  font-size: 9px;
}

.floating-card strong {
  display: block;
  color: #dff8ff;
  font-size: 13px;
}

.floating-card-top strong {
  color: #5ee1b2;
}

.floating-card svg {
  width: 30px;
  padding: 6px;
  border-radius: 8px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  background: rgba(25, 192, 255, 0.09);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38e1b0;
  box-shadow:
    0 0 0 5px rgba(56, 225, 176, 0.1),
    0 0 18px #38e1b0;
}

@keyframes float {

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

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

.partner-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.partner-row>span {
  color: #63758d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.partner-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  color: #b8c8de;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 7px 12px;
  border: 1px solid rgba(123, 153, 190, 0.22);
  border-radius: 12px;
  background: rgba(13, 30, 55, 0.68);
  color: #c5d4e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 196, 255, 0.68);
  background: rgba(17, 44, 76, 0.88);
  box-shadow: 0 10px 25px rgba(0, 152, 255, 0.12);
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 100px;
  height: 30px;
  object-fit: contain;
}

.partner-logo-viettel img {
  width: 86px;
  height: 34px;
}

.partner-logo-spx img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.partner-mark {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: #071226;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.landing-mark {
  background: linear-gradient(135deg, #7de7ff, #138df4);
  box-shadow: 0 0 16px rgba(26, 186, 255, 0.22);
}

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

.section-intro {
  background: linear-gradient(180deg, #060f20, #081528);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.1vw, 56px);
  font-weight: 780;
}

.section-heading p,
.global-copy>p,
.faq-intro>p,
.signup-copy>p {
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg,
      rgba(15, 39, 67, 0.78),
      rgba(7, 21, 39, 0.82));
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(90px);
  opacity: 0;
  content: "";
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 202, 255, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.feature-card:hover::after,
.feature-card.featured::after {
  opacity: 0.12;
}

.feature-card.featured {
  border-color: rgba(43, 202, 255, 0.3);
  background: linear-gradient(145deg,
      rgba(12, 50, 79, 0.9),
      rgba(7, 21, 39, 0.82));
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(68, 205, 255, 0.24);
  border-radius: 13px;
  color: var(--cyan-light);
  background: rgba(21, 163, 226, 0.08);
}

.icon-box svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.feature-number {
  position: absolute;
  top: 32px;
  right: 28px;
  color: rgba(186, 219, 244, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.feature-card a,
.text-link {
  position: relative;
  z-index: 2;
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 700;
}

.feature-card a span,
.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.feature-card a:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

.global-section {
  overflow: hidden;
  background: #050d1c;
}

.global-section::before {
  position: absolute;
  inset: 15% auto auto -14%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #0c6eb8;
  filter: blur(160px);
  opacity: 0.13;
  content: "";
}

.global-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.world-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(90, 180, 238, 0.17);
  border-radius: 30px;
  background:
    radial-gradient(circle at 45% 43%,
      rgba(0, 142, 255, 0.18),
      transparent 38%),
    linear-gradient(145deg, #0a1e35, #061120);
  box-shadow: var(--shadow);
}

.world-card::before,
.map-dots {
  position: absolute;
  inset: 70px 36px 100px;
  content: "";
}

.world-card::before {
  opacity: 0.65;
  background-image: radial-gradient(circle,
      rgba(72, 198, 255, 0.75) 1px,
      transparent 1.5px);
  background-size: 9px 9px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='white' d='M65 120l80-70 130 10 42 71-58 41-11 60-86 32-71-52zm286 39 89-99 83 20 15 67 62 36-37 79-16 133-67 54-52-132-92-56zm238-96 173-33 152 75-46 49-78 19-28 75-75 1-78-68zm190 239 94-39 71 33-4 88-106 9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='white' d='M65 120l80-70 130 10 42 71-58 41-11 60-86 32-71-52zm286 39 89-99 83 20 15 67 62 36-37 79-16 133-67 54-52-132-92-56zm238-96 173-33 152 75-46 49-78 19-28 75-75 1-78-68zm190 239 94-39 71 33-4 88-106 9z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.world-card::after {
  position: absolute;
  top: 32%;
  left: 16%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent 35%, var(--cyan));
  box-shadow: 0 0 12px var(--cyan);
  opacity: 0.3;
  content: "";
  transform: rotate(8deg);
}

.location {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(83, 201, 255, 0.25);
  border-radius: 8px;
  color: #cbefff;
  background: rgba(4, 17, 31, 0.83);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  font-size: 10px;
}

.location i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.location-us {
  top: 31%;
  left: 17%;
}

.location-eu {
  top: 24%;
  left: 50%;
}

.location-asia {
  top: 43%;
  right: 8%;
}

.metric-card {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 22px;
  border: 1px solid rgba(109, 192, 242, 0.16);
  border-radius: 15px;
  background: rgba(5, 18, 34, 0.88);
  backdrop-filter: blur(12px);
}

.metric-card small {
  color: var(--muted);
}

.metric-card strong {
  color: var(--cyan-light);
  font-size: 30px;
  line-height: 1;
}

.metric-card strong span {
  color: #e9f4ff;
  font-size: 12px;
  font-weight: 600;
}

.global-copy h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: #c1cbda;
  font-size: 14px;
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(27, 200, 255, 0.1);
  font-size: 11px;
}

.process-section {
  background: linear-gradient(180deg, #071426, #06101e);
}

.process-section .section-heading {
  max-width: 650px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.process-item {
  position: relative;
  min-height: 220px;
  padding: 30px 45px 30px 0;
  border-top: 1px solid var(--line);
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: -1px;
  right: 36px;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  content: "";
}

.step-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  border: 1px solid rgba(61, 202, 255, 0.28);
  border-radius: 50%;
  color: var(--cyan-light);
  background: #0a2139;
  font-size: 12px;
  font-weight: 800;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.process-item p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
}

.stats-strip {
  padding: 55px 0;
  border-block: 1px solid var(--line);
  background: rgba(8, 27, 48, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 12px 30px;
  text-align: center;
}

.stat:not(:last-child) {
  border-right: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-light);
  font-size: clamp(30px, 3.5vw, 45px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.careers-section {
  padding-bottom: 70px;
  background: #050d1c;
}

.careers-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 58px;
  overflow: hidden;
  border: 1px solid rgba(58, 194, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 50%,
      rgba(0, 155, 255, 0.18),
      transparent 30%),
    linear-gradient(125deg, #0a2540, #081426);
}

.careers-card::after {
  position: absolute;
  top: -50%;
  right: 14%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(100, 213, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.careers-card h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(32px, 3.7vw, 50px);
}

.careers-card .button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.faq-section {
  padding-top: 70px;
  background: #050d1c;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq-intro h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.signup-section {
  padding-top: 40px;
  background: #050d1c;
}

.signup-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  padding: 64px;
  overflow: hidden;
  border: 1px solid rgba(52, 195, 255, 0.25);
  border-radius: 32px;
  background:
    radial-gradient(circle at 4% 95%,
      rgba(18, 123, 221, 0.25),
      transparent 30%),
    linear-gradient(135deg, #0a2340, #071526);
  box-shadow: var(--shadow);
}

.signup-card::before {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(64, 196, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(64, 196, 255, 0.03),
    0 0 0 110px rgba(64, 196, 255, 0.02);
  content: "";
}

.signup-copy,
.signup-form {
  position: relative;
  z-index: 2;
}

.signup-copy h2 {
  font-size: clamp(39px, 4.4vw, 58px);
}

.signup-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 27px;
  color: #bcd0e2;
  font-size: 12px;
}

.signup-benefits span::first-letter {
  color: var(--cyan);
}

.signup-form {
  padding: 28px;
  border: 1px solid rgba(129, 192, 230, 0.16);
  border-radius: 20px;
  background: rgba(4, 15, 29, 0.58);
  backdrop-filter: blur(10px);
}

.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: #c9d4e5;
  font-size: 11px;
  font-weight: 700;
}

.form-row input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(127, 170, 210, 0.2);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: rgba(7, 25, 45, 0.8);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row input::placeholder {
  color: #5f7089;
}

.form-row input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(27, 200, 255, 0.1);
}

.form-row input.invalid {
  border-color: #ff7285;
}

.form-submit {
  width: 100%;
  margin-top: 7px;
  border: 0;
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  text-align: center;
  color: #66e5b3;
  font-size: 12px;
}

.site-footer {
  padding: 75px 0 28px;
  border-top: 1px solid var(--line);
  background: #030914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 16px;
  color: #78889f;
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand>a:last-child {
  color: var(--cyan-light);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #dfe9f7;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.footer-column a {
  color: #78889f;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--cyan-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #5e6f85;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

.subpage-main .subpage-visual.reveal {
  transform: translateY(24px) scale(0.98);
}

.subpage-main .subpage-visual.reveal.visible {
  transform: translateY(0) scale(1);
}

.subpage-main .product-tab.reveal {
  transform: translateY(14px);
  transition-duration: 0.55s;
}

.subpage-main .product-tab.reveal.visible {
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 11px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-visual img {
    width: 100%;
  }

  .floating-card-top {
    right: 0;
  }

  .global-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    background: rgba(5, 13, 28, 0.9);
    backdrop-filter: blur(16px);
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: rgba(5, 13, 28, 0.98);
    opacity: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.2s ease,
      padding 0.3s ease;
  }

  .primary-nav.open {
    max-height: 470px;
    padding-block: 12px 24px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .primary-nav a {
    padding: 12px 0;
    font-size: 14px;
  }

  .primary-nav a.active::after {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .global-grid,
  .faq-grid,
  .signup-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 720px;
    margin: 20px auto 0;
  }

  .partner-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-list {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .global-grid {
    gap: 55px;
  }

  .global-visual {
    order: 2;
  }

  .global-copy {
    order: 1;
  }

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

  .process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: auto;
    padding: 24px 0;
  }

  .process-item .step-index {
    grid-row: 1 / span 2;
  }

  .process-item h3,
  .process-item p {
    grid-column: 2;
  }

  .process-item::after {
    display: none;
  }

  .careers-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-grid {
    gap: 48px;
  }

  .signup-card {
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-switcher .lang-trigger {
    padding: 5px 9px;
    font-size: 12px;
  }

  .logo-max {
    font-size: 26px;
  }

  .brand-logo {
    width: 122px;
    max-height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 38px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .hero-lead {
    font-size: 14px;
  }

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

  .trusted {
    margin-top: 27px;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  .floating-card {
    min-width: 145px;
    padding: 9px 11px;
  }

  .floating-card-top {
    top: 4%;
  }

  .floating-card-bottom {
    left: -2%;
    bottom: 2%;
  }

  .partner-row {
    margin-top: 52px;
  }

  .partner-list {
    justify-content: flex-start;
  }

  .partner-logo {
    font-size: 11px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  h2 {
    font-size: 38px;
  }

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

  .feature-card {
    min-height: 280px;
  }

  .world-card {
    min-height: 360px;
  }

  .world-card::before,
  .map-dots {
    inset: 55px 18px 90px;
  }

  .location {
    font-size: 8px;
  }

  .location-us {
    left: 7%;
  }

  .location-asia {
    right: 3%;
  }

  .metric-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat {
    padding: 8px;
  }

  .careers-card {
    padding: 35px 25px;
  }

  .careers-card .button {
    width: 100%;
  }

  .signup-card {
    width: 100%;
    padding: 45px 20px;
    border-radius: 0;
  }

  .signup-form {
    padding: 20px 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Ecosystem section matched to the supplied 3x2 reference. */
.ecosystem-section>.container {
  width: min(calc(100% - 48px), 980px);
}

.ecosystem-section .home-heading h2 {
  margin: 10px 0 5px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.05;
}

.ecosystem-section .home-heading p {
  color: #a7b6ca;
  font-size: 12px;
}

.ecosystem-section .pill-label {
  padding: 5px 15px;
  font-size: 9px;
}

.ecosystem-section .ecosystem-grid {
  gap: 13px;
  margin-top: 25px;
}

.ecosystem-section .ecosystem-card {
  min-height: 390px;
  padding: 14px 13px 13px;
  border-color: color-mix(in srgb, var(--tone) 42%, transparent);
  border-radius: 10px;
  background: linear-gradient(155deg,
      color-mix(in srgb, var(--tone) 13%, #061329),
      rgba(2, 14, 34, 0.985) 70%);
  box-shadow:
    inset 0 0 32px color-mix(in srgb, var(--tone) 7%, transparent),
    0 14px 35px rgba(0, 0, 0, 0.24);
}

.ecosystem-section .ecosystem-card:nth-child(n + 4) {
  min-height: 300px;
}

.ecosystem-section .product-card-head {
  align-items: center;
  gap: 9px;
}

.ecosystem-section .product-card-head>div {
  min-width: 0;
}

.ecosystem-section .product-logo {
  position: relative;
  display: grid;
  width: 45px;
  height: 50px;
  grid-template-rows: 25px 1fr;
  padding: 5px 3px 3px;
  border-radius: 8px;
  place-items: center;
}

.ecosystem-section .product-logo svg {
  width: 22px;
  height: 22px;
}

.ecosystem-section .product-logo small {
  color: #eaf7ff;
  font-size: 5.7px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: center;
}

.ecosystem-section .product-card-head h3 {
  margin: 0;
  color: #f5f9ff;
  font-size: 15px;
  line-height: 1.15;
}

.ecosystem-section .product-card-head p {
  margin: 3px 0 0;
  color: var(--tone);
  font-size: 9px;
  line-height: 1.28;
}

.ecosystem-section .product-art {
  min-height: 160px;
  margin: 4px 0 7px;
}

.ecosystem-section .sales-art {
  position: relative;
  display: block;
}

.ecosystem-section .product-art {
  padding: 18px;

}


.ecosystem-section .sales-art::before,
.ecosystem-section .sales-art::after {
  position: absolute;
  z-index: 0;
  top: 52%;
  left: 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(25, 177, 255, 0.65),
      transparent);
  content: "";
  transform-origin: center;
}

.ecosystem-section .sales-art::before {
  transform: translate(-50%, -50%) rotate(28deg);
}

.ecosystem-section .sales-art::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.ecosystem-section .sales-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(54, 159, 255, 0.52);
  border-radius: 8px;
  background: linear-gradient(145deg, #0a3568, #06162f);
  box-shadow: 0 0 14px rgba(0, 116, 255, 0.22);
  place-items: center;
}

.ecosystem-section .sales-node .brand-icon {
  width: 22px;
  height: 22px;
}

.ecosystem-section .sales-node svg {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.ecosystem-section .sales-art span.node-shopee {
  top: 12%;
  left: 12%;
  transform: none;
}

.ecosystem-section .sales-art span.node-cart {
  top: 5%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(17, 181, 255, 0.48);
  transform: translateX(-50%);
}

.ecosystem-section .node-cart svg {
  color: #25e5ff;
}

.ecosystem-section .sales-art span.node-device {
  top: 12%;
  right: 12%;
  transform: none;
}

.ecosystem-section .node-device svg {
  color: #ffc54a;
}

.ecosystem-section .sales-art span.node-tiktok {
  bottom: 6%;
  left: 17%;
  transform: none;
}

.ecosystem-section .sales-hub {
  position: absolute;
  z-index: 3;
  top: 55%;
  left: 50%;
  width: 27px;
  height: 27px;
  border: 1px solid #1ac9ff;
  background: linear-gradient(145deg, #1bcfff, #0c4cff);
  box-shadow:
    0 0 18px #0b8dff,
    0 0 35px rgba(0, 157, 255, 0.55);
  transform: translate(-50%, -50%) rotate(45deg);
}

.ecosystem-section .sales-hub::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.ecosystem-section .chip-art {
  isolation: isolate;
}

.ecosystem-section .chip-art::before,
.ecosystem-section .chip-art::after {
  position: absolute;
  width: 112px;
  height: 79px;
  border: 1px solid rgba(32, 155, 255, 0.55);
  border-radius: 14px;
  background: linear-gradient(145deg, #074994, #041a3b);
  box-shadow: 0 12px 20px rgba(0, 80, 195, 0.28);
  content: "";
  transform: rotateX(58deg) rotateZ(-35deg);
}

.ecosystem-section .chip-art::before {
  z-index: -2;
  transform: translateY(25px) rotateX(58deg) rotateZ(-35deg);
  opacity: 0.46;
}

.ecosystem-section .chip-art::after {
  z-index: -1;
  transform: translateY(13px) rotateX(58deg) rotateZ(-35deg);
  opacity: 0.68;
}

.ecosystem-section .chip-art svg {
  width: 116px;
  height: 116px;
  padding: 24px;
  animation: ecosystemFloat 5.5s ease-in-out infinite;
}

.ecosystem-section .chat-art {
  min-height: 160px;
  padding: 26px 27px;
}


.ecosystem-section .chat-art svg {
  right: 10px;
  bottom: 9px;
}

.ecosystem-section .warehouse-art {
  gap: 5px;
}

.ecosystem-section .warehouse-art .warehouse-core {
  width: 112px;
  height: 112px;
  color: #27c9ff;
  filter: drop-shadow(0 15px 20px rgba(0, 162, 255, 0.42));
}

.ecosystem-section .warehouse-truck {
  display: grid;
  width: 39px;
  height: 29px;
  color: #25d6ff;
  border-bottom: 2px solid currentColor;
  place-items: center;
}

.ecosystem-section .warehouse-truck svg {
  width: 28px;
  height: 28px;
  padding: 3px;
  filter: none;
}

.ecosystem-section .growth-art,
.ecosystem-section .book-art {
  min-height: 160px;
}

.ecosystem-section .book-art svg {
  color: #27e389;
}

.ecosystem-section .ecosystem-card ul {
  grid-template-columns: 1fr;
  gap: 6px;
  padding-top: 10px;
}

.ecosystem-section .ecosystem-card li {
  padding-left: 15px;
  color: #c0cde0;
  font-size: 12px;
  line-height: 1.2;
}

.ecosystem-section .ecosystem-card li::before {
  top: 0;
  left: -3px;
  color: #24c9ff;
  border-color: #24c9ff;
}

.ecosystem-section .mini-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 2px;
  padding-top: 9px;
}

.ecosystem-section .mini-features>span {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  color: #aebed2;
  text-align: center;
}

.ecosystem-section .mini-features svg {
  width: 21px;
  height: 21px;
  color: var(--tone);
}

.ecosystem-section .mini-features em {
  font-size: 11px;
  font-style: normal;
  line-height: 1.18;
}

.ecosystem-section .ecosystem-connect {
  min-height: 42px;
  margin-top: 12px;
  padding: 8px 13px;
  background: rgba(4, 20, 46, 0.9);
}

.ecosystem-section .ecosystem-connect strong {
  font-size: 12px;
  font-weight: 600;
}

.ecosystem-section .connect-brands {
  gap: 12px;
}

.ecosystem-section .connect-brands .brand-icon {
  width: 19px;
  height: 19px;
}

.ecosystem-section .connect-brands .icon-facebook {
  color: #1877f2;
}

.ecosystem-section .ecosystem-card:hover {
  border-color: color-mix(in srgb, var(--tone) 72%, transparent);
  transform: translateY(-4px);
}

@keyframes ecosystemFloat {

  0%,
  100% {
    transform: rotateX(55deg) rotateZ(-35deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(55deg) rotateZ(-35deg) translate3d(4px, -6px, 0);
  }
}

@media (max-width: 640px) {
  .ecosystem-section>.container {
    width: calc(100% - 20px);
  }

  .ecosystem-section .home-heading h2 {
    font-size: clamp(28px, 8vw, 37px);
  }

  .ecosystem-section .home-heading p {
    font-size: 9.5px;
  }

  .ecosystem-section .ecosystem-grid {
    gap: 7px;
    margin-top: 18px;
  }

  .ecosystem-section .ecosystem-card {
    min-height: 263px;
    padding: 8px 7px 9px;
  }

  .ecosystem-section .ecosystem-card:nth-child(n + 4) {
    min-height: 205px;
  }

  .ecosystem-section .product-logo {
    width: 34px;
    height: 40px;
    grid-template-rows: 20px 1fr;
    padding: 3px 2px 2px;
  }

  .ecosystem-section .product-logo svg {
    width: 18px;
    height: 18px;
  }

  .ecosystem-section .product-logo small {
    font-size: 4.2px;
  }

  .ecosystem-section .product-card-head {
    gap: 5px;
  }

  .ecosystem-section .product-card-head h3 {
    font-size: 10.5px;
  }

  .ecosystem-section .product-card-head p {
    font-size: 6.5px;
  }

  .ecosystem-section .product-art {
    min-height: 88px;
  }

  .ecosystem-section .sales-node {
    width: 25px;
    height: 25px;
    border-radius: 6px;
  }

  .ecosystem-section .sales-node .brand-icon,
  .ecosystem-section .sales-node svg {
    width: 15px;
    height: 15px;
  }

  .ecosystem-section .sales-art span.node-cart {
    width: 34px;
    height: 34px;
  }

  .ecosystem-section .sales-hub {
    width: 18px;
    height: 18px;
  }

  .ecosystem-section .sales-hub::after {
    inset: 5px;
  }

  .ecosystem-section .chip-art::before,
  .ecosystem-section .chip-art::after {
    width: 68px;
    height: 46px;
    border-radius: 9px;
  }

  .ecosystem-section .chip-art svg {
    width: 72px;
    height: 72px;
    padding: 14px;
  }

  .ecosystem-section .chat-art {
    min-height: 88px;
    padding: 12px 9px;
  }

  .ecosystem-section .warehouse-art .warehouse-core {
    width: 73px;
    height: 73px;
  }

  .ecosystem-section .warehouse-truck {
    width: 20px;
    height: 18px;
  }

  .ecosystem-section .warehouse-truck svg {
    width: 18px;
    height: 18px;
    padding: 1px;
  }

  .ecosystem-section .growth-art,
  .ecosystem-section .book-art {
    min-height: 88px;
  }

  .ecosystem-section .ecosystem-card ul {
    gap: 4px;
    padding-top: 7px;
  }

  .ecosystem-section .ecosystem-card li {
    padding-left: 10px;
    font-size: 7.2px;
    line-height: 1.08;
  }

  .ecosystem-section .mini-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 7px;
  }

  .ecosystem-section .mini-features svg {
    width: 15px;
    height: 15px;
  }

  .ecosystem-section .mini-features em {
    font-size: 5.8px;
  }

  .ecosystem-section .ecosystem-connect {
    min-height: 35px;
    margin-top: 7px;
    padding: 6px 8px;
  }

  .ecosystem-section .ecosystem-connect strong {
    font-size: 6.8px;
  }

  .ecosystem-section .connect-brands {
    gap: 7px;
  }

  .ecosystem-section .connect-brands .brand-icon {
    width: 13px;
    height: 13px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-section .chip-art svg {
    animation: none;
  }
}

/* Ecosystem reference layout: compact three-column product cards with neon product artwork. */
.ecosystem-section {
  padding: 62px 0 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 76, 184, 0.14), transparent 45%),
    linear-gradient(180deg, #020919 0%, #031126 55%, #020a1a 100%);
}

.ecosystem-section>.container {
  position: relative;
}

.ecosystem-section .home-heading h2 {
  margin-top: 13px;
  font-size: clamp(38px, 4.1vw, 58px);
}

.ecosystem-section .home-heading p {
  font-size: 13px;
  line-height: 1.45;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 29px;
}

.ecosystem-card {
  min-height: 420px;
  padding: 15px 14px 14px;
  border-radius: 11px;
  background: linear-gradient(160deg,
      color-mix(in srgb, var(--tone) 12%, #06152c),
      rgba(3, 15, 36, 0.98) 68%);
  box-shadow:
    inset 0 0 26px rgba(0, 88, 180, 0.08),
    0 13px 28px rgba(0, 0, 0, 0.24);
}

.ecosystem-card::after {
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--tone) 48%, transparent),
      transparent);
  content: "";
}

.product-card-head {
  gap: 10px;
}

.product-logo {
  width: 46px;
  height: 46px;
  border-radius: 9px;
}

.product-card-head h3 {
  font-size: 16px;
}

.product-card-head p {
  font-size: 10px;
  line-height: 1.25;
}

.product-art {
  min-height: 175px;
  margin: 5px 0 9px;
}

.sales-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 5px 14px;
}

.sales-art>span {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 13px color-mix(in srgb, var(--tone) 44%, transparent));
}

.sales-art svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: #dbf8ff;
  border: 1px solid rgba(45, 165, 255, 0.55);
  border-radius: 10px;
  background: linear-gradient(145deg, #1167bf, #06244e);
}

.sales-art .sales-bag {
  transform: translateY(9px);
}

.sales-art .sales-bag svg {
  color: #fff;
  background: linear-gradient(145deg, #1380ed, #082b68);
}

.sales-art .sales-cart {
  grid-column: 2;
  transform: translateY(20px);
}

.sales-art .sales-cart svg {
  width: 65px;
  height: 65px;
  padding: 14px;
  color: #24e6ff;
  border: 2px solid #159dfb;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(24, 191, 255, 0.42);
}

.sales-art .sales-box {
  transform: translateY(9px);
}

.sales-art .sales-box svg {
  color: #ffc54c;
  background: linear-gradient(145deg, #563c9e, #11285d);
}

.sales-art .sales-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #071936;
}

.sales-art .sales-social .brand-icon {
  width: 22px;
  height: 22px;
}

.sales-art .sales-social.icon-tiktok {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  color: #25f4ee;
}

.sales-art .sales-social.icon-shopee {
  grid-row: 2;
  grid-column: 3;
  align-self: end;
  color: #ee4d2d;
}

.chip-art svg {
  width: 126px;
  height: 126px;
  padding: 23px;
  border-width: 3px;
  border-radius: 23px;
  box-shadow: 0 20px 28px rgba(0, 111, 255, 0.28);
}

.chat-art {
  min-height: 175px;
  padding: 29px 31px;
}



.chat-art span {
  padding: 7px 10px;
  font-size: 9px;
}

.chat-art svg {
  right: 13px;
  bottom: 11px;
  width: 44px;
  height: 44px;
}

.warehouse-art svg {
  width: 125px;
  height: 125px;
}

.warehouse-art span {
  font-size: 38px;
}

.growth-art {
  min-height: 175px;
  padding: 25px 53px 20px;
}

.growth-art svg {
  width: 104px;
  height: 104px;
}

.book-art svg {
  width: 125px;
  height: 125px;
}

.book-art b {
  width: 50px;
  height: 40px;
  margin-left: -30px;
}

.ecosystem-card ul {
  gap: 8px 10px;
  padding-top: 13px;
}

.ecosystem-card li {
  font-size: 9px;
}

.ecosystem-card li::before {
  width: 11px;
  height: 11px;
}

.mini-features {
  gap: 3px;
  padding-top: 12px;
}

.mini-features span {
  font-size: 8px;
  line-height: 1.25;
}

.ecosystem-connect {
  margin-top: 13px;
  padding: 11px 15px;
  border-radius: 9px;
  font-size: 10px;
}

@media (max-width: 640px) {
  .ecosystem-section {
    padding: 30px 0 22px;
  }

  .ecosystem-section>.container {
    width: calc(100% - 20px);
  }

  .ecosystem-section .home-heading h2 {
    margin-top: 11px;
    font-size: clamp(28px, 8vw, 37px);
  }

  .ecosystem-section .home-heading p {
    font-size: 10px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .ecosystem-card {
    min-height: 263px;
    padding: 8px 7px 9px;
    border-radius: 8px;
  }

  .product-card-head {
    gap: 5px;
    align-items: flex-start;
  }

  .product-logo {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }

  .product-logo svg {
    width: 20px;
    height: 20px;
  }

  .product-card-head h3 {
    font-size: 11px;
    line-height: 1.1;
  }

  .product-card-head p {
    margin-top: 3px;
    font-size: 6.5px;
    line-height: 1.25;
  }

  .product-art {
    min-height: 88px;
    margin: 2px 0 4px;
  }

  .sales-art {
    gap: 1px;
    padding: 2px 3px;
  }

  .sales-art svg {
    width: 27px;
    height: 27px;
    padding: 5px;
    border-radius: 6px;
  }

  .sales-art .sales-cart svg {
    width: 43px;
    height: 43px;
    padding: 9px;
    border-width: 1px;
  }

  .sales-art .sales-social {
    width: 25px;
    height: 25px;
    border-radius: 6px;
  }

  .sales-art .sales-social .brand-icon {
    width: 15px;
    height: 15px;
  }

  .chip-art svg {
    width: 76px;
    height: 76px;
    padding: 13px;
    border-width: 2px;
    border-radius: 14px;
  }

  .chat-art {
    min-height: 88px;
    padding: 13px 11px;
  }

  .chat-art::before {
    inset: 10px 8px;
    border-radius: 7px;
  }

  .chat-art span {
    margin: 2px 0;
    padding: 4px 5px;
    border-radius: 5px;
    font-size: 5px;
  }

  .chat-art svg {
    right: 7px;
    bottom: 5px;
    width: 25px;
    height: 25px;
  }

  .warehouse-art svg {
    width: 77px;
    height: 77px;
  }

  .warehouse-art span {
    font-size: 24px;
  }

  .growth-art {
    min-height: 88px;
    gap: 3px;
    padding: 12px 14px 9px;
  }

  .growth-art i {
    width: 9px;
    height: 18px;
  }

  .growth-art i:nth-child(2) {
    height: 28px;
  }

  .growth-art i:nth-child(3) {
    height: 39px;
  }

  .growth-art i:nth-child(4) {
    height: 51px;
  }

  .growth-art svg {
    width: 60px;
    height: 60px;
    transform: translate(18px, -17px);
  }

  .book-art svg {
    width: 77px;
    height: 77px;
  }

  .book-art b {
    width: 29px;
    height: 24px;
    margin-left: -19px;
    font-size: 10px;
  }

  .ecosystem-card ul {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 8px;
  }

  .ecosystem-card li {
    overflow: hidden;
    padding-left: 11px;
    font-size: 6.5px;
    line-height: 1.05;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .ecosystem-card li::before {
    top: 0;
    width: 8px;
    height: 8px;
    font-size: 5px;
  }

  .mini-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px 1px;
    padding-top: 8px;
  }

  .mini-features span {
    font-size: 5.5px;
    line-height: 1.15;
  }

  .ecosystem-connect {
    gap: 5px;
    margin-top: 7px;
    padding: 7px 8px;
    font-size: 6.5px;
  }

  .ecosystem-connect>svg {
    width: 14px;
    height: 14px;
  }

  .connect-brands {
    gap: 7px;
  }

  .connect-brands .brand-icon {
    width: 13px;
    height: 13px;
  }
}

/* Delivery partner logos used in the ecosystem connection strips. */
.connect-brands .dvvc-logo,
.trusted-strip .dvvc-logo {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.connect-brands .dvvc-logo[src*="hal.png"],
.trusted-strip .dvvc-logo[src*="hal.png"] {
  background: #fff;
}

.connect-brands .dvvc-logo[src*="anousith"],
.trusted-strip .dvvc-logo[src*="anousith"] {
  background: #ed1c24;
}

.connect-brands .dvvc-logo[src*="viettel"],
.connect-brands .dvvc-logo[src*="spx-express"],
.trusted-strip .dvvc-logo[src*="viettel"],
.trusted-strip .dvvc-logo[src*="spx-express"] {
  padding: 3px;
  background: #fff;
}

.brand-grid .dvvc-card-logo {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  object-fit: contain;
}

.brand-grid .dvvc-card-logo[src*="hal.png"] {
  padding: 4px;
  border-radius: 10px;
  background: #fff;
}

.brand-grid .dvvc-card-logo[src*="anousith"] {
  padding: 7px;
  border-radius: 10px;
  background: #ed1c24;
}

.brand-grid .dvvc-card-logo[src*="viettel"],
.brand-grid .dvvc-card-logo[src*="spx-express"] {
  padding: 4px;
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 640px) {
  .ecosystem-section .connect-brands .dvvc-logo {
    width: 13px;
    height: 13px;
    border-radius: 2px;
  }

  .trusted-strip .dvvc-logo {
    width: 19px;
    height: 19px;
  }

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

/* Home v2 — homepage rebuilt from the supplied MaxSeller direction. */
.home-v2 {
  --home-bg: #020a19;
  --home-bg-alt: #041126;
  --home-card: rgba(5, 22, 48, 0.88);
  --home-line: rgba(42, 144, 255, 0.28);
  --home-blue: #0c94ff;
  --home-cyan: #26d5ff;
  --home-muted: #9eb1cc;
  background: var(--home-bg);
  line-height: 1.5;
}

.home-v2::before {
  background-image:
    linear-gradient(rgba(38, 132, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 132, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.home-v2 .container {
  width: min(calc(100% - 48px), 1240px);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.home-v2 svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-v2 .site-header,
.site-header {
  height: 78px;
  background: rgba(2, 10, 25, 0.86);
  border-bottom: 1px solid rgba(65, 136, 220, 0.1);
  backdrop-filter: blur(18px);
}

.home-v2 .nav-wrap,
.site-header .nav-wrap {
  width: min(calc(100% - 64px), 1380px);
  margin-inline: auto;
  gap: 24px;
}

.home-v2 .brand-logo,
.site-header .brand-logo {
  width: 148px;
  max-height: 58px;
}

.home-v2 .primary-nav,
.site-header .primary-nav {
  gap: clamp(18px, 2.2vw, 34px);
}

.home-v2 .primary-nav a,
.site-header .primary-nav a {
  color: #bdc9dc;
  font-size: 13px;
  font-weight: 600;
}

.home-v2 .primary-nav a.active::after,
.site-header .primary-nav a.active::after {
  bottom: -23px;
}

.nav-chevron {
  margin-left: 3px;
  color: #7990ad;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-v2 .language-switcher,
.site-header .language-switcher {
  order: 3;
}

.home-v2 .language-switcher .lang-trigger,
.site-header .language-switcher .lang-trigger {
  color: #dae2fd;
  background: rgba(11, 30, 53, 0.85);
}

.home-v2 .button,
.site-header .button {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0e75ff, #1558ff);
  box-shadow:
    0 10px 34px rgba(14, 102, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-v2 .button svg,
.site-header .button svg {
  width: 17px;
  height: 17px;
}

.home-v2 .button-sm,
.site-header .button-sm {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.home-v2 .button-outline,
.site-header .button-outline {
  border-color: rgba(85, 142, 231, 0.42);
  background: rgba(5, 19, 43, 0.65);
  box-shadow: none;
}

.home-v2 .button-outline:hover,
.site-header .button-outline:hover {
  background: rgba(12, 45, 85, 0.76);
}

.hero-v2 {
  position: relative;
  min-height: 650px;
  padding: 126px 0 45px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 48%,
      rgba(0, 107, 255, 0.17),
      transparent 37%),
    linear-gradient(180deg, #020b1b 0%, #020817 100%);
}

.hero-v2::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(2, 10, 25, 0.4), transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(0, 89, 255, 0.18), transparent 40%);
  content: "";
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  min-height: 470px;
  gap: 18px;
}

.hero-v2-copy {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #9ab0cb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-v2 h1 {
  max-width: 600px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(40px, 4.2vw, 55px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.hero-v2 h1 span,
.home-heading h2 span {
  color: transparent;
  background: linear-gradient(100deg, #21d5ff, #1472ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-v2-lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: #9aabc3;
  font-size: 15px;
  line-height: 1.78;
}

.hero-v2 .hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  color: #9eb1ca;
  font-size: 11px;
}

.hero-promises span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-promises i {
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--home-cyan);
  border: 1px solid rgba(38, 213, 255, 0.48);
  border-radius: 50%;
  place-items: center;
}

.hero-promises svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.3;
}

.hero-v2-visual {
  position: relative;
  min-width: 0;
  min-height: 475px;
}

.hero-v2-visual picture {
  position: absolute;
  z-index: 2;
  top: 5%;
  left: -3%;
  width: 112%;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.42));
}

.hero-v2-visual img {
  width: 100%;
}

.dashboard-aura {
  position: absolute;
  inset: 18% 5% 6%;
  background: #0067e9;
  border-radius: 50%;
  filter: blur(86px);
  opacity: 0.25;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 32%;
  left: 5%;
  width: 96%;
  height: 55%;
  border: 1px solid rgba(27, 137, 255, 0.24);
  border-radius: 50%;
  transform: rotate(8deg);
}

.orbit-b {
  top: 37%;
  left: 13%;
  width: 82%;
  height: 43%;
  transform: rotate(-10deg);
}

.channel-bubble {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 43px;
  height: 43px;
  color: #fff;
  border: 1px solid rgba(75, 172, 255, 0.45);
  border-radius: 12px;
  background: rgba(7, 24, 51, 0.9);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.55);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.channel-bubble img {
  width: 24px;
  height: 24px;
}

.brand-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-facebook {
  color: #1877f2;
  -webkit-mask-image: url("assets/images/partners/facebook.svg");
  mask-image: url("assets/images/partners/facebook.svg");
}

.icon-messenger {
  color: #09a8ff;
  -webkit-mask-image: url("assets/images/partners/messenger.svg");
  mask-image: url("assets/images/partners/messenger.svg");
}

.icon-whatsapp {
  color: #25d366;
  -webkit-mask-image: url("assets/images/partners/whatsapp.svg");
  mask-image: url("assets/images/partners/whatsapp.svg");
}

.icon-telegram {
  color: #229ed9;
  -webkit-mask-image: url("assets/images/partners/telegram.svg");
  mask-image: url("assets/images/partners/telegram.svg");
}

.icon-tiktok {
  color: transparent;
  -webkit-mask-image: url("assets/images/partners/tiktok.svg");
  background-image: url("assets/images/partners/tiktok.svg");
}

.icon-shopee {
  color: #ee4d2d;
  -webkit-mask-image: url("assets/images/partners/shopee.svg");
  mask-image: url("assets/images/partners/shopee.svg");
}

.icon-youtube {
  color: #ff0000;
  -webkit-mask-image: url("assets/images/partners/youtube.svg");
  mask-image: url("assets/images/partners/youtube.svg");
}

.icon-instagram {
  color: #e4405f;
  -webkit-mask-image: url("assets/images/partners/instagram.svg");
  mask-image: url("assets/images/partners/instagram.svg");
}

.channel-bubble .brand-icon {
  width: 24px;
  height: 24px;
}

.bubble-tiktok {
  top: 9%;
  left: 23%;
  text-shadow:
    -2px 0 #00d5e8,
    2px 0 #ff2c67;
}

.bubble-shopee {
  top: 10%;
  right: 5%;
}

.bubble-facebook {
  top: 40%;
  right: -2%;
  color: #fff;
  background: #1975ed;
}

.bubble-facebook .brand-icon {
  color: #fff;
}

.bubble-messenger {
  top: 44%;
  left: -2%;
}

.bubble-telegram {
  right: 17%;
  bottom: 7%;
}

.bubble-whatsapp {
  left: 31%;
  bottom: 4%;
}

.hero-slider-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.hero-slider-dots span {
  width: 24px;
  height: 3px;
  background: #31435e;
  border-radius: 4px;
}

.hero-slider-dots span.active {
  background: #1b9fff;
}

.home-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  border-top: 1px solid rgba(40, 112, 203, 0.08);
}

.home-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%,
      rgba(0, 97, 220, 0.09),
      transparent 42%);
  content: "";
}

.home-heading h2 {
  margin: 13px 0 8px;
  color: #f4f8ff;
  font-size: clamp(38px, 4.1vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: none;
}

.home-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-heading.centered {
  text-align: center;
}

.home-heading.centered p {
  margin-inline: auto;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  color: #59c9ff;
  border: 1px solid rgba(27, 148, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 38, 79, 0.65);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.pill-label svg {
  width: 14px;
  height: 14px;
}

.ecosystem-section {
  background: linear-gradient(180deg, #020919, #031126 52%, #020a1a);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 34px;
}

.ecosystem-card {
  --tone: #178cff;
  position: relative;
  min-height: 455px;
  padding: 18px 18px 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--tone) 45%, transparent);
  border-radius: 13px;
  background: linear-gradient(155deg,
      color-mix(in srgb, var(--tone) 10%, transparent),
      rgba(3, 17, 39, 0.95) 48%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 45px rgba(0, 0, 0, 0.18);
}

.ecosystem-card::before {
  position: absolute;
  top: -60px;
  left: 25%;
  width: 180px;
  height: 160px;
  background: var(--tone);
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.13;
  content: "";
}

.tone-blue {
  --tone: #1688ff;
}

.tone-cyan {
  --tone: #19d5ff;
}

.tone-violet {
  --tone: #6a72ff;
}

.tone-sky {
  --tone: #1bbfff;
}

.tone-purple {
  --tone: #934cff;
}

.tone-green {
  --tone: #15d47b;
}

.product-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-logo {
  display: grid;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  color: #dff7ff;
  border: 1px solid color-mix(in srgb, var(--tone) 45%, transparent);
  border-radius: 11px;
  background: linear-gradient(145deg,
      color-mix(in srgb, var(--tone) 42%, #07142c),
      #05142f);
  box-shadow: 0 0 22px color-mix(in srgb, var(--tone) 22%, transparent);
  place-items: center;
}

.product-logo svg {
  width: 27px;
  height: 27px;
}

.product-card-head h3 {
  margin: 0;
  color: #f1f7ff;
  font-size: 17px;
}

.product-card-head p {
  margin: 3px 0 0;
  color: var(--tone);
  font-size: 11px;
}

.product-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 175px;
  margin: 7px 0 10px;
  color: var(--tone);
}

.sales-art {
  gap: 14px;
  font-size: 38px;
}

.sales-art span {
  filter: drop-shadow(0 8px 15px color-mix(in srgb, var(--tone) 50%, transparent));
}

.sales-art span:nth-child(2) {
  font-size: 57px;
  transform: translateY(10px);
}

.chip-art svg {
  width: 118px;
  height: 118px;
  padding: 22px;
  border: 4px solid color-mix(in srgb, var(--tone) 45%, #071d38);
  border-radius: 26px;
  background: linear-gradient(145deg, #0752a7, #061d43);
  filter: drop-shadow(0 16px 20px color-mix(in srgb, var(--tone) 28%, transparent));
  transform: rotateX(55deg) rotateZ(-35deg);
}

.chat-art {
  align-items: flex-start;
  flex-direction: column;
  padding: 30px 38px;
}

.chat-art span {
  position: relative;
  z-index: 2;
  margin: 5px 0;
  padding: 7px 11px;
  color: #bfcaff;
  border-radius: 10px;
  background: rgba(55, 82, 145, 0.55);
  font-size: 9px;
}

.product-art img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: fill;
}

.chat-art span:nth-child(2) {
  align-self: flex-end;
}

.chat-art svg {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 13px;
  width: 48px;
  height: 48px;
}

.warehouse-art {
  gap: 8px;
}

.warehouse-art svg {
  width: 125px;
  height: 125px;
  filter: drop-shadow(0 18px 20px rgba(0, 162, 255, 0.4));
  stroke-width: 1.2;
}

.warehouse-art span {
  color: #22d3ff;
  font-size: 42px;
}

.growth-art {
  align-items: end;
  gap: 9px;
  padding: 25px 65px 20px;
}

.growth-art i {
  width: 20px;
  height: 34px;
  background: linear-gradient(#8d4cff, #3814a3);
  box-shadow: 0 0 15px rgba(134, 66, 255, 0.35);
}

.growth-art i:nth-child(2) {
  height: 56px;
}

.growth-art i:nth-child(3) {
  height: 85px;
}

.growth-art i:nth-child(4) {
  height: 116px;
}

.growth-art svg {
  position: absolute;
  width: 115px;
  height: 115px;
  transform: translate(42px, -36px);
}

.book-art svg {
  width: 125px;
  height: 125px;
  filter: drop-shadow(0 16px 20px rgba(20, 219, 111, 0.3));
}

.book-art b {
  display: grid;
  width: 55px;
  height: 44px;
  margin-left: -34px;
  color: #65ffa2;
  border: 1px solid #24e17a;
  border-radius: 6px;
  background: #0c6e3b;
  place-items: center;
}

.ecosystem-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(99, 155, 221, 0.13);
  list-style: none;
}

.ecosystem-card li {
  position: relative;
  padding-left: 16px;
  color: #abc0da;
  font-size: 10px;
}

.ecosystem-card li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 11px;
  height: 11px;
  color: var(--tone);
  border: 1px solid var(--tone);
  border-radius: 50%;
  content: "✓";
  font-size: 7px;
  place-items: center;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(99, 155, 221, 0.13);
}

.mini-features span {
  color: #9db3ce;
  font-size: 8px;
  text-align: center;
}

.ecosystem-connect {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 13px 18px;
  color: #bfd1e7;
  border: 1px solid rgba(32, 128, 244, 0.28);
  border-radius: 10px;
  background: rgba(5, 24, 52, 0.76);
  font-size: 11px;
}

.ecosystem-connect>svg {
  width: 20px;
  height: 20px;
  color: #22bdff;
}

.connect-brands {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.connect-brands img {
  width: 22px;
  height: 22px;
}

.connect-brands .brand-icon {
  width: 22px;
  height: 22px;
}

.connect-brands b {
  font-size: 19px;
}

.why-section {
  background: linear-gradient(180deg, #02091a, #030e22);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  min-height: 102px;
  padding: 12px 18px;
  border: 1px solid rgba(30, 124, 240, 0.24);
  border-left: 3px solid #25bfff;
  border-radius: 11px;
  background: linear-gradient(100deg,
      rgba(5, 33, 71, 0.94),
      rgba(4, 19, 43, 0.85));
}

.metric-icon,
.reason-list article>span {
  display: grid;
  width: 48px;
  height: 48px;
  color: #19b9ff;
  border: 1px solid rgba(30, 163, 255, 0.3);
  border-radius: 50%;
  background: rgba(4, 47, 93, 0.62);
  place-items: center;
}

.metric-icon svg {
  width: 27px;
  height: 27px;
}

.metric-list strong {
  display: block;
  color: #45c8ff;
  font-size: 27px;
  line-height: 1.05;
}

.metric-list strong.metric-word {
  color: #edf6ff;
  font-size: 14px;
}

.metric-list h3 {
  margin: 4px 0 1px;
  color: #ecf5ff;
  font-size: 12px;
}

.metric-list p {
  margin: 0;
  color: #92a7c2;
  font-size: 9px;
}

.why-copy .home-heading h2 {
  font-size: clamp(43px, 4vw, 57px);
}

.why-copy .home-heading p {
  max-width: 620px;
  margin-top: 15px;
  font-size: 11px;
}

.reason-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(86, 136, 196, 0.15);
}

.reason-list article>span {
  width: 39px;
  height: 39px;
}

.reason-list svg {
  width: 21px;
  height: 21px;
}

.reason-list h3 {
  margin: 0;
  color: #edf5ff;
  font-size: 12px;
}

.reason-list p {
  margin: 2px 0 0;
  color: #8fa4bf;
  font-size: 9px;
}

.trusted-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 24px;
  padding: 14px 20px;
  color: #98abc2;
  border: 1px solid rgba(37, 122, 229, 0.19);
  border-radius: 8px;
  background: rgba(5, 22, 48, 0.7);
  font-size: 16px;
}

.trusted-strip strong {
  color: #24c2ff;
}

.trusted-strip div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trusted-strip img,
.trusted-strip .brand-icon {
  width: 24px;
  height: 24px;
}

.trusted-strip b {
  color: #249bff;
}

.start-section {
  padding-top: 75px;
  background:
    radial-gradient(circle at 50% 48%, rgba(4, 77, 183, 0.18), transparent 46%),
    #02091b;
}

.start-section .home-heading h2 {
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 55px 0 20px;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 345px;
  padding: 24px 20px;
  border: 1px solid rgba(25, 112, 225, 0.3);
  border-radius: 13px;
  background: linear-gradient(180deg,
      rgba(7, 31, 68, 0.82),
      rgba(3, 17, 40, 0.91));
  text-align: center;
}

.step-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: -36px;
  right: -29px;
  color: #149dff;
  content: "›";
  font-size: 40px;
  font-weight: 300;
  text-shadow: 0 0 13px #087cff;
}

.step-number {
  position: absolute;
  top: -39px;
  left: 50%;
  display: grid;
  width: 43px;
  height: 43px;
  color: #eef8ff;
  border: 2px solid #22a4ff;
  border-radius: 50%;
  background: #06162f;
  box-shadow: 0 0 18px rgba(16, 146, 255, 0.38);
  font-size: 20px;
  font-weight: 700;
  transform: translateX(-50%);
  place-items: center;
}

.step-art {
  position: relative;
  display: grid;
  height: 155px;
  color: #2c9eff;
  font-size: 100px;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(31, 121, 255, 0.55);
  place-items: center;
}

.step-art svg {
  width: 105px;
  height: 105px;
  filter: drop-shadow(0 15px 20px rgba(30, 115, 255, 0.48));
}

.step-art i {
  position: absolute;
  font-style: normal;
}

.clipboard-art i {
  right: 19%;
  bottom: 18%;
  display: grid;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 50%;
  background: #277dff;
  font-size: 18px;
  place-items: center;
}

.link-art i {
  display: grid;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 5px;
  background: #176edb;
  font-size: 13px;
  place-items: center;
  text-shadow: none;
}

.link-art i:nth-of-type(1) {
  top: 29px;
  left: 29px;
}

.link-art i:nth-of-type(2) {
  right: 28px;
  bottom: 29px;
}

.step-card h3 {
  margin: 8px 0 10px;
  color: #eef5ff;
  font-size: 15px;
}

.step-card p {
  max-width: 210px;
  margin: 0 auto;
  color: #8da3bf;
  font-size: 10px;
  line-height: 1.7;
}

.security-strip {
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.65fr);
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(25, 112, 225, 0.28);
  border-radius: 12px;
  background: rgba(6, 28, 62, 0.73);
}

.security-strip>span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9eb1c9;
  font-size: 9px;
}

.security-strip svg {
  width: 31px;
  height: 31px;
  color: #1cb6ff;
  flex: 0 0 auto;
}

.security-strip strong,
.security-strip small {
  display: block;
}

.security-strip strong {
  color: #e8f2ff;
  font-size: 11px;
}

.security-strip small {
  margin-top: 3px;
  color: #849ab5;
  font-size: 8px;
}

.partner-section {
  background: linear-gradient(180deg, #020a1a, #031129 55%, #020a1b);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.brand-grid article {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 122px;
  color: #dfeaff;
  border: 1px solid rgba(42, 125, 228, 0.25);
  border-radius: 10px;
  background: rgba(5, 22, 48, 0.72);
  font-size: 10px;
}

.brand-grid img,
.brand-grid b,
.brand-grid .brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  object-fit: contain;
  font-size: 40px;
  place-items: center;
}

.brand-facebook {
  color: #2d8cff;
}

.brand-whatsapp {
  color: #43df85;
}

.brand-telegram {
  color: #35bfff;
}

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

.testimonial-card {
  min-height: 310px;
  padding: 22px 25px;
  border: 1px solid rgba(36, 125, 232, 0.28);
  border-radius: 11px;
  background: linear-gradient(145deg,
      rgba(7, 35, 75, 0.9),
      rgba(4, 20, 45, 0.93));
}

.quote-mark {
  height: 20px;
  color: #1ea8ff;
  font-size: 35px;
  font-weight: 800;
  line-height: 0.8;
}

.stars {
  margin-top: 13px;
  color: #199eff;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  min-height: 125px;
  margin: 14px 0;
  color: #d0dded;
  font-size: 11px;
  line-height: 1.7;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 2px solid #207cef;
  border-radius: 50%;
  background: linear-gradient(145deg, #234568, #071528);
  font-size: 11px;
  place-items: center;
}

.testimonial-card footer strong,
.testimonial-card footer small {
  display: block;
}

.testimonial-card footer strong {
  color: #fff;
  font-size: 12px;
}

.testimonial-card footer small {
  color: #8fa5be;
  font-size: 9px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid rgba(35, 120, 225, 0.24);
  border-radius: 9px;
  background: rgba(40, 112, 196, 0.18);
}

.commitment-grid span {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 14px 18px;
  background: rgba(4, 20, 45, 0.94);
}

.commitment-grid svg {
  grid-row: 1 / 3;
  width: 29px;
  height: 29px;
  color: #1caaff;
}

.commitment-grid b {
  color: #eef6ff;
  font-size: 10px;
}

.commitment-grid small {
  color: #8299b4;
  font-size: 9px;
}

.final-section {
  padding: 58px 0 48px;
  background: #020a1a;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 390px;
  padding: 40px 40px 108px;
  overflow: hidden;
  border: 1px solid #126dce;
  border-radius: 13px;
  background:
    radial-gradient(circle at 82% 35%,
      rgba(0, 104, 255, 0.31),
      transparent 38%),
    linear-gradient(135deg, #073371, #031734 62%);
  box-shadow:
    inset 0 0 55px rgba(8, 91, 255, 0.16),
    0 0 45px rgba(0, 91, 215, 0.12);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle,
      rgba(93, 177, 255, 0.2) 1px,
      transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000);
  content: "";
}

.final-copy {
  position: relative;
  z-index: 3;
}

.final-copy h2 {
  margin: 12px 0 10px;
  color: #dff9ff;
  font-size: clamp(35px, 3.5vw, 49px);
  letter-spacing: -0.035em;
}

.final-copy p {
  max-width: 630px;
  margin: 0;
  color: #adbed4;
  font-size: 12px;
}

.final-copy .hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 25px;
}

.final-dashboard {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 200px;
}

.final-dashboard img {
  width: 115%;
  max-width: none;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.5));
  transform: rotate(-2deg);
}

.final-dashboard i {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 18px;
  height: 55px;
  background: linear-gradient(#1bb8ff, #1755ff);
  box-shadow: 0 0 18px rgba(27, 125, 255, 0.7);
}

.final-dashboard i:nth-of-type(2) {
  right: -2%;
  height: 92px;
}

.final-dashboard i:nth-of-type(3) {
  right: -6%;
  height: 130px;
}

.final-dashboard i:nth-of-type(4) {
  right: -10%;
  height: 168px;
}

.cta-benefits {
  position: absolute;
  right: 32px;
  bottom: 22px;
  left: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 17px;
  border-top: 1px solid rgba(79, 157, 255, 0.24);
}

.cta-benefits span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
}

.cta-benefits svg {
  grid-row: 1 / 3;
  width: 29px;
  height: 29px;
  color: #21b8ff;
}

.cta-benefits b {
  color: #eef7ff;
  font-size: 9px;
}

.cta-benefits small {
  color: #8fa4bd;
  font-size: 8px;
}

.home-footer {
  padding-top: 12px;
  background: #020918;
}

.home-footer .footer-grid {
  grid-template-columns: 1.4fr repeat(3, 0.72fr) 1.35fr;
  gap: 42px;
  padding: 28px 0;
  border-top: 1px solid rgba(27, 123, 228, 0.45);
}

.home-footer .footer-brand p {
  max-width: 260px;
  color: #8499b3;
  font-size: 13px;
  line-height: 1.6;
}

.home-footer .footer-column h2,
.newsletter h2 {
  font-size: 14px;
}

.home-footer .footer-column a {
  font-size: 13px;
  line-height: 1.5;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.social-row a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #eaf6ff;
  border-radius: 50%;
  background: rgba(17, 110, 223, 0.25);
  border: 1px solid rgba(34, 158, 244, 0.35);
  transition: all 0.25s ease;
}

.social-row a:hover {
  background: #116edf;
  border-color: #38bdf8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 110, 223, 0.4);
}

.social-row .brand-icon {
  width: 15px;
  height: 15px;
  color: #fff;
}

.social-row .icon-tiktok {
  -webkit-mask-image: url("assets/images/partners/tiktok-glyph.svg");
  mask-image: url("assets/images/partners/tiktok-glyph.svg");
  background-image: none;
  background-color: currentColor;
}

.newsletter {
  padding: 16px;
  border: 1px solid rgba(35, 118, 221, 0.23);
  border-radius: 10px;
  background: rgba(5, 23, 50, 0.78);
}

.newsletter h2 {
  margin: 0 0 6px;
  color: #edf6ff;
}

.newsletter h2 span {
  color: #2ebcff;
  font-size: 25px;
}

.newsletter p {
  margin: 0;
  color: #8399b4;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter form div {
  display: flex;
  margin-top: 13px;
}

.newsletter input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  color: #eaf5ff;
  border: 1px solid rgba(51, 115, 198, 0.2);
  border-radius: 6px 0 0 6px;
  background: #05142c;
  font-size: 13px;
}

.newsletter button {
  width: 38px;
  color: #fff;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: #0f6fff;
}

.home-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 20px;
  color: #7086a1;
  border-top: 1px solid rgba(55, 111, 179, 0.13);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .home-v2 .primary-nav {
    gap: 16px;
  }

  .home-v2 .primary-nav a {
    font-size: 11px;
  }

  .home-v2 .header-actions .login-button {
    display: none;
  }

  .hero-v2 {
    min-height: 590px;
  }

  .hero-v2-grid {
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 430px;
  }

  .hero-v2-visual {
    min-height: 410px;
  }

  .ecosystem-card {
    min-height: 430px;
  }

  .why-grid {
    gap: 40px;
  }

  .home-footer .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.65fr) 1.25fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {

  .home-v2 .container,
  .site-header .container {
    width: min(calc(100% - 36px), 720px);
  }

  .home-v2 .site-header,
  .site-header {
    height: 70px;
  }

  .home-v2 .nav-wrap,
  .site-header .nav-wrap {
    position: relative;
  }

  .home-v2 .brand-logo,
  .site-header .brand-logo {
    width: 130px;
  }

  .home-v2 .nav-toggle,
  .site-header .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .home-v2 .primary-nav,
  .site-header .primary-nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(60, 129, 213, 0.25);
    border-radius: 12px;
    background: rgba(2, 13, 31, 0.98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  }

  .home-v2 .primary-nav.open,
  .site-header .primary-nav.open {
    display: flex;
  }

  .home-v2 .primary-nav a,
  .site-header .primary-nav a {
    padding: 12px 14px;
    font-size: 13px;
  }

  .home-v2 .primary-nav a.active::after,
  .site-header .primary-nav a.active::after {
    display: none;
  }

  .home-v2 .header-actions,
  .site-header .header-actions {
    margin-left: 0;
  }

  .home-v2 .header-cta,
  .site-header .header-cta {
    display: none;
  }

  .home-v2 .language-switcher,
  .site-header .language-switcher {
    margin-left: 0;
  }

  .hero-v2 {
    min-height: auto;
    padding: 115px 0 55px;
  }

  .hero-v2-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-v2-copy {
    max-width: 670px;
    margin-inline: auto;
  }

  .hero-v2 h1,
  .hero-v2-lead {
    margin-inline: auto;
  }

  .hero-v2 .hero-actions,
  .hero-promises {
    justify-content: center;
  }

  .hero-v2-visual {
    min-height: 455px;
    margin-top: 20px;
  }

  .hero-v2-visual picture {
    top: 0;
    left: 1%;
    width: 98%;
  }

  .home-section {
    padding: 72px 0;
  }

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

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

  .why-copy {
    grid-row: 1;
  }

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

  .metric-list article {
    grid-template-columns: 56px 1fr;
  }

  .trusted-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 22px;
  }

  .step-card:nth-child(2)::after {
    display: none;
  }

  .security-strip {
    grid-template-columns: 1.5fr 1fr;
  }

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

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

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card blockquote {
    min-height: auto;
  }

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

  .final-cta {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
    text-align: center;
  }

  .final-copy p {
    margin-inline: auto;
  }

  .final-copy .hero-actions {
    justify-content: center;
  }

  .final-dashboard {
    display: none;
  }

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

  .home-footer .newsletter {
    grid-column: 2 / 4;
  }
}

@media (max-width: 620px) {
  .home-v2 .container {
    width: min(calc(100% - 28px), 480px);
  }

  .home-v2 .language-switcher {
    display: inline-flex;
    margin-left: auto;
  }

  .home-v2 .language-switcher .lang-trigger {
    padding: 5px 8px;
    font-size: 11px;
    gap: 5px;
  }

  .home-v2 .language-switcher .lang-dropdown {
    right: 0;
    min-width: 145px;
  }

  .hero-v2 {
    padding-top: 102px;
  }

  .hero-v2 h1 {
    font-size: 39px;
  }

  .hero-v2-lead {
    font-size: 13px;
  }

  .hero-v2 .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-v2 .button {
    width: 100%;
  }

  .hero-promises {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    width: max-content;
    margin-inline: auto;
  }

  .hero-v2-visual {
    min-height: 285px;
  }

  .channel-bubble {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 17px;
  }

  .bubble-facebook {
    right: 0;
  }

  .bubble-messenger {
    left: 0;
  }

  .bubble-telegram {
    bottom: 2%;
  }

  .bubble-whatsapp {
    bottom: 0;
  }

  .home-section {
    padding: 60px 0;
  }

  .home-heading h2,
  .why-copy .home-heading h2 {
    font-size: 37px;
  }

  .home-heading p br {
    display: none;
  }

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

  .ecosystem-card {
    min-height: 420px;
  }

  .ecosystem-connect {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .connect-brands {
    width: 100%;
    margin-left: 33px;
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .trusted-strip div {
    flex-wrap: wrap;
    gap: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .step-card::after {
    display: none;
  }

  .security-strip {
    grid-template-columns: 1fr;
  }

  .security-main {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(71, 135, 215, 0.18);
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .final-cta {
    min-height: 500px;
    padding: 28px 20px 210px;
  }

  .final-copy h2 {
    font-size: 35px;
  }

  .final-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 8px;
  }

  .home-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .home-footer .footer-brand,
  .home-footer .newsletter {
    grid-column: 1 / -1;
  }

  .home-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .home-v2 *,
  .home-v2 *::before,
  .home-v2 *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hero carousel */
.home-v2 .hero-v2 {
  min-height: 650px;
  padding: 0;
}

.hero-carousel {
  position: relative;
  display: grid;
  min-height: 650px;
}

.hero-slide {
  grid-area: 1 / 1;
  min-width: 0;
  padding: 126px 0 58px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide .hero-v2-copy,
.hero-slide .hero-v2-visual {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.55s ease 0.08s,
    transform 0.55s ease 0.08s;
}

.hero-slide .hero-v2-copy {
  transform: translateX(-24px);
}

.hero-slide.is-active .hero-v2-copy,
.hero-slide.is-active .hero-v2-visual {
  opacity: 1;
  transform: translateX(0);
}

.hero-v2 h2 {
  max-width: 620px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(40px, 4.2vw, 61px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.hero-v2 h2 span {
  color: transparent;
  background: linear-gradient(100deg, #21d5ff, #1472ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-v2-visual {
  height: 455px;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.hero-dashboard-visual picture {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.hero-dashboard-visual picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: heroDeviceFloat 8s ease-in-out infinite;
  transform-origin: 50% 70%;
}

.hero-dashboard-visual {
  overflow: visible;
}

.hero-dashboard-visual .channel-bubble {
  --float-x: 3px;
  --float-y: -8px;
  --float-duration: 5s;
  --float-delay: 0s;
  animation: heroIconFloat var(--float-duration) ease-in-out var(--float-delay) infinite;
  will-change: transform;
}

.hero-dashboard-visual .bubble-tiktok {
  --float-x: -4px;
  --float-y: -9px;
  --float-duration: 4.8s;
  --float-delay: -0.7s;
}

.hero-dashboard-visual .bubble-shopee {
  --float-x: 5px;
  --float-y: -7px;
  --float-duration: 5.6s;
  --float-delay: -1.8s;
}

.hero-dashboard-visual .bubble-facebook {
  --float-x: 4px;
  --float-y: -10px;
  --float-duration: 5.1s;
  --float-delay: -2.4s;
}

.hero-dashboard-visual .bubble-messenger {
  --float-x: -5px;
  --float-y: -7px;
  --float-duration: 5.8s;
  --float-delay: -1.2s;
}

.hero-dashboard-visual .bubble-telegram {
  --float-x: 5px;
  --float-y: -9px;
  --float-duration: 4.9s;
  --float-delay: -3s;
}

.hero-dashboard-visual .bubble-whatsapp {
  --float-x: -4px;
  --float-y: -8px;
  --float-duration: 5.4s;
  --float-delay: -2s;
}

.hero-dashboard-visual .hero-orbit {
  animation: heroOrbitBreathe 6.5s ease-in-out infinite;
}

.hero-dashboard-visual .orbit-b {
  animation-delay: -3.25s;
}

@keyframes heroDeviceFloat {

  0%,
  100% {
    transform: translate3d(0, 2px, 0) scale(0.992);
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1);
  }
}

@keyframes heroIconFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
    filter: brightness(0.96);
  }

  50% {
    transform: translate3d(var(--float-x), var(--float-y), 0) rotate(2deg);
    filter: brightness(1.16);
  }
}

@keyframes heroOrbitBreathe {

  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.42;
  }
}

.generated-hero-visual {
  display: grid;
  overflow: hidden;
  background: radial-gradient(circle at 60% 45%,
      rgba(5, 104, 226, 0.2),
      transparent 60%);
  place-items: center;
}

.generated-hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45));
}

.hero-slider-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  color: #dff4ff;
  border: 1px solid rgba(64, 150, 255, 0.4);
  border-radius: 50%;
  background: rgba(3, 18, 42, 0.78);
  box-shadow: 0 0 24px rgba(0, 116, 255, 0.18);
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  place-items: center;
}

.hero-slider-arrow:hover {
  border-color: #25b9ff;
  background: rgba(9, 70, 134, 0.92);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider-prev {
  left: max(14px, calc((100vw - 1400px) / 2));
}

.hero-slider-next {
  right: max(14px, calc((100vw - 1400px) / 2));
}

.hero-slider-dots {
  bottom: 18px;
  gap: 8px;
}

.hero-slider-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #31435e;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.hero-slider-dots button.active {
  width: 42px;
  background: #1b9fff;
  box-shadow: 0 0 12px rgba(27, 159, 255, 0.45);
}

@media (max-width: 900px) {

  .home-v2 .hero-v2,
  .hero-carousel {
    min-height: 900px;
  }

  .hero-slide {
    padding: 108px 0 58px;
  }

  .hero-v2-visual {
    height: 430px;
    min-height: 0;
    margin-top: 12px;
  }

  .hero-v2-visual picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slider-arrow {
    top: 64%;
    width: 38px;
    height: 38px;
  }

  .hero-slider-prev {
    left: 12px;
  }

  .hero-slider-next {
    right: 12px;
  }
}

@media (max-width: 620px) {

  .home-v2 .hero-v2,
  .hero-carousel {
    min-height: 790px;
  }

  .hero-slide {
    padding: 98px 0 54px;
  }

  .hero-v2 h2 {
    font-size: 39px;
  }

  .hero-v2-visual {
    height: 275px;
    min-height: 0;
    margin-top: 20px;
  }

  .hero-slider-arrow {
    top: 72%;
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .hero-slider-dots {
    bottom: 13px;
  }

  .hero-slider-dots button {
    width: 20px;
  }

  .hero-slider-dots button.active {
    width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .subpage-main .subpage-visual.reveal,
  .subpage-main .subpage-visual.reveal.visible,
  .subpage-main .product-tab.reveal,
  .subpage-main .product-tab.reveal.visible {
    transform: none;
  }
}

/* Inner pages imported from the Stitch screen set */
.subpage-main {
  min-height: calc(100vh - 76px);
  padding-top: 76px;
  background:
    radial-gradient(circle at 16% 8%, rgba(37, 99, 235, 0.13), transparent 27%),
    radial-gradient(circle at 90% 50%,
      rgba(27, 200, 255, 0.08),
      transparent 30%),
    var(--navy-950);
}

.subpage-main h1,
.subpage-main h2,
.subpage-main h3 {
  text-wrap: balance;
}

.subpage-hero {
  position: relative;
  padding: 92px 0 78px;
  overflow: hidden;
}

.subpage-hero.compact {
  padding-bottom: 52px;
  text-align: center;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 72px;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(76, 215, 246, 0.22);
  border-radius: 999px;
  color: var(--cyan-light);
  background: rgba(76, 215, 246, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.subpage-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  content: "";
}

.subpage-title {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 72px);
}

.subpage-hero.compact .subpage-title,
.subpage-hero.compact .subpage-lead {
  margin-right: auto;
  margin-left: auto;
}

.subpage-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.subpage-visual {
  position: relative;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(102, 194, 245, 0.18);
  border-radius: 24px;
  background: rgba(13, 31, 55, 0.6);
  box-shadow: var(--shadow);
}

.subpage-visual::before {
  position: absolute;
  inset: 12% 10%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 160, 255, 0.2);
  filter: blur(65px);
  content: "";
}

.subpage-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.subpage-section {
  padding: 88px 0;
}

.subpage-section.alt {
  border-block: 1px solid var(--line);
  background: rgba(10, 26, 47, 0.46);
}

.subpage-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.subpage-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
}

.subpage-heading p {
  color: var(--muted);
}

.product-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 10px auto 0;
}

.product-tab {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #bdc8da;
  background: rgba(19, 35, 58, 0.64);
  text-align: left;
  transition: 0.25s ease;
}

.product-tab:hover,
.product-tab.active {
  color: var(--text);
  border-color: rgba(27, 200, 255, 0.42);
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.24),
      rgba(27, 200, 255, 0.08));
  box-shadow: 0 10px 35px rgba(0, 135, 225, 0.13);
  transform: translateY(-2px);
}

.tab-icon,
.mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(76, 215, 246, 0.25);
  border-radius: 10px;
  color: var(--cyan-light);
  background: rgba(27, 200, 255, 0.08);
  font-size: 18px;
  font-weight: 800;
}

.product-tab strong,
.product-tab small {
  display: block;
}

.product-tab strong {
  font-size: 14px;
}

.product-tab small {
  color: var(--muted);
  font-size: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 68px;
}

.product-layout.reverse {
  grid-template-columns: 1.16fr 0.84fr;
}

.product-layout.reverse .product-copy {
  order: 2;
}

.product-layout.reverse .subpage-visual {
  order: 1;
}

.product-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.product-copy>p {
  color: var(--muted);
}

.solution-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.solution-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18, 36, 61, 0.54);
}

.solution-item h3 {
  margin-bottom: 3px;
  font-size: 14px;
}

.solution-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.ecosystem-grid,
.value-grid,
.market-card-grid {
  display: grid;
  gap: 18px;
}

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

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

.ecosystem-card,
.value-card,
.market-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg,
      rgba(19, 40, 68, 0.76),
      rgba(7, 21, 39, 0.75));
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.ecosystem-card:hover,
.value-card:hover,
.market-card:hover {
  border-color: rgba(76, 215, 246, 0.34);
  transform: translateY(-5px);
}

.ecosystem-card h3,
.value-card h3,
.market-card h3 {
  margin: 20px 0 8px;
  font-size: 19px;
}

.ecosystem-card p,
.value-card p,
.market-card p {
  color: var(--muted);
  font-size: 13px;
}

.market-map img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.market-card {
  padding: 18px;
}

.market-card img {
  width: 46px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
}

.market-card h3 {
  margin-top: 16px;
}

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

.market-tags span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #bceeff;
  background: rgba(76, 215, 246, 0.11);
  font-size: 9px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 34, 59, 0.58);
}

.timeline-step b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid rgba(76, 215, 246, 0.3);
  border-radius: 50%;
  color: var(--cyan-light);
  font-size: 12px;
}

.timeline-step h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.timeline-step p {
  color: var(--muted);
  font-size: 12px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 50px;
  border: 1px solid rgba(76, 215, 246, 0.25);
  border-radius: 24px;
  background: linear-gradient(120deg,
      rgba(37, 99, 235, 0.3),
      rgba(13, 42, 72, 0.7));
}

.page-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.page-cta p {
  margin: 0;
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(19, 35, 58, 0.7);
}

.metric-row div {
  padding: 4px 24px;
}

.metric-row div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--cyan-light);
  font-size: 28px;
}

.metric-row span {
  color: var(--muted);
  font-size: 11px;
}

.career-visual {
  min-height: 500px;
  background-image:
    linear-gradient(180deg, transparent 70%, rgba(5, 13, 28, 0.38)),
    url("assets/images/stitch/careers-source.webp");
  background-position: right -130px;
  background-size: 215% auto;
  background-repeat: no-repeat;
}

.career-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.career-value {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 29, 51, 0.72);
}

.career-value h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.career-value p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.career-value .mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 34px;
  padding-bottom: 90px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card,
.contact-form-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(19, 35, 58, 0.72);
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card a,
.contact-card strong {
  color: var(--cyan-light);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.office-grid strong,
.office-grid p {
  display: block;
}

.contact-map {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 14px;
}

.contact-map img {
  width: 100%;
  min-height: 245px;
  object-fit: cover;
}

.contact-form-card {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-top-color: rgba(76, 215, 246, 0.6);
}

.contact-form-card h2 {
  margin-bottom: 8px;
  font-size: 27px;
}

.contact-form-card>p {
  color: var(--muted);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form-card label {
  display: block;
  margin-bottom: 6px;
  color: #c8d2e1;
  font-size: 11px;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(129, 169, 209, 0.2);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  background: rgba(7, 23, 42, 0.84);
  font: inherit;
}

.contact-form-card input,
.contact-form-card select {
  height: 48px;
  padding: 0 14px;
}

.contact-form-card textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(27, 200, 255, 0.1);
}

.contact-form-card .invalid {
  border-color: #ff7285;
}

.subpage-footer {
  padding-top: 54px;
}

@media (max-width: 900px) {
  .subpage-main {
    padding-top: 68px;
  }

  .subpage-hero-grid,
  .product-layout,
  .product-layout.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-layout.reverse .product-copy,
  .product-layout.reverse .subpage-visual {
    order: initial;
  }

  .subpage-visual {
    max-width: 760px;
  }

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

  .contact-form-card {
    position: static;
  }

  .career-visual {
    min-height: 430px;
    background-position: right -95px;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    padding: 68px 0 54px;
  }

  .subpage-title {
    font-size: 40px;
  }

  .subpage-lead {
    font-size: 14px;
  }

  .product-switcher,
  .ecosystem-grid,
  .value-grid,
  .market-card-grid,
  .timeline-grid,
  .career-value-grid,
  .contact-shortcuts,
  .contact-form-grid,
  .office-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .product-tab {
    min-height: 64px;
  }

  .subpage-section {
    padding: 68px 0;
  }

  .timeline-grid {
    padding: 24px;
  }

  .page-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 24px;
  }

  .page-cta .button {
    width: 100%;
  }

  .metric-row {
    gap: 22px;
  }

  .metric-row div {
    padding: 0;
    text-align: center;
  }

  .metric-row div:not(:last-child) {
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .career-visual {
    min-height: 340px;
    background-position: right -70px;
  }

  .career-value {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .career-value .mini-icon {
    width: 48px;
    height: 48px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }
}

/* Final cascade for the reference ecosystem layout. */
.ecosystem-section {
  scroll-margin-top: 70px;
  padding: 62px 0 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 76, 184, 0.14), transparent 45%),
    linear-gradient(180deg, #020919 0%, #031126 55%, #020a1a 100%);
}

.ecosystem-section>.container {
  position: relative;
}

.ecosystem-section .home-heading h2 {
  margin-top: 13px;
  font-size: clamp(38px, 4.1vw, 58px);
}

.ecosystem-section .home-heading p {
  font-size: 13px;
  line-height: 1.45;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 29px;
}

.ecosystem-card {
  min-height: 420px;
  padding: 15px 14px 14px;
  border-radius: 11px;
  background: linear-gradient(160deg,
      color-mix(in srgb, var(--tone) 12%, #06152c),
      rgba(3, 15, 36, 0.98) 68%);
  box-shadow:
    inset 0 0 26px rgba(0, 88, 180, 0.08),
    0 13px 28px rgba(0, 0, 0, 0.24);
}

.ecosystem-card:nth-child(n + 4) {
  min-height: 320px;
}

.ecosystem-card::after {
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--tone) 48%, transparent),
      transparent);
  content: "";
}

.product-card-head {
  gap: 10px;
}

.product-logo {
  width: 46px;
  height: 46px;
  border-radius: 9px;
}

.product-card-head h3 {
  font-size: 16px;
}

.product-card-head p {
  font-size: 10px;
  line-height: 1.25;
}

.product-art {
  min-height: 175px;
  margin: 5px 0 9px;
}

.sales-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 5px 14px;
}

.sales-art>span {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 13px color-mix(in srgb, var(--tone) 44%, transparent));
}

.sales-art svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: #dbf8ff;
  border: 1px solid rgba(45, 165, 255, 0.55);
  border-radius: 10px;
  background: linear-gradient(145deg, #1167bf, #06244e);
}

.sales-art .sales-bag {
  transform: translateY(9px);
}

.sales-art .sales-cart {
  grid-column: 2;
  transform: translateY(20px);
}

.sales-art .sales-cart svg {
  width: 65px;
  height: 65px;
  padding: 14px;
  color: #24e6ff;
  border: 2px solid #159dfb;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(24, 191, 255, 0.42);
}

.sales-art .sales-box {
  transform: translateY(9px);
}

.sales-art .sales-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #071936;
}

.sales-art .sales-social .brand-icon {
  width: 22px;
  height: 22px;
}

.sales-art .sales-social.icon-tiktok {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  color: #25f4ee;
}

.sales-art .sales-social.icon-shopee {
  grid-row: 2;
  grid-column: 3;
  align-self: end;
  color: #ee4d2d;
}

.chip-art svg {
  width: 126px;
  height: 126px;
  padding: 23px;
  border-width: 3px;
  border-radius: 23px;
  box-shadow: 0 20px 28px rgba(0, 111, 255, 0.28);
}

.chat-art {
  min-height: 175px;
  padding: 29px 31px;
}


.chat-art span {
  padding: 7px 10px;
  font-size: 9px;
}

.chat-art svg {
  right: 13px;
  bottom: 11px;
  width: 44px;
  height: 44px;
}

.warehouse-art svg {
  width: 125px;
  height: 125px;
}

.warehouse-art span {
  font-size: 38px;
}

.growth-art {
  min-height: 175px;
  padding: 25px 53px 20px;
}

.growth-art svg {
  width: 104px;
  height: 104px;
}

.book-art svg {
  width: 125px;
  height: 125px;
}

.book-art b {
  width: 50px;
  height: 40px;
  margin-left: -30px;
}

.ecosystem-card ul {
  gap: 8px 10px;
  padding-top: 13px;
}

.ecosystem-card li {
  font-size: 9px;
}

.ecosystem-card li::before {
  width: 11px;
  height: 11px;
}

.mini-features {
  gap: 3px;
  padding-top: 12px;
}

.mini-features span {
  font-size: 8px;
  line-height: 1.25;
}

.ecosystem-connect {
  margin-top: 13px;
  padding: 11px 15px;
  border-radius: 9px;
  font-size: 10px;
}

@media (max-width: 640px) {
  .ecosystem-section {
    padding: 30px 0 22px;
  }

  .ecosystem-section>.container {
    width: calc(100% - 20px);
  }

  .ecosystem-section .home-heading h2 {
    margin-top: 11px;
    font-size: clamp(28px, 8vw, 37px);
  }

  .ecosystem-section .home-heading p {
    font-size: 10px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .ecosystem-card {
    min-height: 263px;
    padding: 8px 7px 9px;
    border-radius: 8px;
  }

  .ecosystem-card:nth-child(n + 4) {
    min-height: 205px;
  }

  .product-card-head {
    gap: 5px;
    align-items: flex-start;
  }

  .product-logo {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }

  .product-logo svg {
    width: 20px;
    height: 20px;
  }

  .product-card-head h3 {
    font-size: 11px;
    line-height: 1.1;
  }

  .product-card-head p {
    margin-top: 3px;
    font-size: 6.5px;
    line-height: 1.25;
  }

  .product-art {
    min-height: 88px;
    margin: 2px 0 4px;
  }

  .sales-art {
    gap: 1px;
    padding: 2px 3px;
  }

  .sales-art svg {
    width: 27px;
    height: 27px;
    padding: 5px;
    border-radius: 6px;
  }

  .sales-art .sales-cart svg {
    width: 43px;
    height: 43px;
    padding: 9px;
    border-width: 1px;
  }

  .sales-art .sales-social {
    width: 25px;
    height: 25px;
    border-radius: 6px;
  }

  .sales-art .sales-social .brand-icon {
    width: 15px;
    height: 15px;
  }

  .chip-art svg {
    width: 76px;
    height: 76px;
    padding: 13px;
    border-width: 2px;
    border-radius: 14px;
  }

  .chat-art {
    min-height: 88px;
    padding: 13px 11px;
  }

  .chat-art::before {
    inset: 10px 8px;
    border-radius: 7px;
  }

  .chat-art span {
    margin: 2px 0;
    padding: 4px 5px;
    border-radius: 5px;
    font-size: 5px;
  }

  .chat-art svg {
    right: 7px;
    bottom: 5px;
    width: 25px;
    height: 25px;
  }

  .warehouse-art svg {
    width: 77px;
    height: 77px;
  }

  .warehouse-art span {
    font-size: 24px;
  }

  .growth-art {
    min-height: 88px;
    gap: 3px;
    padding: 12px 14px 9px;
  }

  .growth-art i {
    width: 9px;
    height: 18px;
  }

  .growth-art i:nth-child(2) {
    height: 28px;
  }

  .growth-art i:nth-child(3) {
    height: 39px;
  }

  .growth-art i:nth-child(4) {
    height: 51px;
  }

  .growth-art svg {
    width: 60px;
    height: 60px;
    transform: translate(18px, -17px);
  }

  .book-art svg {
    width: 77px;
    height: 77px;
  }

  .book-art b {
    width: 29px;
    height: 24px;
    margin-left: -19px;
    font-size: 10px;
  }

  .ecosystem-card ul {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 8px;
  }

  .ecosystem-card li {
    overflow: hidden;
    padding-left: 11px;
    font-size: 7.2px;
    line-height: 1.05;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .ecosystem-card li::before {
    top: 0;
    width: 8px;
    height: 8px;
    font-size: 5px;
  }

  .mini-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px 1px;
    padding-top: 8px;
  }

  .mini-features span {
    font-size: 6.3px;
    line-height: 1.15;
  }

  .ecosystem-connect {
    gap: 5px;
    margin-top: 7px;
    padding: 7px 8px;
    font-size: 6.5px;
  }

  .ecosystem-connect>svg {
    width: 14px;
    height: 14px;
  }

  .connect-brands {
    gap: 7px;
  }

  .connect-brands .brand-icon {
    width: 13px;
    height: 13px;
  }
}