:root {
  --ink: #070b14;
  --ink-2: #0a1628;
  --ink-3: #0f1e3c;
  --sand: #FFFFFF;
  --sand-mute: #f1f5f9;
  --champagne: #0077ff;
  --champagne-deep: #005fcc;
  --champagne-soft: #69b1ff;
  --horizon: #69b1ff;
  --horizon-soft: rgba(0, 119, 255, 0.18);
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #cbd5e1;
  --ok: #7eb8a2;
  --danger: #c4786a;
  --gold-rgb: 0, 119, 255;
  --ink-rgb: 7, 11, 20;
  --mas-blue: #0077ff;
  --mas-blue-light: #69b1ff;
  --mas-blue-dim: rgba(0, 119, 255, 0.14);
  --mas-blue-glow: rgba(0, 119, 255, 0.35);
  --eco-card: rgba(15, 30, 60, 0.88);
  --display: "Inter", "Noto Sans SC", "PingFang SC", sans-serif;
  --sans: "Inter", "Noto Sans SC", "PingFang SC", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }

.sm-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* —— Header (EasyGlobal eco style) —— */
.sm-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.sm-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 20, 0.96);
}
.sm-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.sm-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 119, 255, 0.35);
}
.sm-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a85ff 0%, #0077ff 55%, #0a1628 100%);
  border: 1px solid rgba(0, 119, 255, 0.45);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.sm-brand__mark span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sm-brand__text { min-width: 0; }
.sm-brand__name {
  display: block;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #fff;
}
.sm-brand__tag {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #e8f2ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  opacity: 1;
}

.sm-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 720px;
  margin-inline: auto;
}
.sm-nav::-webkit-scrollbar { display: none; }
.sm-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--sand-mute);
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.sm-nav a:hover {
  color: #fff;
  background: rgba(0, 119, 255, 0.16);
}
.sm-nav a.is-active {
  color: #fff;
  background: var(--mas-blue);
  box-shadow: 0 0 20px var(--mas-blue-glow);
}

.sm-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sm-lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.sm-lang button {
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.sm-lang button.is-active {
  color: #fff;
  background: var(--mas-blue);
}

.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.sm-btn:hover { transform: translateY(-1px); }
.sm-btn--primary {
  background: var(--mas-blue);
  color: #fff;
  box-shadow: 0 6px 28px var(--mas-blue-glow);
}
.sm-btn--primary:hover {
  background: #1a85ff;
  box-shadow: 0 8px 32px var(--mas-blue-glow);
}
.sm-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.sm-btn--ghost:hover {
  border-color: var(--mas-blue-light);
  color: var(--mas-blue-light);
  background: transparent;
}
.sm-btn--soft {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--sand);
}
.sm-btn--lg { min-height: 52px; padding: 0 28px; font-size: 16px; }
.sm-btn--sm { min-height: 38px; padding: 0 14px; font-size: 13px; }

.sm-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
}
.sm-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--sand);
  transition: transform 0.25s, opacity 0.25s;
}
.sm-menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sm-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.sm-menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 招募页：中英在抽屉内，汉堡按钮始终可点 */
.sm-page--recruit .sm-menu-btn {
  display: inline-flex;
}
.sm-page--recruit .sm-drawer .sm-lang--drawer {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sm-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(5, 8, 16, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.sm-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sm-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 90;
  width: min(300px, 78vw);
  background: rgba(10, 22, 40, 0.98);
  padding: 18px 16px 28px;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  border-left: 1px solid rgba(0, 119, 255, 0.22);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  -webkit-overflow-scrolling: touch;
}
.sm-drawer.is-open { transform: translateX(0); }
.sm-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}
.sm-drawer nav a {
  padding: 12px 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 550;
  color: var(--sand-mute);
  border: 1px solid transparent;
}
.sm-drawer nav a:hover {
  color: var(--sand);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}
.sm-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  bottom: 0;
  padding-top: 8px;
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.98) 18%);
}
.sm-lang--drawer {
  width: 100%;
  margin-bottom: 4px;
}
.sm-lang--drawer button {
  flex: 1;
  padding: 11px 12px;
  font-size: 13px;
}

/* —— Hero —— */
.sm-hero {
  position: relative;
  min-height: min(72vh, 680px);
  min-height: min(72dvh, 680px);
  display: flex;
  align-items: flex-end;
  padding: 36px 0 40px;
  overflow: hidden;
}
.sm-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0a1628 0%, #070b14 55%, #050810 100%);
  overflow: hidden;
}
.sm-hero__slides {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  animation: sm-hero-drift 28s ease-in-out infinite alternate;
}
.sm-hero__slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.65s ease;
  will-change: opacity;
}
.sm-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.sm-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.22) 0%, rgba(7, 11, 20, 0.42) 38%, rgba(7, 11, 20, 0.78) 100%),
    linear-gradient(105deg, rgba(7, 11, 20, 0.45) 0%, rgba(7, 11, 20, 0.12) 55%, rgba(0, 119, 255, 0.12) 100%);
}
.sm-hero__dots {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-start;
}
.sm-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.sm-hero__dots button.is-active {
  width: 22px;
  background: #3b9eff;
}
.sm-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
@keyframes sm-hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hero__slides { animation: none; }
  .sm-hero__slide { transition: none; }
}
.sm-hero__inner {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 40px));
  margin-inline: auto;
}
.sm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #d7eaff;
  border: 1px solid rgba(105, 177, 255, 0.55);
  background: rgba(0, 40, 90, 0.55);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 18px;
  box-shadow: 0 0 24px var(--mas-blue-glow);
  animation: sm-rise 0.9s var(--ease) 0.05s both;
}
.sm-hero__brand {
  font-size: clamp(31px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 119, 255, 0.28);
  animation: sm-rise 0.9s var(--ease) 0.12s both;
}
.sm-hero__brand em {
  font-style: normal;
  color: #9fd0ff;
  display: inline;
  font-size: 0.78em;
  letter-spacing: -0.01em;
  margin-left: 0.15em;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.sm-brand-zh {
  margin-right: 0.08em;
}

/* EN：隐藏中文品牌名，SoulMate 加大加明显 */
html.lang-en [data-zh-only],
html.lang-en .sm-brand-zh {
  display: none !important;
}
html.lang-zh [data-en-only] {
  display: none !important;
}
html.lang-en [data-en-only][hidden] {
  display: none !important;
}
html.lang-en .sm-brand__name {
  font-size: clamp(20px, 5.2vw, 26px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  color: #fff !important;
}
html.lang-en .sm-hero__brand {
  font-size: clamp(42px, 10vw, 68px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em;
}
html.lang-en .sm-hero__brand em,
html.lang-en .sm-brand-en {
  font-size: 1em !important;
  margin-left: 0 !important;
  color: #7ec0ff !important;
  text-shadow: 0 0 28px rgba(0, 119, 255, 0.45);
}
html.lang-en .sm-sticky-dl__copy strong,
html.lang-en .sm-footer__brand [data-i18n="brandName"] {
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
}

.sm-hero__slogan {
  font-size: clamp(17px, 3vw, 24px);
  line-height: 1.45;
  color: #e8f4ff;
  max-width: 22em;
  margin-bottom: 24px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  animation: sm-rise 0.9s var(--ease) 0.2s both;
}
.sm-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
  animation: sm-rise 0.9s var(--ease) 0.3s both;
}
.sm-hero__pillars--below {
  animation: none;
  margin-bottom: 14px;
}
.sm-hero-below {
  padding: 22px 0 8px;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(7, 11, 20, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sm-hero-below__trust {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #e8f2ff;
  letter-spacing: 0.02em;
  margin: 4px 0 8px;
}
.sm-hero__card {
  padding: 16px 16px 18px;
  border: 1px solid rgba(145, 200, 255, 0.42);
  background: rgba(8, 22, 44, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.sm-hero__card strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.sm-hero__card span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #dbeafe;
  font-weight: 700;
}
.sm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  animation: sm-rise 0.9s var(--ease) 0.4s both;
}
.sm-hero__cta .sm-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}
.sm-hero__cta .sm-btn--ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.sm-hero__trust {
  font-size: 14px;
  color: #f1f5f9;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  animation: sm-rise 0.9s var(--ease) 0.48s both;
}


/* —— Trust bar (EasyGlobal style) —— */
.sm-trust {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 22, 40, 0.96);
  padding-top: var(--header-h);
  position: relative;
  z-index: 2;
}
.sm-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  padding: 12px 0;
}
.sm-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--sand-mute);
}
.sm-trust__item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mas-blue);
  box-shadow: 0 0 10px var(--mas-blue-glow);
  display: inline-block;
}

/* —— Green / clean compliance line —— */
.sm-green-line {
  margin: 0 auto;
  padding: 0 0 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #5dcc8a;
  opacity: 0.92;
  width: 100%;
  box-sizing: border-box;
}
.sm-green-line--section {
  padding: 10px 0 0;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.sm-green-line--footer {
  padding: 8px 0 4px;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* —— Why strip —— */
.sm-why {
  padding: 28px 0 8px;
  margin-top: -8px;
  position: relative;
  z-index: 2;
}
.sm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sm-why__card {
  padding: 22px 20px 24px;
  background: var(--eco-card);
  border: 1px solid rgba(0, 119, 255, 0.22);
  border-radius: 14px;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.sm-why__card--accent {
  border-color: rgba(0, 119, 255, 0.45);
  background: linear-gradient(165deg, rgba(0, 119, 255, 0.16), rgba(15, 30, 60, 0.95));
  box-shadow: 0 0 28px rgba(0, 119, 255, 0.18);
}
.sm-why__num {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--champagne);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.sm-why__card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--sand);
}
.sm-why__card ul {
  display: grid;
  gap: 10px;
}
.sm-why__card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sand-mute);
}
.sm-why__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

/* —— Origin story —— */
.sm-origin {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}
.sm-origin__visual {
  display: grid;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.sm-origin__visual > img {
  width: 100%;
  height: min(480px, 58vw);
  object-fit: cover;
  object-position: center center;
  background: #050810;
  border: 1px solid var(--line);
  display: block;
}
.sm-origin__stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sm-origin__stack img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  border: 1px solid var(--line);
  display: block;
}
.sm-story {
  display: grid;
  gap: 12px;
}
.sm-story__card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(0, 119, 255, 0.18);
  background: var(--eco-card);
  border-radius: 14px;
}
.sm-story__card--accent {
  border-color: rgba(0, 119, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(255, 255, 255, 0.02));
}
.sm-story__n {
  font-family: var(--display);
  color: var(--champagne);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}
.sm-story__card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.sm-story__card ul {
  display: grid;
  gap: 8px;
}
.sm-story__card li {
  padding-left: 14px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--sand-mute);
}
.sm-story__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
}
.sm-quote {
  margin: 6px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--champagne);
  background: rgba(0, 119, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--sand);
}

/* —— Scannable lists —— */
.sm-scan {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.sm-scan li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--sand-mute);
}
.sm-scan li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.18);
}
.sm-scan--grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sm-adv-block__brief {
  margin-top: 10px;
  color: var(--sand-mute);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42em;
}
.sm-scan-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.sm-scan-pill {
  font-size: 0.9rem;
  color: var(--sand);
  padding: 10px 14px;
  border: 1px solid rgba(0, 119, 255, 0.35);
  background: rgba(0, 119, 255, 0.08);
}

.sm-prose {
  display: grid;
  gap: 16px;
  color: var(--sand-mute);
  font-size: 1.02rem;
  max-width: 62ch;
  line-height: 1.65;
}
.sm-prose strong { color: var(--sand); font-weight: 650; }

.sm-service__desc {
  max-width: 52ch;
  line-height: 1.6;
  color: var(--sand-mute);
  font-size: 0.96rem;
  margin-bottom: 16px;
}
@keyframes sm-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.sm-section {
  padding: 96px 0;
  position: relative;
}
.sm-section--alt {
  background:
    radial-gradient(700px 320px at 90% 0%, var(--horizon-soft), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}
.sm-section--deep {
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(0, 119, 255, 0.08), transparent 55%),
    var(--ink-2);
}
.sm-section__head {
  max-width: 760px;
  margin-bottom: 48px;
}
.sm-kicker {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mas-blue-light);
  margin-bottom: 10px;
}
.sm-section__head h2 {
  font-size: clamp(25px, 4vw, 39px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.sm-section__head p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42em;
  line-height: 1.55;
}

/* —— Advantage cinematic showcase —— */
.sm-adv-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.sm-adv-hero__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 119, 255, 0.28);
  background: var(--eco-card);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  min-height: 0;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.sm-adv-hero__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 255, 0.65);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.sm-adv-hero__card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  display: block;
  transition: transform 0.8s var(--ease);
}
.sm-adv-hero__card:hover img { transform: scale(1.02); }
.sm-adv-hero__card::after { display: none; }
.sm-adv-hero__card > *:not(img) { position: relative; z-index: 1; }
.sm-adv-hero__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--mas-blue);
  padding: 5px 10px;
  margin: 14px 16px 0;
  border-radius: 999px;
}
.sm-adv-hero__num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--champagne);
  line-height: 1;
  margin: 10px 16px 6px;
}
.sm-adv-hero__card h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  margin: 0 16px 8px;
  color: #fff;
}
.sm-adv-hero__card p {
  font-size: 0.92rem;
  color: var(--sand-mute);
  line-height: 1.55;
  margin: 0 16px 16px;
  font-weight: 700;
}

.sm-adv-block {
  display: grid;
  gap: 28px;
}
.sm-adv-block__item {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid rgba(0, 119, 255, 0.22);
  background: rgba(11, 37, 80, 0.72);
  overflow: hidden;
  min-height: 420px;
}
.sm-adv-block__item:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.sm-adv-block__item:nth-child(even) .sm-adv-block__visual { order: 2; }
.sm-adv-block__visual {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050810;
}
.sm-adv-block__visual > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  display: block;
}
.sm-adv-block__thumbs {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 10px 12px 12px;
  flex: 0 0 auto;
  background: rgba(5, 10, 20, 0.96);
  border-top: 1px solid rgba(0, 119, 255, 0.2);
}
.sm-adv-block__thumbs img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  object-position: center center;
  background: rgba(5, 8, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: block;
}
.sm-adv-block__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sm-adv-block__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sm-adv-block__num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--champagne);
  line-height: 1;
}
.sm-adv-block__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--champagne);
  border: 1px solid rgba(0, 119, 255, 0.4);
  padding: 5px 10px;
}
.sm-adv-block__body h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.sm-adv-block__hook {
  color: var(--sand);
  font-size: 1.02rem;
  font-weight: 550;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid var(--champagne);
}
.sm-adv-block__body p {
  color: var(--sand-mute);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.sm-adv-block__list {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}
.sm-adv-block__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--sand-mute);
  font-size: 0.9rem;
}
.sm-adv-block__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.12);
}

.sm-lux-band {
  margin-top: 40px;
  column-count: 4;
  column-gap: 8px;
}
.sm-lux-band figure {
  margin: 0 0 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: #050810;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.sm-lux-band figure:nth-child(n+8) { display: flex; }
.sm-lux-band img {
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
  filter: contrast(1.06) saturate(0.96);
  background: #050810;
}
.sm-lux-band figure:hover img { transform: scale(1.03); }
.sm-lux-band figcaption {
  position: static;
  flex-shrink: 0;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(0, 119, 255, 0.22);
}

/* —— Services —— */
.sm-services {
  display: grid;
  gap: 20px;
}
.sm-service {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(18, 56, 104, 0.9), rgba(7, 11, 20, 0.6));
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.sm-service:hover {
  border-color: rgba(0, 119, 255, 0.4);
  transform: translateY(-2px);
}
.sm-service__photo {
  position: relative;
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  background: #050810;
}
.sm-service__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.sm-service:hover .sm-service__photo img { transform: scale(1.05); }
.sm-service__content { padding: 24px 24px 22px; }
.sm-service__top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.sm-service__idx {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--champagne);
}
.sm-service h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.25;
}
.sm-service__fit {
  font-size: 13px;
  color: var(--horizon);
  font-weight: 600;
  margin-bottom: 14px;
}
.sm-service__desc {
  color: var(--sand-mute);
  font-size: 0.96rem;
  margin-bottom: 16px;
}
.sm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sm-chips--dense {
  gap: 6px;
}
.sm-chips--dense span {
  font-size: 11px;
  padding: 5px 9px;
}
.sm-chips span {
  font-size: 12px;
  color: var(--sand-mute);
  padding: 6px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.sm-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--danger);
  background: rgba(196, 120, 106, 0.08);
  color: var(--sand-mute);
  font-size: 0.92rem;
}

/* —— Grid blocks —— */
.sm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sm-panel {
  border: 1px solid var(--line);
  background: rgba(11, 37, 80, 0.75);
  padding: 28px;
}
.sm-panel h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--champagne);
}
.sm-panel ol,
.sm-panel ul {
  display: grid;
  gap: 12px;
}
.sm-panel li {
  color: var(--sand-mute);
  font-size: 0.95rem;
  padding-left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.sm-panel li b {
  color: var(--sand);
  font-weight: 700;
  min-width: 1.4em;
}

.sm-traits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.sm-trait {
  padding: 22px 20px;
  border-top: 2px solid var(--champagne);
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.08), transparent 70%);
}
.sm-trait h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sm-trait p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— Steps —— */
.sm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.sm-step {
  position: relative;
  padding: 28px 22px 28px 22px;
  border-top: 1px solid var(--line);
}
.sm-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.sm-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.sm-step p {
  font-size: 0.92rem;
  color: var(--muted);
  padding-right: 16px;
}
.sm-warn {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
  color: #fecaca;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

/* —— Platform safety —— */
.sm-safe {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.sm-safe__card {
  padding: 22px 18px 24px;
  background: rgba(11, 37, 80, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}
.sm-safe__card--accent {
  border-color: rgba(0, 119, 255, 0.45);
  background: linear-gradient(165deg, rgba(0, 119, 255, 0.2), rgba(11, 37, 80, 0.88));
  box-shadow: 0 0 28px rgba(0, 119, 255, 0.12);
}
.sm-safe__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(0, 119, 255, 0.18);
  border: 1px solid rgba(0, 119, 255, 0.35);
  color: #69b1ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.sm-safe__card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
}
.sm-safe__card p {
  margin: 0;
  color: #e8f2ff;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .sm-safe { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .sm-safe { grid-template-columns: 1fr; gap: 12px; }
  .sm-safe__card { text-align: left; padding: 18px 16px 20px; }
  .sm-safe__num { margin-left: 0; }
}
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 120, 106, 0.35);
  background: rgba(196, 120, 106, 0.07);
  color: var(--sand-mute);
  font-size: 0.92rem;
}

/* —— Voices —— */
.sm-voices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.sm-voice {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 12px;
  align-items: center;
  padding: 22px 20px;
  background: rgba(11, 37, 80, 0.8);
  border: 1px solid var(--line);
  position: relative;
}
.sm-voice__photo {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
  margin-right: 0;
}
.sm-voice__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050810;
}
.sm-voice__role {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9ec5ff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sm-voice__body {
  min-width: 0;
  padding-left: 4px;
}
.sm-voice p {
  color: #e8f2ff;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
  margin: 0;
}

/* —— Destinations —— */
.sm-dest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-dest__card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(11, 37, 80, 0.85);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.sm-dest__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  background-color: #050810;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  flex-shrink: 0;
}
.sm-dest__card::before { display: none; }
.sm-dest__card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 119, 255, 0.4);
}
.sm-dest__body {
  padding: 16px 16px 18px;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(0, 119, 255, 0.22);
  flex: 1;
}
.sm-dest__card h3 {
  position: static;
  z-index: auto;
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 8px;
  padding: 0;
  background: transparent;
  border-top: none;
  color: #fff;
  line-height: 1.3;
}
.sm-dest__card p {
  position: static;
  z-index: auto;
  font-size: 0.95rem;
  color: var(--sand-mute);
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 1.55;
}

/* —— FAQ —— */
.sm-faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.sm-faq details {
  border: 1px solid var(--line);
  background: rgba(11, 37, 80, 0.65);
  padding: 0 22px;
}
.sm-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 650;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sm-faq summary::-webkit-details-marker { display: none; }
.sm-faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--champagne);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.sm-faq details[open] summary::after { transform: rotate(45deg); }
.sm-faq details p {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0 0 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.sm-faq__answer {
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
}
.sm-faq__lead {
  margin: 0 0 12px;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
  padding: 0 !important;
  border: none !important;
}
.sm-faq__lead--good {
  margin-top: 22px;
  color: #9ec5ff !important;
}
.sm-faq__note {
  margin: 14px 0 0;
  padding: 12px 14px !important;
  border: 1px solid rgba(0, 119, 255, 0.22) !important;
  border-radius: 10px;
  background: rgba(0, 119, 255, 0.08);
  color: #d7e6ff !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}
.sm-faq__note a {
  color: #69b1ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sm-faq__list {
  margin: 0;
  padding: 0 0 0 1.15em;
  display: grid;
  gap: 10px;
}
.sm-faq__list li {
  color: #e8f2ff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  padding-left: 4px;
}
.sm-faq__list--bad {
  list-style: none;
  padding-left: 0;
}
.sm-faq__list--bad li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
}
.sm-faq__list--bad li::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.18);
  color: #fca5a5;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-faq__list--good {
  list-style: none;
  padding-left: 0;
  counter-reset: sm-faq-good;
}
.sm-faq__list--good li {
  position: relative;
  counter-increment: sm-faq-good;
  padding: 12px 14px 12px 48px;
  background: rgba(0, 119, 255, 0.1);
  border: 1px solid rgba(0, 119, 255, 0.28);
  border-radius: 10px;
}
.sm-faq__list--good li::before {
  content: counter(sm-faq-good);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(0, 119, 255, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* —— Contact / CTA —— */
.sm-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(0, 119, 255, 0.16), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #0d1522 100%);
  position: relative;
  overflow: hidden;
}
.sm-cta__quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.35;
  max-width: 16em;
  margin: 0 auto 28px;
}
.sm-cta__quote span { display: block; color: var(--champagne); }
.sm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.sm-form {
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: left;
}
.sm-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sand-mute);
}
.sm-form input,
.sm-form select,
.sm-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand);
  font: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.sm-form textarea { min-height: 110px; resize: vertical; }
.sm-form input:focus,
.sm-form select:focus,
.sm-form textarea:focus {
  border-color: rgba(0, 119, 255, 0.55);
}
.sm-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sm-form__hint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.sm-apply-anchor {
  scroll-margin-top: 88px;
}
.sm-apply__title {
  margin: 8px 0 18px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: #e8f1ff;
  text-align: center;
}
.sm-form__msg {
  min-height: 1.4em;
  margin: 4px 0 10px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
}
.sm-form__msg.is-ok {
  color: #6ee7a8;
}
.sm-form__msg.is-err {
  color: #ff8a8a;
}

/* —— Footer —— */
.sm-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: #050810;
}
.sm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.sm-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.6rem;
}
.sm-footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 119, 255, 0.35);
}
.sm-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.sm-footer h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}
.sm-footer__links {
  display: grid;
  gap: 8px;
}
.sm-footer__links a {
  color: var(--sand-mute);
  font-size: 0.92rem;
}
.sm-footer__links a:hover { color: var(--champagne); }
.sm-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.sm-footer__slogan {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--sand-mute);
  text-align: center;
  margin: 28px 0 8px;
  line-height: 1.5;
}

/* —— Reveal —— */
.sm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.sm-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Photo mosaic / media —— */
.sm-mosaic {
  column-count: 4;
  column-gap: 10px;
  margin: -28px auto 0;
  width: min(1180px, calc(100% - 40px));
  position: relative;
  z-index: 2;
}
.sm-mosaic figure {
  margin: 0 0 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050810;
  display: flex;
  flex-direction: column;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.sm-mosaic img {
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  transition: transform 0.7s var(--ease);
}
.sm-mosaic figure:hover img { transform: scale(1.03); }
.sm-mosaic figcaption {
  position: static;
  flex-shrink: 0;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(0, 119, 255, 0.22);
}

.sm-media {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.sm-media__visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.sm-media__visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center center;
  background: #050810;
}
.sm-media__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.sm-media__stack img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  border: 1px solid var(--line);
}

.sm-people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.sm-people figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  background: #050810;
}
.sm-people img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  transition: transform 0.55s var(--ease);
}
.sm-people figure:hover img { transform: scale(1.04); }
.sm-people figcaption {
  position: static;
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(0, 119, 255, 0.22);
}

.sm-beauty {
  margin: 12px 0 8px;
}
.sm-beauty__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sm-beauty__head h3 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 6px;
}
.sm-beauty__head p {
  color: var(--sand-mute);
  font-size: 0.98rem;
  max-width: 52ch;
}
.sm-beauty__grid {
  column-count: 2;
  column-gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}
.sm-beauty__grid figure {
  margin: 0 0 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 119, 255, 0.28);
  background: #050810;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.sm-beauty__grid img {
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #050810;
  transition: transform 0.55s var(--ease), filter 0.35s;
  filter: saturate(1.08) contrast(1.06) brightness(1.03);
}
.sm-beauty__grid figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.14) contrast(1.08) brightness(1.05);
}
.sm-beauty__grid figcaption {
  position: static;
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(0, 119, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sm-beauty__vip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: linear-gradient(135deg, #E8CF6A, var(--champagne-deep));
  padding: 4px 8px;
  border-radius: 999px;
}
.sm-beauty__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #7eb8a2;
  padding: 8px 12px;
  border: 1px solid rgba(126, 184, 162, 0.35);
  border-radius: 999px;
  background: rgba(126, 184, 162, 0.08);
}
.sm-beauty__online::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eb8a2;
  box-shadow: 0 0 0 4px rgba(126, 184, 162, 0.2);
  animation: sm-pulse 1.6s ease-in-out infinite;
}
@keyframes sm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.sm-convert {
  margin-top: 22px;
  padding: 22px 22px;
  border: 1px solid rgba(0, 119, 255, 0.4);
  background:
    linear-gradient(120deg, rgba(0, 119, 255, 0.16), rgba(7, 11, 20, 0.2) 45%, rgba(91, 143, 168, 0.1)),
    rgba(11, 37, 80, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sm-convert__copy h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.sm-convert__copy p {
  color: var(--sand-mute);
  font-size: 0.92rem;
}
.sm-convert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sm-sticky-dl {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px calc(12px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.sm-sticky-dl.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.sm-sticky-dl__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 14px;
  border-radius: 22px;
  background: #0077ff;
  box-shadow:
    0 4px 20px rgba(0, 102, 255, 0.32),
    0 10px 36px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}
.sm-sticky-dl__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.sm-sticky-dl__copy {
  flex: 1;
  min-width: 0;
  color: #fff;
  line-height: 1.3;
}
.sm-sticky-dl__copy strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  overflow-wrap: anywhere;
}
.sm-sticky-dl__copy span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.92;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sm-sticky-dl__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  max-width: 46vw;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0077ff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s;
}
.sm-sticky-dl__btn:active {
  transform: scale(0.97);
}

/* 一键回到顶部 */
.sm-back-top {
  position: fixed;
  right: 14px;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 119, 255, 0.45);
  background: linear-gradient(145deg, rgba(0, 119, 255, 0.96) 0%, rgba(0, 90, 220, 0.98) 100%);
  color: #fff;
  box-shadow:
    0 4px 18px rgba(0, 119, 255, 0.4),
    0 8px 28px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, bottom 0.22s ease, box-shadow 0.15s ease;
}
.sm-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.sm-back-top.is-sticky-hidden {
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}
.sm-back-top:active {
  transform: translateY(0) scale(0.94);
}
.sm-back-top svg {
  display: block;
  width: 22px;
  height: 22px;
}
@media (max-width: 760px) {
  .sm-back-top {
    right: 12px;
    width: 44px;
    height: 44px;
  }
  .sm-back-top svg {
    width: 20px;
    height: 20px;
  }
}

.sm-page {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.sm-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 36px;
}
.sm-strip img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center center;
  background: #050810;
  border: 1px solid var(--line);
  filter: saturate(0.92);
  transition: filter 0.3s, transform 0.4s var(--ease);
}
.sm-strip img:hover {
  filter: saturate(1.05);
  transform: translateY(-2px);
}

/* —— Legal pages —— */
.sm-legal {
  padding: calc(var(--header-h) + 48px) 0 80px;
}
.sm-legal h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.sm-legal__meta {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 0.92rem;
}
.sm-legal article {
  display: grid;
  gap: 18px;
  max-width: 780px;
  color: var(--sand-mute);
}
.sm-legal h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--sand);
  margin-top: 12px;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .sm-nav { display: none; }
  .sm-menu-btn { display: inline-flex; }
  .sm-header__actions {
    margin-left: auto;
    gap: 6px;
  }
  /* 中英切换留在顶栏外头；下载/入驻仍进汉堡 */
  .sm-header__actions .sm-header__download,
  .sm-header__actions .sm-btn--sm:not(.sm-btn--primary) { display: none; }
  .sm-header__actions .sm-lang--header {
    display: inline-flex;
    flex-shrink: 0;
  }
  .sm-header__actions .sm-lang--header button {
    padding: 6px 10px;
    font-size: 12px;
  }
  .sm-steps { grid-template-columns: 1fr 1fr; }
  .sm-dest { grid-template-columns: 1fr 1fr; }
  .sm-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .sm-adv-hero { grid-template-columns: 1fr; }
  .sm-adv-hero__card { min-height: 240px; }
  .sm-adv-block__item,
  .sm-adv-block__item:nth-child(even) { grid-template-columns: 1fr; }
  .sm-adv-block__item:nth-child(even) .sm-adv-block__visual { order: 0; }
  .sm-adv-block__visual {
    aspect-ratio: auto;
    min-height: 0;
  }
  .sm-adv-block__visual > img {
    min-height: 200px;
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .sm-adv-block__thumbs img { height: 64px; }
  .sm-lux-band {
    column-count: 2;
    column-gap: 10px;
  }
  .sm-lux-band figure:nth-child(n+8) { display: flex; }
}
@media (max-width: 980px) {
  .sm-hero__pillars,
  .sm-why__grid { grid-template-columns: 1fr; }
  .sm-origin { grid-template-columns: 1fr; }
  .sm-mosaic {
    column-count: 2;
    column-gap: 10px;
    width: min(1180px, calc(100% - 52px));
  }
  .sm-media { grid-template-columns: 1fr; }
  .sm-service { grid-template-columns: 1fr; }
  .sm-service__photo {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .sm-service__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }
  .sm-people { grid-template-columns: 1fr 1fr; }
  .sm-beauty__grid {
    column-count: 2;
    column-gap: 12px;
    max-width: none;
  }
  .sm-strip { grid-template-columns: repeat(3, 1fr); }
  .sm-voice {
    grid-template-columns: 120px minmax(0, 1fr);
    column-gap: 18px;
    padding: 20px 16px 20px 18px;
  }
  .sm-voice__photo {
    width: 120px;
    height: 120px;
  }
  .sm-voice__body { padding-left: 4px; }
  .sm-sticky-dl__copy strong { font-size: 14px; }
  .sm-sticky-dl__copy span { font-size: 13px; }
  .sm-sticky-dl__btn { font-size: 14px; min-width: 78px; padding: 9px 14px; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .sm-wrap { width: min(1180px, calc(100% - 52px)); }
  .sm-section { padding: 72px 0; }
  .sm-step { padding: 24px 8px 24px 8px; }
  .sm-section__head { padding-inline: 4px; }
  /* 手机端信任条：固定 2×2 两行 */
  .sm-trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    justify-items: center;
    align-items: center;
    padding: 14px 0;
    text-align: center;
  }
  .sm-trust__item {
    width: 100%;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
    justify-content: center;
    text-align: center;
  }
  .sm-trust__item span {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
  }
  .sm-hero { padding-bottom: 48px; align-items: flex-end; min-height: auto; }
  .sm-hero__pillars,
  .sm-why__grid,
  .sm-origin,
  .sm-scan--grid { grid-template-columns: 1fr; }
  .sm-origin__visual { position: static; }
  .sm-origin__visual > img { height: min(320px, 72vw); }
  .sm-origin__stack img { height: min(160px, 36vw); }
  .sm-brand {
    flex: 1;
    min-width: 0;
    margin-right: 8px;
  }
  .sm-brand__name {
    font-size: 18px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sm-brand__tag {
    display: block;
    max-width: none;
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sm-trust__item {
    font-size: 15px !important;
    line-height: 1.4;
  }
  .sm-adv__item { grid-template-columns: 1fr; gap: 12px; }
  .sm-split,
  .sm-steps,
  .sm-dest,
  .sm-form__row,
  .sm-footer__grid { grid-template-columns: 1fr; }
  .sm-cta { padding: 72px 0; }
  .sm-mosaic { width: min(1180px, calc(100% - 52px)); margin-top: -16px; }
}


/* —— EasyGlobal eco polish —— */
.sm-mosaic figure,
.sm-beauty__grid figure,
.sm-adv-hero__card,
.sm-adv-block__item,
.sm-service,
.sm-voice,
.sm-dest__card,
.sm-panel,
.sm-step,
.sm-trait,
.sm-faq details,
.sm-convert,
.sm-form,
.sm-scan li {
  border-radius: 14px;
  overflow: hidden;
}
.sm-beauty__vip,
.sm-adv-hero__tag,
.sm-adv-block__tag,
.sm-scan-pill {
  border-radius: 999px;
}
.sm-quote {
  border-radius: 0 14px 14px 0;
}
.sm-footer__logo,
.sm-origin__visual > img,
.sm-origin__stack img,
.sm-service__photo img {
  border-radius: 14px;
}
.sm-section--alt {
  background:
    radial-gradient(700px 320px at 90% 0%, var(--horizon-soft), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}
.sm-section--deep {
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(0, 119, 255, 0.1), transparent 55%),
    var(--ink-2);
}

/* —— Type boost: larger / bolder / higher contrast —— */
.sm-brand__name { font-size: 22px !important; font-weight: 900 !important; color: #fff !important; }
.sm-brand__tag { font-size: 16px !important; font-weight: 800 !important; color: #e8f2ff !important; opacity: 1 !important; }
.sm-nav a { font-size: 15px !important; font-weight: 800 !important; color: #e2e8f0 !important; }
.sm-nav a.is-active,
.sm-nav a:hover { color: #fff !important; }
.sm-lang button { font-size: 14px !important; font-weight: 800 !important; }
.sm-btn { font-size: 16px !important; font-weight: 900 !important; }
.sm-btn--lg { font-size: 18px !important; min-height: 54px !important; }
.sm-btn--sm { font-size: 15px !important; font-weight: 800 !important; }

.sm-trust__item { font-size: 16px !important; font-weight: 800 !important; color: #e8f2ff !important; }
.sm-hero__eyebrow { font-size: 16px !important; font-weight: 800 !important; color: #e8f3ff !important; }
.sm-hero__brand { font-size: clamp(34px, 8.2vw, 56px) !important; font-weight: 900 !important; color: #fff !important; }
.sm-hero__brand em,
.sm-hero__brand .sm-brand-en { color: #b8deff !important; }
.sm-hero__slogan { font-size: clamp(20px, 3.4vw, 28px) !important; font-weight: 800 !important; color: #f0f7ff !important; }
.sm-hero__card strong { font-size: 1.18rem !important; font-weight: 900 !important; color: #fff !important; }
.sm-hero__card span { font-size: 1.08rem !important; font-weight: 700 !important; color: #eef6ff !important; }
.sm-hero__trust,
.sm-hero-below__trust { font-size: 16px !important; font-weight: 800 !important; color: #f8fafc !important; }
.sm-hero__cta .sm-btn--ghost { color: #fff !important; border-color: rgba(255,255,255,0.78) !important; }

.sm-kicker { font-size: 16px !important; font-weight: 800 !important; color: #9ec5ff !important; }
.sm-section__head h2 { font-size: clamp(28px, 4.4vw, 42px) !important; font-weight: 900 !important; color: #fff !important; }
.sm-section__head p { font-size: 1.22rem !important; font-weight: 700 !important; color: #e2e8f0 !important; line-height: 1.65 !important; }

.sm-why__num,
.sm-story__n,
.sm-adv-hero__num,
.sm-adv-block__num,
.sm-service__idx { color: #69b1ff !important; font-weight: 900 !important; }
.sm-why__card h3,
.sm-story__card h3 { font-size: 1.45rem !important; font-weight: 900 !important; color: #fff !important; }
.sm-why__card li,
.sm-story__card li { font-size: 1.12rem !important; font-weight: 700 !important; color: #e8f2ff !important; line-height: 1.55 !important; }
.sm-quote { font-size: clamp(1.25rem, 2.2vw, 1.55rem) !important; font-weight: 800 !important; color: #fff !important; }

.sm-scan li,
.sm-adv-block__brief,
.sm-service__desc,
.sm-prose,
.sm-prose p { font-size: 1.14rem !important; font-weight: 700 !important; color: #e8f2ff !important; line-height: 1.65 !important; }
.sm-adv-block__hook { font-size: 1.14rem !important; font-weight: 800 !important; color: #b8d4ff !important; }
.sm-adv-block__body h3,
.sm-adv-hero__card h3,
.sm-service h3 { font-size: clamp(1.45rem, 2.4vw, 1.95rem) !important; font-weight: 900 !important; color: #fff !important; }
.sm-adv-hero__card p { font-size: 1.08rem !important; font-weight: 700 !important; color: #e8f2ff !important; }
.sm-adv-hero__tag,
.sm-adv-block__tag,
.sm-beauty__vip { font-size: 14px !important; font-weight: 900 !important; }

.sm-service__fit { font-size: 15px !important; font-weight: 800 !important; color: #9ec5ff !important; }
.sm-chips span { font-size: 15px !important; font-weight: 800 !important; color: #e8f2ff !important; border-color: rgba(255,255,255,0.22) !important; }
.sm-chips--dense span { font-size: 14px !important; padding: 8px 12px !important; }

.sm-beauty__head h3 { font-size: clamp(1.5rem, 3vw, 2rem) !important; font-weight: 900 !important; color: #fff !important; }
.sm-beauty__head p,
.sm-beauty__online { font-size: 1.08rem !important; font-weight: 700 !important; color: #e8f2ff !important; }
.sm-beauty__grid figcaption,
.sm-beauty__grid figcaption span,
.sm-mosaic figcaption,
.sm-lux-band figcaption,
.sm-people figcaption {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: none !important;
}

.sm-convert__copy h4 { font-size: 1.5rem !important; font-weight: 900 !important; color: #fff !important; }
.sm-convert__copy p { font-size: 1.12rem !important; font-weight: 700 !important; color: #e8f2ff !important; }

.sm-trait h4,
.sm-step h3,
.sm-panel h3,
.sm-voice__role,
.sm-dest__card h3,
.sm-faq summary,
.sm-footer__brand,
.sm-footer h4 { font-weight: 900 !important; color: #fff !important; }
.sm-voice__role { font-size: 15px !important; }
.sm-trait p,
.sm-step p,
.sm-panel li,
.sm-panel span,
.sm-voice p,
.sm-dest__card p,
.sm-faq p,
.sm-footer p,
.sm-note,
.sm-form label,
.sm-form__hint,
.sm-scan-pill { font-size: 1.12rem !important; font-weight: 700 !important; color: #e8f2ff !important; }
.sm-faq summary { font-size: 1.14rem !important; }
.sm-dest__card h3 { font-size: 1.5rem !important; }
.sm-cta__quote { font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important; font-weight: 900 !important; color: #fff !important; }
.sm-form input,
.sm-form textarea,
.sm-form select { font-size: 17px !important; font-weight: 600 !important; color: #fff !important; }
.sm-apply__title { font-size: clamp(1.35rem, 2.6vw, 1.75rem) !important; }
.sm-form__msg { font-size: 15px !important; }

.sm-drawer nav a { font-size: 18px !important; font-weight: 800 !important; color: #e8f2ff !important; }
.sm-sticky-dl__copy strong { font-size: 16px !important; font-weight: 900 !important; color: #fff !important; }
.sm-sticky-dl__copy span { font-size: 14px !important; font-weight: 700 !important; color: #fff !important; }
.sm-sticky-dl__btn { font-size: 15px !important; font-weight: 900 !important; }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .sm-nav a { font-size: 14px !important; }
  .sm-brand__tag { font-size: 15px !important; display: block !important; font-weight: 800 !important; }
  .sm-brand__name { font-size: 19px !important; }
  .sm-trust__item { font-size: 15px !important; }
  .sm-kicker { font-size: 15px !important; }
  .sm-section__head p { font-size: 1.14rem !important; }
  .sm-scan li,
  .sm-prose,
  .sm-prose p,
  .sm-service__desc,
  .sm-voice p,
  .sm-faq p,
  .sm-step p,
  .sm-trait p { font-size: 1.1rem !important; }
  .sm-beauty__grid figcaption,
  .sm-mosaic figcaption,
  .sm-lux-band figcaption,
  .sm-people figcaption { font-size: 15px !important; }
  .sm-chips span { font-size: 14px !important; }
  .sm-service__photo { aspect-ratio: 16 / 9; }
  .sm-lux-band { column-count: 2; }
  .sm-mosaic { column-count: 2; }
  .sm-dest__card { min-height: 0; }
  .sm-dest__media { min-height: 200px; aspect-ratio: 16 / 11; }
  .sm-strip img { height: 130px; }
  .sm-voice {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 16px;
    padding: 18px 14px 18px 16px;
  }
  .sm-voice__photo {
    width: 112px;
    height: 112px;
  }
  .sm-voice__body { padding-left: 2px; }
}

/* —— Sitewide: images fill their frames (no side letterbox) —— */
.sm-people img,
.sm-origin__visual > img,
.sm-origin__stack img,
.sm-service__photo img,
.sm-adv-hero__card img,
.sm-adv-block__visual > img,
.sm-adv-block__thumbs img,
.sm-media__visual img,
.sm-media__stack img,
.sm-strip img,
.sm-voice__photo img {
  width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.sm-people img,
.sm-service__photo img,
.sm-voice__photo img {
  height: 100% !important;
  max-height: none !important;
}
.sm-adv-block__visual > img {
  height: auto !important;
  max-height: none !important;
}
/* 场景马赛克 / 玩伴墙：瀑布流铺满，避免黑空洞 */
.sm-mosaic img,
.sm-lux-band img,
.sm-beauty__grid img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  flex: 0 0 auto !important;
}
.sm-adv-hero__card img {
  aspect-ratio: 16 / 10;
}

/* —— Recruit standalone page —— */
.sm-page--recruit .sm-rp-hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
  text-align: center;
}
.sm-rp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.55) 0%, rgba(7, 11, 20, 0.72) 45%, rgba(7, 11, 20, 0.96) 100%),
    url("../assets/scenes/duo-n14.jpg?v=rec2") center center / cover no-repeat,
    linear-gradient(180deg, #0a1628 0%, #070b14 100%);
  pointer-events: none;
}
.sm-rp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.sm-rp-hero__title {
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
  line-height: 1.15;
}
.sm-rp-hero__title em {
  font-style: normal;
  color: #69b1ff;
}
.sm-rp-hero__slogan {
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 800;
  color: #b8d4ff;
  margin: 0 0 16px;
  line-height: 1.4;
}
.sm-rp-hero__lead {
  color: #e2e8f0;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 38em;
}
.sm-rp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
  text-align: center;
}
.sm-rp-stat {
  padding: 18px 14px;
  background: rgba(11, 37, 80, 0.72);
  border: 1px solid rgba(0, 119, 255, 0.28);
  border-radius: 14px;
}
.sm-rp-stat strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.sm-rp-stat span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c5d7f0;
  line-height: 1.45;
}
.sm-rp-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sm-rp-perk {
  padding: 28px 24px 30px;
  background: rgba(11, 37, 80, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.sm-rp-perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(0, 119, 255, 0.18);
  border: 1px solid rgba(0, 119, 255, 0.35);
  color: #69b1ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.sm-rp-perk h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.35;
}
.sm-rp-perk p {
  margin: 0;
  color: #e8f2ff;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}
.sm-rp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-rp-gallery--dense {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sm-rp-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(180px, 28vw);
  gap: 12px;
  margin-bottom: 22px;
}
.sm-rp-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050810;
  min-height: 0;
}
.sm-rp-mosaic__lg {
  grid-row: span 2;
}
.sm-rp-mosaic__wide {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 220px;
}
.sm-rp-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.sm-rp-mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(5, 8, 16, 0.92));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}
.sm-rp-money-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sm-rp-money-strip > div {
  text-align: center;
  padding: 18px 14px;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(245, 197, 66, 0.16), rgba(11, 37, 80, 0.85));
  border: 1px solid rgba(245, 197, 66, 0.35);
}
.sm-rp-money-strip strong {
  display: block;
  color: #ffe08a;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.sm-rp-money-strip span {
  display: block;
  color: #e8f2ff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}
.sm-rp-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050810;
}
.sm-rp-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.sm-rp-gallery figcaption {
  padding: 12px 14px 14px;
  font-size: 14px;
  font-weight: 800;
  color: #e8f2ff;
  text-align: center;
  background: rgba(7, 14, 28, 0.92);
}
.sm-rp-who {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 14px;
}
.sm-rp-who li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: rgba(11, 37, 80, 0.72);
  border: 1px solid rgba(0, 119, 255, 0.22);
  border-radius: 12px;
  color: #e8f2ff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.sm-rp-who li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--mas-blue);
  box-shadow: 0 0 10px var(--mas-blue-glow);
}
.sm-rp-apply {
  max-width: 760px;
  margin: 0 auto;
}
.sm-rp-apply .sm-form {
  margin-top: 8px;
}
.sm-form__full {
  display: block;
  margin-bottom: 14px;
}
.sm-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 980px) {
  .sm-rp-hero__stats,
  .sm-rp-perks {
    grid-template-columns: 1fr 1fr;
  }
  .sm-rp-gallery,
  .sm-rp-gallery--dense {
    grid-template-columns: 1fr 1fr;
  }
  .sm-rp-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(160px, 36vw);
  }
  .sm-rp-mosaic__lg {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
}
@media (max-width: 760px) {
  .sm-rp-hero {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 48px;
  }
  .sm-rp-hero__stats,
  .sm-rp-perks,
  .sm-rp-money-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sm-rp-perk {
    padding: 22px 18px 24px;
  }
  .sm-rp-gallery,
  .sm-rp-gallery--dense {
    gap: 12px;
  }
  .sm-rp-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, 52vw);
  }
  .sm-rp-mosaic__lg,
  .sm-rp-mosaic__wide {
    grid-column: auto;
  }
  .sm-rp-who li {
    padding-left: 42px;
    font-size: 1rem;
  }
}


/* —— Founder letter + nature —— */
.sm-founder {
  padding: 0 0 72px;
  position: relative;
}
.sm-founder__banner {
  position: relative;
  min-height: clamp(220px, 38vw, 360px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.sm-founder__banner img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 38vw, 360px);
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sm-founder__banner-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.35) 0%, rgba(7, 11, 20, 0.72) 55%, rgba(7, 11, 20, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 11, 20, 0.55) 0%, transparent 45%);
  pointer-events: none;
}
.sm-founder__banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 0 36px;
  z-index: 1;
}
.sm-founder__banner-copy .sm-kicker {
  color: #7ddea2;
}
.sm-founder__banner-copy h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.sm-founder__banner-copy p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c8e6d4;
  letter-spacing: 0.08em;
}
.sm-founder__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: 28px 32px;
  align-items: start;
  margin-top: 28px;
}
.sm-founder__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  order: 2;
}
.sm-founder__gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #050810;
  border-radius: 12px;
}
.sm-founder__gallery figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.sm-founder__gallery figure:not(:first-child) {
  aspect-ratio: 1 / 1;
}
.sm-founder__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sm-founder__letter {
  order: 1;
  padding: 28px 28px 32px;
  background: rgba(12, 28, 54, 0.94);
  border: 1px solid rgba(145, 200, 255, 0.28);
  border-radius: 18px;
  max-width: 48rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.sm-founder__letter h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.8vw, 2rem);
  font-weight: 900;
  color: #e8f4ff;
  letter-spacing: 0.04em;
}
.sm-founder__letter h4 {
  margin: 1.7em 0 0.85em;
  padding-top: 0.45em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1.12rem, 2.6vw, 1.28rem);
  font-weight: 900;
  color: #8be4ad;
  letter-spacing: 0.06em;
}
.sm-founder__letter h4:first-of-type {
  margin-top: 1.15em;
  border-top: 0;
  padding-top: 0;
}
.sm-founder__letter p {
  margin: 0 0 1.25em;
  color: #f4f8ff !important;
  font-size: clamp(1.12rem, 2.4vw, 1.28rem) !important;
  font-weight: 600 !important;
  line-height: 2 !important;
  letter-spacing: 0.02em;
}
.sm-founder__letter p:last-child {
  margin-bottom: 0;
}
.sm-founder__highlight {
  margin: 1.25em 0 1.45em !important;
  padding: 20px 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 119, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.22), rgba(93, 204, 138, 0.1));
  color: #fff !important;
  font-size: clamp(1.14rem, 2.5vw, 1.32rem) !important;
  font-weight: 700 !important;
  line-height: 1.95 !important;
}
.sm-founder__highlight strong {
  color: #fff !important;
  font-weight: 900 !important;
}
.sm-founder__letter ul {
  margin: 0.35em 0 1.45em;
  padding: 16px 16px 16px 1.5em;
  list-style: disc;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f4f8ff !important;
  font-size: clamp(1.08rem, 2.3vw, 1.22rem) !important;
  font-weight: 650 !important;
  line-height: 1.9 !important;
}
.sm-founder__letter li {
  margin-bottom: 0.7em;
}
.sm-founder__letter li:last-child {
  margin-bottom: 0;
}
.sm-founder__closer {
  margin-top: 1.65em !important;
  margin-bottom: 0 !important;
  padding: 22px 20px 20px;
  border-left: 4px solid #5dcc8a;
  background: rgba(93, 204, 138, 0.12);
  border-radius: 0 14px 14px 0;
  color: #eafff3 !important;
  font-weight: 900 !important;
  line-height: 1.85 !important;
  font-size: clamp(1.18rem, 2.8vw, 1.38rem) !important;
}
.sm-founder__closer span {
  display: block;
}
.sm-founder__closer span + span {
  margin-top: 0.4em;
}
@media (max-width: 980px) {
  .sm-founder__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sm-founder__letter {
    order: 1;
    max-width: none;
    padding: 24px 18px 28px;
  }
  .sm-founder__gallery {
    order: 2;
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .sm-founder__gallery figure:nth-child(n+5) {
    display: none;
  }
  .sm-founder__gallery figure:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .sm-founder__gallery figure:not(:first-child) {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 760px) {
  .sm-founder {
    padding-bottom: 56px;
  }
  .sm-founder__banner-copy {
    padding: 20px 0 24px;
  }
  .sm-founder__banner-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }
  .sm-founder__gallery {
    grid-template-columns: 1fr 1fr;
  }
  .sm-founder__letter h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
  }
  .sm-founder__letter h4 {
    font-size: 1.15rem;
    margin: 1.55em 0 0.75em;
  }
  .sm-founder__letter p,
  .sm-founder__letter ul {
    font-size: 1.18rem !important;
    line-height: 2.05 !important;
  }
  .sm-founder__highlight {
    padding: 18px 16px 16px;
    font-size: 1.2rem !important;
    line-height: 2 !important;
  }
  .sm-founder__closer {
    font-size: 1.22rem !important;
  }
  .sm-founder__letter p {
    margin-bottom: 1.2em;
  }
}

/* —— Competitive pricing —— */
.sm-price {
  padding-top: 56px;
  padding-bottom: 56px;
}
.sm-price--embed {
  margin: 22px 0 8px;
  padding: 0;
}
.sm-price__badge {
  display: table;
  margin: 0 auto 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(93, 204, 138, 0.16);
  border: 1px solid rgba(93, 204, 138, 0.45);
  color: #7ddea2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.sm-price__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sm-price__card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 16px;
  background: rgba(11, 37, 80, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.sm-price__card--hot {
  border-color: rgba(0, 119, 255, 0.55);
  background: linear-gradient(160deg, rgba(0, 119, 255, 0.2), rgba(11, 37, 80, 0.9));
  box-shadow: 0 12px 36px rgba(0, 119, 255, 0.18);
  transform: translateY(-4px);
}
.sm-price__hot {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0077ff;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.sm-price__tag {
  display: block;
  margin-bottom: 10px;
  color: #9ec5ff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.sm-price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #fff;
  line-height: 1;
}
.sm-price__amount small {
  font-size: 1rem;
  font-weight: 800;
  color: #7ddea2;
}
.sm-price__amount strong {
  font-size: clamp(2.2rem, 5vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sm-price__unit {
  margin: 12px 0 8px !important;
  color: #7ddea2 !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}
.sm-price__desc {
  margin: 0 !important;
  color: #c8d7ea !important;
  font-size: 0.92rem !important;
  font-weight: 550 !important;
  line-height: 1.55 !important;
}
.sm-price__note {
  margin: 20px auto 0;
  max-width: 46rem;
  text-align: center;
  color: #9fb4cc !important;
  font-size: 0.92rem !important;
  font-weight: 550 !important;
  line-height: 1.7 !important;
}
@media (max-width: 860px) {
  .sm-price__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sm-price__card--hot {
    transform: none;
  }
}
