:root {
  --vt-navy: #06182b;
  --vt-navy-2: #0a2239;
  --vt-panel: #10253a;
  --vt-panel-2: #152b40;
  --vt-paper: #f6f7f8;
  --vt-white: #ffffff;
  --vt-ink: #10243a;
  --vt-muted: #9eafbd;
  --vt-line: rgba(221, 232, 239, .22);
  --vt-line-light: #cad4dc;
  --vt-orange: #d7652b;
  --vt-orange-dark: #b64c1f;
  --vt-shadow: 0 18px 52px rgba(0, 9, 19, .22);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--vt-navy); scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--vt-ink); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif; letter-spacing: 0; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.38);
}
.brand-mark-light img { filter: invert(1); mix-blend-mode: screen; }

@keyframes vt-hero-pan {
  0%, 100% { background-position: 50% 50%; }
  50% { background-position: 53% 48%; }
}
@keyframes vt-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vt-route {
  0%, 100% { opacity: .42; }
  50% { opacity: 1; }
}

/* Public website: exact approved homepage composition */
.site-home { min-height: 100svh; color: #fff; background: var(--vt-navy); }
.site-home .topbar {
  position: relative !important;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  gap: 28px;
  padding: 0 48px;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  background: rgba(3, 18, 32, .98) !important;
  box-shadow: none !important;
  backdrop-filter: none;
}
.site-home .brand {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 14px;
  color: #fff !important;
  text-decoration: none;
}
.site-home .brand-mark {
  display: block !important;
  width: 45px !important;
  height: 45px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.site-home .brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); mix-blend-mode: screen; }
.site-home .brand strong { color: #fff; font-size: 1.12rem; font-weight: 760; }
.site-home .brand small { display: none; }
.site-home .nav { display: flex; margin-left: auto; align-items: center; flex-wrap: nowrap; gap: 10px; }
.site-home .nav a,
.site-home .nav .auth-entry-button {
  position: relative;
  min-height: 44px;
  padding: 12px 16px;
  color: #eef3f6 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 560;
  white-space: nowrap;
}
.site-home .nav a::after,
.site-home .nav .auth-entry-button::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 3px;
  left: 16px;
  height: 2px;
  background: var(--vt-orange);
  transform: scaleX(0);
  transition: transform .24s ease;
}
.site-home .nav a:hover::after,
.site-home .nav a.active::after,
.site-home .nav .auth-entry-button:hover::after { transform: scaleX(1); }
.site-home .nav .client-entry { display: inline-flex !important; align-items: center; }
.site-home .brand-supplier-entry[hidden] { display: none !important; }
.site-home .menu-btn { display: none; min-height: 42px; padding: 9px 14px; color: #fff; border: 1px solid rgba(255,255,255,.34); border-radius: 4px; background: transparent; font-weight: 750; }
.site-home .language-menu { position: relative; flex: 0 0 auto; }
.site-home .language-menu summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  background: transparent;
  list-style: none;
  cursor: pointer;
}
.site-home .language-menu summary::-webkit-details-marker { display: none; }
.site-home .language-globe { filter: grayscale(1); }
.site-home .language-options {
  position: absolute;
  z-index: 110;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 160px;
  padding: 6px;
  border: 1px solid #bfcbd3;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--vt-shadow);
}
.site-home .language-options button { padding: 10px 12px; color: var(--vt-ink); text-align: left; border: 0; border-radius: 2px; background: transparent; }
.site-home .language-options button:hover,
.site-home .language-options button.active { color: #fff; background: var(--vt-navy-2); }

.site-home main {
  min-height: calc(100svh - 74px);
  padding: 0 !important;
}
.site-home .hero {
  position: relative;
  display: grid !important;
  width: 100%;
  max-width: none !important;
  min-height: calc(100svh - 74px);
  grid-template-columns: 1fr !important;
  grid-template-rows: minmax(650px, calc(100svh - 364px)) 290px;
  gap: 0 !important;
  padding: 0 !important;
  isolation: isolate;
  background-color: var(--vt-navy) !important;
  background-image: linear-gradient(90deg, rgba(2,15,28,.94) 0%, rgba(2,15,28,.72) 35%, rgba(2,15,28,.12) 65%, rgba(2,15,28,.02) 100%), url("assets/design/homepage-cinematic-background.png") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  animation: vt-hero-pan 28s ease-in-out infinite;
}
.site-home .hero[hidden] { display: none !important; }
.site-home .hero::before,
.site-home .hero::after { display: none !important; }
.site-home .hero-copy {
  display: flex !important;
  width: min(58%, 840px) !important;
  max-width: none !important;
  min-height: 650px;
  align-self: stretch !important;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 62px !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  animation: vt-enter .72s ease both;
}
.site-home .hero-copy::before,
.site-home .hero-copy::after { display: none !important; }
.site-home .hero h1 {
  max-width: 820px !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: 4.3rem !important;
  font-weight: 690 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}
.site-home .hero h2 {
  max-width: 670px;
  margin: 0 0 20px !important;
  color: #fff !important;
  font-size: 2.35rem !important;
  font-weight: 620;
  line-height: 1.24 !important;
}
.site-home .hero-copy > p:not(.hero-trustline) { max-width: 650px; margin: 0; color: #d8e1e7 !important; font-size: 1.07rem; line-height: 1.85; }
.site-home .hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.site-home .hero-actions a {
  display: inline-flex;
  min-width: 222px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 720;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}
.site-home .hero-actions a.primary { border-color: var(--vt-orange); background: var(--vt-orange); }
.site-home .hero-actions a.secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,.76) !important;
  background: transparent !important;
}
.site-home .hero-actions a:hover { transform: translateY(-2px); border-color: var(--vt-orange); background: var(--vt-orange-dark); }
.site-home .hero-actions a::after { display: none !important; }
.site-home .hero-trustline { display: flex; flex-wrap: wrap; gap: 8px 12px; margin: 28px 0 0; color: #aebdc7 !important; font-size: .88rem; }
.site-home .hero-trustline i { color: #6e8391; font-style: normal; }

.site-home .hero .map-card-v2,
.site-home .hero .map-card-v2.depth-surface {
  position: relative;
  display: grid !important;
  width: 100% !important;
  min-height: 290px !important;
  grid-template-columns: minmax(280px, .32fr) minmax(0, .68fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  margin: 0 !important;
  padding: 28px 48px !important;
  color: #edf4f7;
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 0 !important;
  background-color: rgba(4, 22, 38, .97) !important;
  background-image: linear-gradient(rgba(114,143,162,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(114,143,162,.07) 1px, transparent 1px) !important;
  background-size: 58px 58px !important;
  box-shadow: none !important;
  transform: none !important;
  backdrop-filter: none !important;
}
.site-home .map-card-v2::before,
.site-home .map-card-v2::after { display: none !important; }
.site-home .map-v2-heading { grid-column: 1; grid-row: 1; display: block; align-self: end; padding: 0 50px 15px 0; border: 0; }
.site-home .map-v2-heading span,
.site-home .map-v2-heading > b { display: none; }
.site-home .map-v2-heading strong { display: block; color: #fff; font-size: 1.78rem; font-weight: 660; }
.site-home .map-v2-heading strong::after { content: ""; display: block; width: 34px; height: 2px; margin-top: 17px; background: var(--vt-orange); }
.site-home .map-v2-services { grid-column: 1; grid-row: 2; display: block; align-self: start; padding-right: 50px; }
.site-home .map-v2-services span { display: block; min-height: 0; padding: 0; color: #b9c7d0; border: 0; background: transparent; font-size: .9rem; font-weight: 450; line-height: 1.75; }
.site-home .map-v2-plot { position: relative; grid-column: 2; grid-row: 1 / 3; height: 232px; margin: 0; overflow: hidden; border: 0; background: rgba(10, 41, 61, .22); }
.site-home .map-v2-plot::before { content: ""; position: absolute; inset: 8% 4% 5%; border: 1px solid rgba(142,169,184,.14); border-radius: 46% 54% 42% 58%; transform: rotate(-5deg); }
.site-home .map-v2-plot::after { content: "GLOBAL ROUTES"; position: absolute; right: 5%; top: 46%; color: #b6c2c9; font-size: .67rem; letter-spacing: .12em; }
.site-home .map-node { position: absolute; z-index: 3; left: var(--x); top: var(--y); display: grid; gap: 2px; transform: translate(-50%, -50%); white-space: nowrap; }
.site-home .map-node em { width: 10px; height: 10px; border: 2px solid #d6e0e5; border-radius: 50%; background: var(--vt-navy-2); box-shadow: 0 0 0 4px rgba(209,223,231,.1); }
.site-home .map-node b { color: #e8eef2; font-size: .72rem; text-shadow: 0 2px 8px rgba(0,0,0,.58); }
.site-home .map-node small { color: #92a6b3; font-size: .56rem; }
.site-home .map-node-main em,
.site-home .map-node-hk em { border-color: #f2a576; background: var(--vt-orange); box-shadow: 0 0 0 5px rgba(215,101,43,.14); }
.site-home .map-node-main b,
.site-home .map-node-hk b { color: #ffc09a; }
.site-home .map-route { position: absolute; z-index: 2; left: 48%; top: 25%; height: 1px; background: rgba(226,111,51,.74); transform-origin: 0 50%; animation: vt-route 3.2s ease-in-out infinite; }
.site-home .route-foshan { width: 31%; transform: rotate(150deg); }
.site-home .route-dongguan { width: 29%; transform: rotate(32deg); animation-delay: -.4s; }
.site-home .route-zhongshan { width: 51%; transform: rotate(124deg); animation-delay: -.8s; }
.site-home .route-shenzhen { width: 53%; transform: rotate(59deg); animation-delay: -1.2s; }
.site-home .route-zhuhai { width: 61%; transform: rotate(95deg); animation-delay: -1.6s; }
.site-home .route-hongkong { width: 66%; transform: rotate(71deg); animation-delay: -2s; }
.site-home .trust-rail,
.site-home #about { display: none !important; }

/* Remaining public modules: one restrained visual system, no legacy floating cards. */
.site-home .section,
.site-home .global-network,
.site-home footer {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 74px);
  padding: 72px max(48px, calc((100vw - 1440px) / 2));
  color: #eaf0f4;
  background: var(--vt-navy);
}
.site-home .section h2,
.site-home .global-network h2 { max-width: 900px; margin: 8px 0 30px; color: #fff; font-size: 3.25rem; line-height: 1.08; }
.site-home .eyebrow { color: #ec8c56; font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.site-home .why-heading,
.site-home .quotes-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.site-home .why-heading p,
.site-home .quotes-heading > p,
.site-home .section-intro { color: #adbec9; line-height: 1.75; }
.site-home .why-grid,
.site-home .cards,
.site-home .export-flow,
.site-home .terms-grid,
.site-home .privacy-grid,
.site-home .policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--vt-line); }
.site-home .why-grid article,
.site-home .cards article,
.site-home .export-flow article,
.site-home .terms-grid article,
.site-home .privacy-grid article,
.site-home .policy-grid article {
  min-height: 170px;
  padding: 30px 34px;
  color: #d4dfe5;
  border: 0 !important;
  border-right: 1px solid var(--vt-line) !important;
  border-bottom: 1px solid var(--vt-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .why-grid article:nth-child(2n),
.site-home .cards article:nth-child(2n),
.site-home .export-flow article:nth-child(2n),
.site-home .terms-grid article:nth-child(2n),
.site-home .privacy-grid article:nth-child(2n),
.site-home .policy-grid article:nth-child(2n) { border-right: 0 !important; }
.site-home .why-grid article span,
.site-home .cards article span,
.site-home .export-flow article span { color: #e78048; font-weight: 800; }
.site-home .section article h3 { color: #fff; }
.site-home .section article p { color: #aebec8; }
.site-home .dark { background: #081d31 !important; }
.site-home .fee-summary,
.site-home .fee-groups,
.site-home .vip-panel { border-radius: 0 !important; }
.site-home .fee-summary { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--vt-line); background: transparent !important; }
.site-home .fee-summary > div { padding: 26px; border-right: 1px solid var(--vt-line); background: transparent !important; }
.site-home .fee-summary > div:last-child { border-right: 0; }
.site-home .fee-group,
.site-home .vip-panel,
.site-home .tax-note,
.site-home .terms-note { color: #d2dde3; border: 1px solid var(--vt-line) !important; border-radius: 4px !important; background: rgba(255,255,255,.035) !important; box-shadow: none !important; }
.site-home .quote-toolbar,
.site-home .request-form { color: var(--vt-ink); border: 1px solid #c1ccd3; border-radius: 4px; background: var(--vt-paper); box-shadow: none; }
.site-home input,
.site-home textarea,
.site-home select { border: 1px solid #aebbc4; border-radius: 3px; background: #fff; }
.site-home input:focus,
.site-home textarea:focus,
.site-home select:focus { border-color: var(--vt-orange); outline: 3px solid rgba(215,101,43,.15); }
.site-home .documents-section { display: grid; grid-template-columns: minmax(300px,.38fr) minmax(0,.62fr); gap: 72px; align-items: center; }
.site-home .documents-copy > p:not(.eyebrow) { color: #aebdc7 !important; }
.site-home .documents-copy { align-self: center; }
.site-home .document-list,
.site-home .page-deck-shell { width: 100%; min-width: 0; }
.site-home .document-list article,
.site-home .page-deck article {
  min-height: 360px !important;
  padding: 48px !important;
  color: #d7e1e6;
  border: 1px solid var(--vt-line) !important;
  border-radius: 4px !important;
  background: var(--vt-panel) !important;
  box-shadow: var(--vt-shadow) !important;
}
.site-home .document-list article h3,
.site-home .page-deck article h3 { color: #fff; }
.site-home .document-link {
  display: inline-block;
  width: max-content;
  margin-top: 12px;
  padding: 0 0 4px !important;
  color: #f1a174 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--vt-orange) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
.site-home .page-deck-controls {
  position: static !important;
  display: flex !important;
  margin-top: 18px !important;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  transform: none !important;
}
.site-home .page-deck-controls button { width: 44px; height: 44px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: var(--vt-panel-2); }
.site-home .page-deck-controls strong { min-width: 90px; color: #d7e0e5; text-align: center; }
.site-home .motion-reveal { opacity: 1 !important; transform: none !important; }

/* Login modal: selected split-screen concept. */
.site-home .account-modal[data-login-modal] { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(1,12,22,.84); backdrop-filter: blur(10px); }
.site-home .portal-login-dialog {
  position: relative;
  display: grid;
  width: min(1180px, 96vw);
  min-height: min(720px, 92svh);
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 4px !important;
  background: #fff;
  box-shadow: 0 34px 100px rgba(0,0,0,.4) !important;
}
.site-home .portal-login-story {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(3,20,37,.2), rgba(3,20,37,.88)), url("assets/design/supplier-warehouse-banner.png");
  background-position: center;
  background-size: cover;
}
.site-home .portal-login-story-copy { position: absolute; right: 52px; bottom: 58px; left: 52px; }
.site-home .portal-login-story-copy > span,
.site-home .portal-login-kicker { color: var(--vt-orange); font-size: .74rem; font-weight: 850; letter-spacing: .08em; }
.site-home .portal-login-story-copy strong { display: block; max-width: 540px; margin-top: 12px; color: #fff; font-size: 2.85rem; line-height: 1.08; }
.site-home .portal-login-story-copy p { max-width: 540px; color: #d3dfe5; }
.site-home .portal-login-story-copy ul { display: flex; flex-wrap: wrap; gap: 12px 22px; padding: 0; color: #eef3f5; list-style: none; }
.site-home .portal-login-card { display: flex; flex-direction: column; justify-content: center; padding: 52px; color: var(--vt-ink); background: #f8f9fa; }
.site-home .portal-login-mark { width: 62px !important; height: 62px !important; }
.site-home .portal-login-mark img { filter: none; }
.site-home .portal-login-card h2 { margin: 8px 0 8px; color: var(--vt-navy); font-size: 2.55rem; }
.site-home .portal-login-intro { margin: 0 0 24px; color: #60727e; }
.site-home .portal-login-card input,
.site-home .portal-login-card select { min-height: 50px; }
.site-home .portal-login-card .primary { min-height: 52px; border-radius: 3px; background: var(--vt-orange); }
.site-home .portal-login-dialog > .account-close { position: absolute; z-index: 5; top: 14px; right: 14px; color: var(--vt-navy); border: 1px solid #bdc8cf; background: #fff; }

/* Client center: selected light operations dashboard. */
.client-portal { background: #eef3f7; }
.client-portal .portal-sidebar { width: 270px; color: #edf4f7; border-right: 1px solid #25415a; background: var(--vt-navy); }
.client-portal .portal-brand { min-height: 96px; padding: 22px 26px; border-color: #28445c; }
.client-portal .portal-brand > span { width: 58px; height: 58px; border: 0; border-radius: 0; background: transparent; }
.client-portal .portal-brand img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); mix-blend-mode: screen; }
.client-portal .portal-brand strong { font-size: 1.05rem; }
.client-portal .portal-sidebar nav { gap: 2px; padding: 20px 0; }
.client-portal .portal-sidebar nav button { min-height: 54px; padding: 12px 28px; border-radius: 0; }
.client-portal .portal-sidebar nav button.active { color: #fff; background: #152f49; box-shadow: inset 4px 0 var(--vt-orange); }
.client-portal .portal-main { margin-left: 270px; }
.client-portal .portal-topbar { min-height: 86px; padding: 14px 32px; border-color: #c7d2da; background: rgba(255,255,255,.97); }
.client-portal .portal-topbar > a { border-radius: 4px; background: #b6653b; }
.client-portal .portal-view { padding: 36px; }
.client-portal .welcome-panel {
  min-height: 310px;
  align-items: center;
  padding: 56px;
  border: 1px solid #b8c6cf;
  border-radius: 6px;
  background-image: linear-gradient(90deg, rgba(249,251,252,.95) 0%, rgba(249,251,252,.73) 45%, rgba(249,251,252,.04) 72%), url("assets/design/homepage-cinematic-background.png");
  background-position: center;
  background-size: cover;
}
.client-portal .welcome-panel::after { display: none; }
.client-portal .welcome-panel > div { color: var(--vt-navy); }
.client-portal .welcome-panel h1 { max-width: 680px; margin: 10px 0 14px; color: var(--vt-navy); font-size: 3rem; }
.client-portal .welcome-panel span { max-width: 630px; color: #32485a; font-size: 1.06rem; }
.client-portal .metric-grid { gap: 16px; margin: 20px 0; }
.client-portal .metric-grid article,
.client-portal .portal-card,
.client-portal .portal-empty.large { border: 1px solid #becbd4; border-radius: 4px; background: #fff; box-shadow: none; }
.client-portal .metric-grid article { min-height: 128px; align-content: center; text-align: center; }
.client-portal .card-heading > span { color: #80502f; border-radius: 3px; background: #f4e5db; }

/* Supplier center: selected dark warehouse console. */
.supplier-portal { color: #eaf1f4; background: var(--vt-navy); }
.supplier-portal .supplier-topbar { color: #fff; border-color: #29445b; background: #071b30; }
.supplier-portal .supplier-brand,
.supplier-portal .supplier-topbar > a { color: #fff; }
.supplier-portal .supplier-brand small { color: #9caeba; }
.supplier-portal .supplier-brand .brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.supplier-portal .supplier-brand img,
.supplier-portal .portal-side-brand .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.supplier-portal .portal-side-brand .brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.supplier-portal .auth-view { min-height: calc(100svh - 74px); background-image: linear-gradient(90deg, rgba(3,20,36,.94), rgba(3,20,36,.72)), url("assets/design/supplier-warehouse-banner.png"); background-position: center; background-size: cover; }
.supplier-portal .auth-copy { color: #fff; }
.supplier-portal .auth-copy p { color: #ccd9df; }
.supplier-portal .auth-panel { border: 1px solid rgba(255,255,255,.16); border-radius: 4px; background: rgba(8,28,45,.94); box-shadow: var(--vt-shadow); }
.supplier-portal .auth-panel label,
.supplier-portal .auth-panel strong { color: #eef3f5; }
.supplier-portal .auth-panel input { color: var(--vt-ink); background: #fff; }
.supplier-portal .portal-view { color: #e9f0f3; background: var(--vt-navy); }
.supplier-portal:has(.portal-view:not([hidden])) .supplier-topbar { display: none; }
.supplier-portal .portal-view:not([hidden]) { min-height: 100svh; }
.supplier-portal .portal-sidebar { background: #061a2e; }
.supplier-portal .portal-side-brand {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-bottom: 30px;
  color: #fff;
  text-decoration: none;
}
.supplier-portal .portal-side-brand strong { margin-top: 7px; color: #fff; font-size: 1.02rem; }
.supplier-portal .portal-side-brand small { color: var(--vt-orange); }
.supplier-portal .portal-content { color: #e9f0f3; background: #0a1d2e; }
.supplier-portal .supplier-welcome {
  min-height: 330px;
  border: 0;
  border-radius: 0;
  background-image: linear-gradient(90deg, rgba(4,19,33,.9), rgba(4,19,33,.28)), url("assets/design/supplier-warehouse-banner.png");
  background-position: center;
  background-size: cover;
  box-shadow: none;
}
.supplier-portal .profile-entry-grid > a { color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; background: rgba(4,20,34,.54); backdrop-filter: blur(8px); }
.supplier-portal .content-heading h1,
.supplier-portal form[data-profile-form] legend,
.supplier-portal form[data-profile-form] label { color: #f2f6f7; }
.supplier-portal form[data-profile-form] { border: 1px solid #314859; border-radius: 4px; background: #10283a; box-shadow: none; }
.supplier-portal form[data-profile-form] fieldset { border-color: #344d5e; }
.supplier-portal form[data-profile-form] input,
.supplier-portal form[data-profile-form] textarea,
.supplier-portal form[data-profile-form] select { color: var(--vt-ink); border-color: #aebbc3; background: #fff; }
.supplier-portal .toggle,
.supplier-portal .authorization,
.supplier-portal .privacy-note { color: #d7e1e6; border-color: #3a5364; background: #173246; }

/* Supplier upload follows the same dark operations surface. */
.supplier-upload-page { color: #eaf0f3; background: var(--vt-navy); }
.supplier-upload-page header { border-color: #29445b; background: #071b30; }
.supplier-upload-page header .brand { color: #fff; text-decoration: none; }
.supplier-upload-page header .brand small { color: #9eafbd; }
.supplier-upload-page header .brand-mark { border: 0; border-radius: 0; background: transparent; }
.supplier-upload-page header .brand-mark img { filter: invert(1); mix-blend-mode: screen; }
.supplier-upload-page main { background: #0a1e30; }
.supplier-upload-page form,
.supplier-upload-page .upload-section,
.supplier-upload-page fieldset { border-color: #314b5d; border-radius: 4px; background: #10293c; box-shadow: none; }
.supplier-upload-page label,
.supplier-upload-page legend,
.supplier-upload-page h1,
.supplier-upload-page h2 { color: #fff; }
.supplier-upload-page input,
.supplier-upload-page textarea,
.supplier-upload-page select { color: var(--vt-ink); border-color: #aebbc3; background: #fff; }

/* Admin: selected fully dark management console. */
.admin-app { min-height: 100svh; color: #dce6ea; background: var(--vt-navy); }
.admin-app .admin-brand .brand-mark { border: 0; border-radius: 0; background: transparent; }
.admin-app .admin-brand .brand-mark img { filter: invert(1); mix-blend-mode: screen; }
.admin-app .admin-shell { min-height: 100svh; background: var(--vt-navy); }
.admin-app .login-panel { color: #eaf0f3; border: 1px solid #324b5c; border-radius: 4px; background: #10263a; box-shadow: var(--vt-shadow); }
.admin-app .login-panel h1,
.admin-app .login-panel label { color: #fff; }
.admin-app .login-panel input { color: var(--vt-ink); border-color: #aebbc3; background: #fff; }
.admin-app .dashboard { color: #dce6ea; background: var(--vt-navy); }
.admin-app .admin-header { border-color: #2b4558; background: #06182b; }
.admin-app .admin-header a,
.admin-app .admin-header button { border-radius: 3px; }
.admin-app .workspace-tabs { border-color: #2b4558; background: #071b30; }
.admin-app .workspace-tabs button { color: #aebdc6; border-radius: 0; background: transparent; }
.admin-app .workspace-tabs button.active { color: #fff; box-shadow: inset 0 -3px var(--vt-orange); }
.admin-app .stats,
.admin-app .service-status,
.admin-app .workspace,
.admin-app .record-list-panel,
.admin-app .detail-panel { border-color: #30495a; background: #0b2033; }
.admin-app .stat,
.admin-app .service-item,
.admin-app .record-row,
.admin-app .detail-grid div,
.admin-app .business-form,
.admin-app .order-form,
.admin-app .review-form,
.admin-app .quote-form,
.admin-app .payment-form,
.admin-app .payment-quick-list { color: #dce6ea; border-color: #344e60; border-radius: 4px; background: #10283b; box-shadow: none; }
.admin-app .stat strong,
.admin-app .panel-heading h1,
.admin-app .editor-heading h2,
.admin-app .section-title,
.admin-app form label { color: #fff; }
.admin-app .record-row.active { border-color: var(--vt-orange); background: #163349; box-shadow: inset 3px 0 var(--vt-orange); }
.admin-app input,
.admin-app textarea,
.admin-app select { color: var(--vt-ink); border-color: #aebbc3; background: #fff; }
.admin-app button:not(.danger) { border-radius: 3px; }

[dir="rtl"] .site-home .nav { margin-right: auto; margin-left: 0; }
[dir="rtl"] .site-home .hero-copy,
[dir="rtl"] .site-home .section { text-align: right; }
[dir="rtl"] .site-home .language-options { right: auto; left: 0; }

@media (max-width: 1180px) {
  .site-home .topbar { gap: 14px; padding: 0 28px; }
  .site-home .nav { gap: 0; }
  .site-home .nav a,
  .site-home .nav .auth-entry-button { padding-inline: 11px; font-size: .86rem; }
  .site-home .hero h1 { font-size: 3.5rem !important; white-space: normal; }
  .site-home .hero-copy { width: min(64%, 760px) !important; padding-inline: 34px !important; }
}

@media (max-width: 840px) {
  .site-home .topbar { min-height: 70px; padding: 0 18px; }
  .site-home .brand { gap: 10px; }
  .site-home .brand-mark { width: 40px !important; height: 40px !important; }
  .site-home .brand strong { font-size: .98rem; }
  .site-home .menu-btn { display: inline-flex; margin-left: auto; }
  .site-home .nav {
    position: absolute;
    z-index: 120;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 10px 18px 18px;
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255,255,255,.16);
    background: #071b30;
    box-shadow: 0 18px 38px rgba(0,0,0,.3);
  }
  .site-home .nav.open { display: grid; }
  .site-home .nav a,
  .site-home .nav .auth-entry-button { width: 100%; justify-content: flex-start; padding: 12px 2px; text-align: left; }
  .site-home .nav a::after,
  .site-home .nav .auth-entry-button::after { right: auto; left: 2px; width: 34px; }
  .site-home .language-menu summary { min-width: 44px; justify-content: center; }
  .site-home .language-menu [data-language-current] { display: none; }
  .site-home .hero {
    grid-template-rows: minmax(680px, calc(100svh - 70px)) auto;
    background-image: linear-gradient(180deg, rgba(2,15,28,.18) 0%, rgba(2,15,28,.46) 46%, rgba(2,15,28,.94) 100%), url("assets/design/homepage-cinematic-background.png") !important;
    background-position: 67% center !important;
    animation: none;
  }
  .site-home .hero-copy { width: 100% !important; min-height: 680px; justify-content: flex-end; padding: 36px 22px 44px !important; }
  .site-home .hero h1 { max-width: 600px !important; font-size: 3.1rem !important; }
  .site-home .hero h2 { max-width: 560px; font-size: 2rem !important; }
  .site-home .hero-copy > p:not(.hero-trustline) { max-width: 560px; font-size: .98rem; }
  .site-home .hero .map-card-v2,
  .site-home .hero .map-card-v2.depth-surface { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding: 28px 22px !important; }
  .site-home .map-v2-heading { grid-column: 1; grid-row: 1; padding: 0 0 16px; }
  .site-home .map-v2-services { grid-column: 1; grid-row: 2; padding: 0 0 22px; }
  .site-home .map-v2-plot { grid-column: 1; grid-row: 3; height: 280px; }
  .site-home .section,
  .site-home .global-network,
  .site-home footer { padding: 48px 22px; }
  .site-home .section h2,
  .site-home .global-network h2 { font-size: 2.55rem; }
  .site-home .why-heading,
  .site-home .quotes-heading,
  .site-home .documents-section { grid-template-columns: 1fr; gap: 28px; }
  .site-home .why-grid,
  .site-home .cards,
  .site-home .export-flow,
  .site-home .terms-grid,
  .site-home .privacy-grid,
  .site-home .policy-grid { grid-template-columns: 1fr; }
  .site-home .why-grid article,
  .site-home .cards article,
  .site-home .export-flow article,
  .site-home .terms-grid article,
  .site-home .privacy-grid article,
  .site-home .policy-grid article { border-right: 0 !important; }
  .site-home .fee-summary { grid-template-columns: 1fr; }
  .site-home .fee-summary > div { border-right: 0; border-bottom: 1px solid var(--vt-line); }
  .site-home .fee-summary > div:last-child { border-bottom: 0; }
  .site-home .documents-section { align-content: start; }
  .site-home .document-list article,
  .site-home .page-deck article { min-height: 330px !important; padding: 30px !important; }
  .site-home .portal-login-dialog { grid-template-columns: 1fr; width: min(96vw, 620px); max-height: 94svh; overflow: auto; }
  .site-home .portal-login-story { min-height: 220px; }
  .site-home .portal-login-story-copy { right: 24px; bottom: 22px; left: 24px; }
  .site-home .portal-login-story-copy strong { font-size: 2rem; }
  .site-home .portal-login-story-copy p,
  .site-home .portal-login-story-copy ul { display: none; }
  .site-home .portal-login-card { padding: 30px 24px; }
  .client-portal .portal-main { margin-left: 0; }
  .client-portal .portal-sidebar { transform: translateX(-100%); transition: transform .25s ease; }
  .client-portal .portal-sidebar.open { transform: none; }
  .client-portal .portal-view { padding: 20px 14px; }
  .client-portal .welcome-panel { min-height: 280px; padding: 28px 22px; background-position: 64% center; }
  .client-portal .welcome-panel h1 { font-size: 2.4rem; }
  .client-portal .metric-grid { grid-template-columns: 1fr 1fr; }
  .supplier-portal .supplier-welcome { min-height: 400px; }
}

@media (max-width: 520px) {
  .site-home .topbar { min-height: 70px; flex-wrap: nowrap !important; gap: 7px; padding: 0 10px; }
  .site-home .brand { min-width: 0; gap: 7px; }
  .site-home .brand strong { max-width: 132px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .9rem; }
  .site-home .brand-mark { width: 36px !important; height: 36px !important; flex-basis: 36px; }
  .site-home .menu-btn { padding-inline: 11px; }
  .site-home .hero { grid-template-rows: minmax(650px, calc(100svh - 70px)) auto; }
  .site-home .hero-copy { min-height: 650px; padding-inline: 18px !important; }
  .site-home .hero h1 { font-size: 2.55rem !important; line-height: 1.06 !important; }
  .site-home .hero h2 { font-size: 1.75rem !important; }
  .site-home .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .site-home .hero-actions a { width: 100%; min-width: 0; min-height: 52px; }
  .site-home .hero-trustline { font-size: .78rem; }
  .site-home .map-v2-heading strong { font-size: 1.5rem; }
  .site-home .map-v2-plot { height: 255px; }
  .site-home .map-node b { font-size: .62rem; }
  .site-home .map-node small { display: none; }
  .site-home .section h2,
  .site-home .global-network h2 { font-size: 2.1rem; }
  .site-home .document-list article,
  .site-home .page-deck article { min-height: 300px !important; padding: 24px !important; }
  .site-home .portal-login-story { min-height: 170px; }
  .site-home .portal-login-card { padding: 26px 18px max(26px, env(safe-area-inset-bottom)); }
  .client-portal .portal-topbar { padding-inline: 12px; }
  .client-portal .portal-topbar > div p { display: none; }
  .client-portal .portal-topbar > div strong { max-width: 34vw; }
  .client-portal .metric-grid { grid-template-columns: 1fr; }
  .client-portal .welcome-panel { min-height: 300px; background-position: 70% center; }
  .client-portal .welcome-panel h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* 2026-07-22 reference pass: geographic map, restored supplier access, cardless surfaces. */
.site-home .nav .client-entry,
.site-home .brand-supplier-entry {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #fff !important;
  border: 1px solid rgba(240, 126, 65, .78) !important;
  border-radius: 4px !important;
  background: linear-gradient(180deg, rgba(224, 103, 43, .98), rgba(188, 72, 25, .96)) !important;
  box-shadow: 0 0 0 1px rgba(255, 180, 128, .12), 0 0 18px rgba(224, 103, 43, .3) !important;
  text-shadow: 0 1px 1px rgba(53, 19, 4, .32);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-home .nav .client-entry::after { display: none; }
.site-home .nav .client-entry:hover,
.site-home .brand-supplier-entry:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 194, 150, .96) !important;
  background: linear-gradient(180deg, #ee7a3d, #c54b1f) !important;
  box-shadow: 0 0 0 1px rgba(255, 195, 151, .2), 0 0 24px rgba(232, 111, 50, .46) !important;
}
.site-home .brand-supplier-entry {
  flex: 0 0 auto;
  white-space: nowrap;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
}

.site-home .hero .map-card-v2,
.site-home .hero .map-card-v2.depth-surface {
  min-height: 320px !important;
  grid-template-columns: minmax(300px, .3fr) minmax(0, .7fr);
  padding: 38px 48px !important;
  background-color: #06182b !important;
  background-image: linear-gradient(90deg, rgba(3,18,33,.3), rgba(3,18,33,0) 45%), url("assets/design/prd-network-map-background.png") !important;
  background-position: center !important;
  background-size: cover !important;
}
.site-home .map-v2-heading { padding-right: 58px; }
.site-home .map-v2-services { padding-right: 58px; }
.site-home .map-v2-plot {
  height: 248px;
  overflow: visible;
  background: transparent !important;
}
.site-home .map-v2-plot::before,
.site-home .map-v2-plot::after { display: none !important; }
.site-home .map-node { grid-template-columns: auto auto; grid-template-rows: auto; align-items: center; gap: 7px; }
.site-home .map-node em { grid-column: 1; width: 11px; height: 11px; }
.site-home .map-node b { grid-column: 2; color: #f4f7f8; font-size: .78rem; font-weight: 680; }
.site-home .map-node-main em { width: 17px; height: 17px; border-color: var(--vt-orange); background: transparent; }
.site-home .map-node-main b,
.site-home .map-node-hk b { color: #fff; }
.site-home .map-route { left: 43%; top: 30%; background: rgba(226, 103, 43, .85); }
.site-home .route-foshan { width: 16%; transform: rotate(150deg); }
.site-home .route-dongguan { width: 16%; transform: rotate(38deg); }
.site-home .route-zhongshan { width: 30%; transform: rotate(82deg); }
.site-home .route-shenzhen { width: 36%; transform: rotate(54deg); }
.site-home .route-jiangmen { width: 35%; transform: rotate(122deg); }
.site-home .route-huizhou { width: 17%; transform: rotate(0deg); }
.site-home .route-hongkong { width: 49%; transform: rotate(60deg); }
.site-home .route-global { left: 69%; top: 83%; width: 43%; background: repeating-linear-gradient(90deg, var(--vt-orange) 0 6px, transparent 6px 11px); }
.site-home .route-global-one { transform: rotate(-28deg); }
.site-home .route-global-two { transform: rotate(-15deg); animation-delay: -1.1s; }
.site-home .map-global-label { position: absolute; z-index: 3; right: 1%; top: 48%; color: #d4dde2; font-size: .72rem; white-space: nowrap; }

/* Editorial rows replace every public card surface. */
.site-home .why-grid,
.site-home .cards,
.site-home .export-flow {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--vt-line);
}
.site-home .why-grid article,
.site-home .cards article,
.site-home .export-flow article {
  display: grid;
  min-height: 0;
  grid-template-columns: 72px minmax(240px, .72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border: 0 !important;
  border-bottom: 1px solid var(--vt-line) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .why-grid article,
.site-home .why-grid article:last-child,
.site-home .cards article,
.site-home .export-flow article { grid-column: auto !important; }
.site-home .why-grid article span,
.site-home .cards article span,
.site-home .export-flow article span { grid-column: 1; margin-top: 3px; font-size: .78rem; }
.site-home .why-grid article h3,
.site-home .cards article h3,
.site-home .export-flow article h3 { grid-column: 2; margin: 0; font-size: 1.22rem; }
.site-home .why-grid article p,
.site-home .cards article p,
.site-home .export-flow article p { grid-column: 3; margin: 0; line-height: 1.75; }

.site-home .terms-grid,
.site-home .privacy-grid,
.site-home .policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  border-top: 1px solid var(--vt-line);
}
.site-home .terms-grid article,
.site-home .privacy-grid article,
.site-home .policy-grid article {
  min-height: 0;
  padding: 26px 0;
  border: 0 !important;
  border-bottom: 1px solid var(--vt-line) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .terms-grid article h3,
.site-home .privacy-grid article h3,
.site-home .policy-grid article h2 { margin: 0 0 10px; font-size: 1.08rem; }
.site-home .terms-grid article p,
.site-home .privacy-grid article p,
.site-home .policy-grid article p { margin: 0; line-height: 1.72; }

.site-home .fee-summary {
  border: 0 !important;
  border-top: 1px solid var(--vt-line) !important;
  border-bottom: 1px solid var(--vt-line) !important;
}
.site-home .fee-summary > div {
  padding: 24px 28px;
  border: 0 !important;
  border-right: 1px solid var(--vt-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .fee-summary > div:last-child { border-right: 0 !important; }
.site-home .fee-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 52px; border-top: 1px solid var(--vt-line); }
.site-home .fee-group,
.site-home .vip-panel,
.site-home .tax-note,
.site-home .terms-note {
  margin: 0 !important;
  padding: 28px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--vt-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .fee-group {
  position: static !important;
  display: grid !important;
  min-width: 0;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 10px 20px !important;
  overflow: visible !important;
}
.site-home .fee-group > * { grid-column: 2; }
.site-home .fee-group > .fee-number {
  position: static !important;
  grid-column: 1 !important;
  grid-row: 1 / span 8 !important;
  width: auto !important;
  height: auto !important;
  margin: 2px 0 0 !important;
  color: #e88952 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.site-home .fee-group > h3 { margin-top: 0; }
.site-home .fee-wide,
.site-home .payment-group,
.site-home .vip-panel { grid-column: 1 / -1; }
.site-home .fee-tier,
.site-home .inspection-grid > div,
.site-home .vip-tiers > div { border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }

.site-home .quote-toolbar,
.site-home .request-form {
  padding-inline: 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--vt-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .quote-toolbar label,
.site-home .request-form label,
.site-home .request-form legend { color: #f2f5f6; }
.site-home .quote-card,
.site-home .quote-card-media,
.site-home .quote-card-body,
.site-home .quote-card-footer { border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.site-home .quote-card { border: 0 !important; border-bottom: 1px solid var(--vt-line) !important; }

.site-home .documents-section { align-items: start; }
.site-home .document-list article,
.site-home .page-deck article {
  min-height: 310px !important;
  padding: 34px 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--vt-line) !important;
  border-bottom: 1px solid var(--vt-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-home .page-deck-controls { margin-top: 0 !important; padding-top: 18px; border-bottom: 1px solid var(--vt-line); padding-bottom: 18px; }
.site-home .page-deck-controls button { width: 42px; height: 42px; border-radius: 0; background: transparent; }

/* Portals and back office use the same flat operational language. */
.site-home .portal-login-dialog,
.site-home .portal-login-card,
.client-portal .welcome-panel,
.client-portal .metric-grid article,
.client-portal .portal-card,
.client-portal .portal-empty.large,
.supplier-portal .auth-panel,
.supplier-portal .supplier-welcome,
.supplier-portal .profile-entry-grid > a,
.supplier-portal form[data-profile-form],
.supplier-upload-page form,
.supplier-upload-page .upload-section,
.supplier-upload-page fieldset,
.admin-app .login-panel,
.admin-app .stats,
.admin-app .service-status,
.admin-app .workspace,
.admin-app .record-list-panel,
.admin-app .detail-panel,
.admin-app .stat,
.admin-app .service-item,
.admin-app .record-row,
.admin-app .detail-grid div,
.admin-app .business-form,
.admin-app .order-form,
.admin-app .review-form,
.admin-app .quote-form,
.admin-app .payment-form,
.admin-app .payment-quick-list {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.client-portal .metric-grid { gap: 0; border-top: 1px solid #bdcbd4; border-bottom: 1px solid #bdcbd4; }
.client-portal .metric-grid article { border: 0; border-right: 1px solid #bdcbd4; }
.client-portal .metric-grid article:last-child { border-right: 0; }
.client-portal .portal-card,
.client-portal .portal-empty.large { border-inline: 0; }
.supplier-portal .profile-entry-grid > a,
.supplier-portal form[data-profile-form],
.supplier-upload-page form,
.supplier-upload-page .upload-section,
.supplier-upload-page fieldset { background: transparent; }
.admin-app .stats,
.admin-app .service-status,
.admin-app .workspace,
.admin-app .record-list-panel,
.admin-app .detail-panel { border-inline: 0; }
.admin-app .stats,
.admin-app .service-status {
  gap: 0 !important;
  border: 0 !important;
  border-top: 1px solid #30495a !important;
  border-bottom: 1px solid #30495a !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.admin-app .stat,
.admin-app .service-item {
  border: 0 !important;
  border-right: 1px solid #30495a !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.admin-app .stat:last-child,
.admin-app .service-item:last-child { border-right: 0 !important; }
.admin-app .workspace,
.admin-app .record-list-panel,
.admin-app .detail-panel { background: transparent !important; }
.admin-app .record-row {
  border: 0 !important;
  border-bottom: 1px solid #30495a !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.admin-app .record-row.active { border-left: 3px solid var(--vt-orange) !important; background: rgba(215,101,43,.06) !important; }

@media (max-width: 1320px) {
  .site-home .nav { gap: 0; }
  .site-home .nav a,
  .site-home .nav .auth-entry-button { padding-inline: 10px; font-size: .82rem; }
  .site-home .topbar { padding-inline: 30px; gap: 14px; }
}

@media (max-width: 840px) {
  .site-home .brand-supplier-entry {
    min-height: 36px;
    padding: 7px 10px;
    font-size: .76rem;
  }
  .site-home .nav .client-entry { width: max-content; min-width: 112px; padding-inline: 14px; }
  .site-home .hero .map-card-v2,
  .site-home .hero .map-card-v2.depth-surface {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(260px, 42vw);
    padding: 30px 22px !important;
    background-position: 62% center !important;
  }
  .site-home .map-v2-plot { height: 280px; overflow: hidden; }
  .site-home .map-global-label { right: 2%; top: 48%; }
  .site-home .why-grid article,
  .site-home .cards article,
  .site-home .export-flow article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 18px;
    padding: 24px 0;
  }
  .site-home .why-grid article h3,
  .site-home .cards article h3,
  .site-home .export-flow article h3 { grid-column: 2; }
  .site-home .why-grid article p,
  .site-home .cards article p,
  .site-home .export-flow article p { grid-column: 2; }
  .site-home .terms-grid,
  .site-home .privacy-grid,
  .site-home .policy-grid,
  .site-home .fee-groups { grid-template-columns: 1fr; gap: 0; }
  .site-home .fee-group,
  .site-home .vip-panel { grid-column: 1; }
  .site-home .fee-summary > div { border-right: 0 !important; border-bottom: 1px solid var(--vt-line) !important; }
  .site-home .fee-summary > div:last-child { border-bottom: 0 !important; }
  .site-home .document-list article,
  .site-home .page-deck article { min-height: 280px !important; padding: 28px 0 !important; }
  .client-portal .metric-grid article { border-right: 0; border-bottom: 1px solid #bdcbd4; }
  .client-portal .metric-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 440px) {
  .site-home .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    min-height: 112px;
    padding: 10px 16px;
  }
  .site-home .brand { grid-column: 1; grid-row: 1; min-width: 0; }
  .site-home .brand strong { max-width: none; font-size: .85rem; }
  .site-home .brand small { display: none; }
  .site-home .brand-supplier-entry { grid-column: 2; grid-row: 1; padding-inline: 9px; font-size: .7rem; }
  .site-home .menu-btn { grid-column: 1; grid-row: 2; justify-self: start; min-height: 36px; padding-inline: 15px; }
  .site-home .language-menu { grid-column: 2; grid-row: 2; }
  .site-home .account-nav { grid-column: 2; grid-row: 1; }
  .site-home .nav { top: 112px; }
}

@media (max-width: 520px) {
  .site-home .map-v2-plot { height: 250px; margin-inline: -12px; }
  .site-home .map-node b { font-size: .58rem; }
  .site-home .map-global-label { max-width: 82px; white-space: normal; text-align: right; }
  .site-home .fee-summary > div { padding-inline: 0; }
}
