/* ==========================================================================
   DiipX · styles.css — 目录 / Table of contents
   --------------------------------------------------------------------------
   用 Ctrl/Cmd-F 搜索分节编号（如 "5. 页头与导航"）即可跳转到对应区块。
   仅为分节注释，未改动任何样式规则。
   --------------------------------------------------------------------------
    1. 设计令牌 Design tokens
    2. 基础元素与重置 Base elements & reset
    3. 无障碍工具类 Accessibility utilities
    4. 地区提示条 Region notice bar
    5. 页头与导航 Header & navigation
    6. 大型导航面板 Mega navigation
    7. 搜索浮层 Search overlay
    8. 下拉与语言控件 Select & language controls
    9. 语言面板 Language panel
   10. 首页 Home page
   11. 通用内容区块 Shared content sections
   12. 产品列表与卡片 Products listing & cards
   13. 产品详情页 Product detail page
   14. 购买渠道 Buy channels
   15. 商城与购买流程 Store & buy flow
   16. 账户卡片与登录 Account cards & sign-in
   17. 页脚 Footer
   18. 信息与法务页 Info & legal pages
   19. 购买抽屉与弹窗 Buy drawer & modals
   20. 验证与表单字段 Verification & form fields
   21. 人机验证弹窗 Captcha modal
   22. 账户中心页 Account dashboard page
   23. 支持中心 Support center
   ========================================================================== */

/* ==========================================================================
   1. 设计令牌 Design tokens
   ========================================================================== */
:root {
  color-scheme: light;
  --ink: #0b0d10;
  --ink-soft: #2d3440;
  --muted: #68727f;
  --line: #dfe4ea;
  --paper: #f5f6f8;
  --panel: #ffffff;
  --night: #06080c;
  --night-soft: #121821;
  --red: #e1261c;
  --blue: #2563eb;
  --cyan: #34d5ff;
  --green: #18a064;
  --amber: #b98526;
  /* Action / CTA color — single source of truth (keeps existing blue) */
  --cta: #0071e3;
  --cta-hover: #147ce5;
  --cta-ink: #ffffff;
  --cta-grad-end: #6fd3ff;
  --shadow: 0 20px 60px rgba(8, 12, 18, 0.14);
  --max: 1180px;
  --font-sans:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    sans-serif;
  --font-display:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

/* ==========================================================================
   2. 基础元素与重置 Base elements & reset
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

body.drawer-open,
body.modal-open,
body.captcha-modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

button,
select,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   3. 无障碍工具类 Accessibility utilities
   ========================================================================== */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-90px);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   4. 地区提示条 Region notice bar
   ========================================================================== */
.region-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  color: var(--ink);
  background: rgba(248, 249, 251, 0.98);
  border-bottom: 1px solid rgba(190, 199, 210, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.region-notice-inner {
  width: min(100% - 36px, var(--max));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.region-notice-message {
  flex: 1 1 auto;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.region-notice-target,
.region-notice-switch,
.region-notice-close {
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  white-space: nowrap;
}

.region-notice-target {
  max-width: min(320px, 34vw);
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 28px;
  border: 1px solid rgba(190, 199, 210, 0.88);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.region-notice-target:hover,
.region-notice-target:focus-visible {
  border-color: rgba(11, 13, 16, 0.36);
  outline: none;
}

.region-notice-switch {
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.region-notice-switch:hover,
.region-notice-switch:focus-visible {
  background: #1a202b;
  outline: none;
}

.region-notice-close {
  position: relative;
  width: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.region-notice-close::before,
.region-notice-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.region-notice-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.region-notice-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.region-notice-close:hover,
.region-notice-close:focus-visible {
  color: var(--red);
  outline: none;
}

body.has-region-notice {
  padding-top: var(--region-notice-height, 0px);
}

body.has-region-notice .site-header {
  top: var(--region-notice-height, 0px);
}

body.has-region-notice .search-scrim,
body.has-region-notice .language-backdrop,
body.has-region-notice.page-home .search-scrim,
body.has-region-notice.page-home .language-backdrop {
  inset: calc(var(--header-height, 68px) + var(--region-notice-height, 0px)) 0 0;
}

/* ==========================================================================
   5. 页头与导航 Header & navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 68px;
  --header-height: 68px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 247, 249, 0.86);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  backdrop-filter: blur(20px);
}

.page-product-detail .site-header:not(.is-scrolled) {
  background: rgba(6, 8, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(100% - 36px, var(--max));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 36px;
  position: relative;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 118px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 160ms ease;
}

.brand-logo-standard {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-footer .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-standard,
.site-footer .brand-logo-standard {
  opacity: 1;
}

.site-footer .brand {
  width: 128px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
}

.site-header.is-scrolled .nav-links {
  background: transparent;
  color: var(--ink-soft);
}

.nav-links a {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: transparent;
  outline: none;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible,
.site-header.is-scrolled .nav-links a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
}

.page-store .site-header,
.page-search .site-header,
.page-account .site-header,
.page-info .site-header {
  background: rgba(246, 247, 249, 0.9);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  backdrop-filter: blur(20px);
}

.page-store .site-header .brand-logo-light,
.page-search .site-header .brand-logo-light,
.page-account .site-header .brand-logo-light,
.page-info .site-header .brand-logo-light {
  opacity: 0;
}

.page-store .site-header .brand-logo-standard,
.page-search .site-header .brand-logo-standard,
.page-account .site-header .brand-logo-standard,
.page-info .site-header .brand-logo-standard {
  opacity: 1;
}

.page-store .site-header .nav-links,
.page-search .site-header .nav-links,
.page-account .site-header .nav-links,
.page-info .site-header .nav-links {
  color: var(--ink-soft);
  background: transparent;
}

.page-store .site-header .nav-links a:hover,
.page-store .site-header .nav-links a:focus-visible,
.page-store .site-header .nav-links a[aria-current="page"],
.page-search .site-header .nav-links a:hover,
.page-search .site-header .nav-links a:focus-visible,
.page-search .site-header .nav-links a[aria-current="page"],
.page-account .site-header .nav-links a:hover,
.page-account .site-header .nav-links a:focus-visible,
.page-account .site-header .nav-links a[aria-current="page"],
.page-info .site-header .nav-links a:hover,
.page-info .site-header .nav-links a:focus-visible,
.page-info .site-header .nav-links a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
}

.page-store .site-header .select-wrap select,
.page-store .site-header .ghost-button,
.page-store .site-header .nav-icon-link,
.page-store .site-header .language-trigger,
.page-search .site-header .select-wrap select,
.page-search .site-header .ghost-button,
.page-search .site-header .nav-icon-link,
.page-search .site-header .language-trigger,
.page-account .site-header .select-wrap select,
.page-account .site-header .ghost-button,
.page-account .site-header .nav-icon-link,
.page-account .site-header .language-trigger,
.page-info .site-header .select-wrap select,
.page-info .site-header .ghost-button,
.page-info .site-header .nav-icon-link,
.page-info .site-header .language-trigger {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.page-store .site-header .nav-actions .select-wrap,
.page-search .site-header .nav-actions .select-wrap,
.page-account .site-header .nav-actions .select-wrap,
.page-info .site-header .nav-actions .select-wrap {
  color: var(--ink);
}

.site-header.has-mega-open {
  background: rgba(246, 247, 249, 0.92);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  backdrop-filter: blur(20px);
}

.site-header.has-search-open {
  background: rgba(246, 247, 249, 0.96);
  border-bottom: 1px solid rgba(210, 214, 220, 0.54);
  backdrop-filter: blur(20px);
}

.page-product-detail .site-header.has-mega-open {
  background: rgba(246, 247, 249, 0.92);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
}

.site-header.has-mega-open .brand-logo-light,
.site-header.has-search-open .brand-logo-light {
  opacity: 0;
}

.site-header.has-mega-open .brand-logo-standard,
.site-header.has-search-open .brand-logo-standard {
  opacity: 1;
}

.site-header.has-mega-open .nav-links,
.site-header.has-search-open .nav-links {
  color: var(--ink-soft);
  background: transparent;
}

.site-header.has-mega-open .nav-links a:hover,
.site-header.has-mega-open .nav-links a:focus-visible,
.site-header.has-mega-open .nav-links a[aria-current="page"],
.site-header.has-mega-open .nav-links a.is-mega-active,
.site-header.has-search-open .nav-links a:hover,
.site-header.has-search-open .nav-links a:focus-visible,
.site-header.has-search-open .nav-links a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
}

.site-header.has-mega-open .select-wrap select,
.site-header.has-mega-open .ghost-button,
.site-header.has-mega-open .nav-icon-link,
.site-header.has-mega-open .language-trigger,
.site-header.has-search-open .select-wrap select,
.site-header.has-search-open .ghost-button,
.site-header.has-search-open .nav-icon-link,
.site-header.has-search-open .language-trigger {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.site-header.has-mega-open .nav-actions .select-wrap,
.site-header.has-search-open .nav-actions .select-wrap {
  color: var(--ink);
}

/* ==========================================================================
   6. 大型导航面板 Mega navigation
   ========================================================================== */
.nav-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  color: var(--ink);
  background: rgba(251, 251, 253, 0.98);
  border-bottom: 1px solid rgba(210, 214, 220, 0.54);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(26px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-inner {
  width: min(100% - 72px, 1260px);
  margin: 0 auto;
  padding: 54px 0 76px;
}

.page-home .nav-mega-inner {
  width: min(100% - 72px, 1260px);
}

.nav-mega-menu {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(180px, 230px) minmax(210px, 300px);
  justify-content: start;
  gap: 76px;
}

.nav-mega-primary,
.nav-mega-secondary {
  display: grid;
  align-content: start;
  justify-items: start;
}

.nav-mega-primary {
  gap: 12px;
}

.nav-mega-secondary {
  gap: 11px;
  padding-top: 4px;
}

.nav-mega-primary p,
.nav-mega-secondary p {
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-mega-primary a {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
}

.nav-mega-secondary a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.32;
}

.nav-mega-copy span {
  max-width: 310px;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.62;
}

/* ==========================================================================
   7. 搜索浮层 Search overlay
   ========================================================================== */
.search-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 2;
  color: var(--ink);
  background: rgba(245, 245, 247, 0.98);
  border-bottom: 1px solid rgba(210, 214, 220, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.search-overlay-inner {
  width: min(100% - 72px, 760px);
  margin: 0 auto;
  padding: 50px 0 66px;
}

.search-overlay-form {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  color: #6e6e73;
}

.search-overlay-glyph {
  width: 19px;
  height: 19px;
}

.search-overlay-input {
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: 0;
  padding: 0;
  color: #1d1d1f;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.14;
}

.search-overlay-input::placeholder {
  color: #6e6e73;
  opacity: 1;
}

.search-overlay-input::-webkit-search-cancel-button,
.search-overlay-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-overlay-input::-ms-clear,
.search-input::-ms-clear {
  display: none;
}

.search-overlay-clear {
  justify-self: end;
}

.search-overlay-body {
  margin-top: 34px;
  padding-left: 38px;
}

.search-overlay-results {
  max-height: min(52vh, 430px);
  overflow: auto;
  padding-right: 4px;
}

.search-overlay-results .search-result {
  min-height: 74px;
  grid-template-columns: 56px minmax(0, 1fr);
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: transparent;
}

.search-overlay-results .search-result:hover,
.search-overlay-results .search-result:focus-visible {
  background: rgba(12, 16, 22, 0.05);
  box-shadow: none;
  transform: none;
}

.search-overlay-results .search-result img {
  width: 56px;
  height: 56px;
}

.search-scrim {
  position: fixed;
  inset: var(--header-height, 68px) 0 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.search-scrim.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.language-backdrop {
  position: fixed;
  inset: var(--header-height, 68px) 0 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.language-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mega-primary a:hover,
.nav-mega-primary a:focus-visible,
.nav-mega-secondary a:hover,
.nav-mega-secondary a:focus-visible {
  color: var(--accent);
  outline: none;
}

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

.mobile-language {
  display: none;
}

.mobile-nav-search {
  display: none;
}

.nav-links .mobile-nav-search {
  display: none;
}

.nav-links .mobile-account-link {
  display: none;
}

.nav-icon-link,
.language-trigger {
  width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  opacity: 0.82;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.nav-icon-link:hover,
.nav-icon-link:focus-visible,
.language-trigger:hover,
.language-trigger:focus-visible {
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .nav-icon-link,
.site-header.is-scrolled .language-trigger {
  color: var(--ink);
}

.search-glyph {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  color: currentColor;
}

.search-glyph::before,
.search-glyph::after {
  content: "";
  position: absolute;
  display: block;
}

.search-glyph::before {
  inset: 1.5px 4.5px 4.5px 1.5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.search-glyph::after {
  width: 7px;
  height: 1.5px;
  right: 0.5px;
  bottom: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

/* ==========================================================================
   8. 下拉与语言控件 Select & language controls
   ========================================================================== */
.select-wrap {
  position: relative;
}

.nav-actions .select-wrap {
  width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.82;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.nav-actions .select-wrap::before,
.language-glyph,
.account-glyph {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  background: currentColor;
  pointer-events: none;
}

.nav-actions .select-wrap::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='7.25'/%3E%3Cpath d='M2.75 10h14.5M10 2.75c2 2.1 3 4.5 3 7.25s-1 5.15-3 7.25M10 2.75c-2 2.1-3 4.5-3 7.25s1 5.15 3 7.25'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='7.25'/%3E%3Cpath d='M2.75 10h14.5M10 2.75c2 2.1 3 4.5 3 7.25s-1 5.15-3 7.25M10 2.75c-2 2.1-3 4.5-3 7.25s1 5.15 3 7.25'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.language-glyph {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='7.25'/%3E%3Cpath d='M2.75 10h14.5M10 2.75c2 2.1 3 4.5 3 7.25s-1 5.15-3 7.25M10 2.75c-2 2.1-3 4.5-3 7.25s1 5.15 3 7.25'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='7.25'/%3E%3Cpath d='M2.75 10h14.5M10 2.75c2 2.1 3 4.5 3 7.25s-1 5.15-3 7.25M10 2.75c-2 2.1-3 4.5-3 7.25s1 5.15 3 7.25'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-glyph {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.25 6.5a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0Z'/%3E%3Cpath d='M3.25 17.25c1.2-3 3.55-4.5 6.75-4.5s5.55 1.5 6.75 4.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.25 6.5a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0Z'/%3E%3Cpath d='M3.25 17.25c1.2-3 3.55-4.5 6.75-4.5s5.55 1.5 6.75 4.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.select-wrap select {
  width: 118px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions .select-wrap select {
  position: absolute;
  inset: 0;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: transparent;
  background: transparent;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nav-actions .select-wrap:hover,
.nav-actions .select-wrap:focus-within {
  opacity: 1;
}

.site-header.is-scrolled .select-wrap select {
  color: var(--ink);
  border-color: transparent;
  background: transparent;
}

.site-header.is-scrolled .nav-actions .select-wrap {
  color: var(--ink);
}

.select-wrap option {
  color: var(--ink);
}

.ghost-button,
.secondary-button,
.primary-button,
.solid-small,
.text-button {
  border-radius: 8px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.ghost-button {
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav-actions .ghost-button {
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 0;
  opacity: 0.82;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-header.is-scrolled .ghost-button {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.site-header.is-scrolled .nav-actions .ghost-button {
  color: var(--ink);
}

.primary-button {
  padding: 0 22px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.secondary-button {
  padding: 0 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.solid-small {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
}

.text-button,
.text-link {
  min-height: 38px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

.light-link {
  color: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.solid-small:hover {
  transform: translateY(-1px);
}

.nav-actions .ghost-button:hover,
.nav-actions .ghost-button:focus-visible {
  transform: none;
  opacity: 1;
  outline: none;
}

/* ==========================================================================
   9. 语言面板 Language panel
   ========================================================================== */
.language-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 3;
  max-height: min(78vh, 760px);
  overflow: auto;
  color: var(--ink);
  background: #f5f5f7;
  border-bottom: 1px solid rgba(210, 214, 220, 0.54);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family:
    var(--font-sans),
    "PingFang SC",
    "PingFang TC",
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans CJK SC",
    "Noto Sans JP",
    "Noto Sans KR",
    "Noto Sans Thai",
    "Noto Sans Devanagari",
    "Noto Sans Arabic",
    "Noto Sans Hebrew",
    sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

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

.language-mega-inner {
  width: min(100% - 72px, 1180px);
  margin: 0 auto;
  padding: 44px 0 58px;
}

.language-mega-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 18px;
}

.language-mega-head p {
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 700;
}

.language-search {
  max-width: 520px;
  position: relative;
  display: block;
  margin: 0 0 30px;
}

.language-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.language-search::before,
.language-search::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.language-search::before {
  width: 14px;
  height: 14px;
  left: 15px;
  top: 50%;
  border: 1.7px solid #6e6e73;
  border-radius: 50%;
  transform: translateY(-56%);
}

.language-search::after {
  width: 7px;
  height: 1.7px;
  left: 27px;
  top: 28px;
  border-radius: 999px;
  background: #6e6e73;
  transform: rotate(45deg);
}

.language-search-input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px 0 42px;
  color: var(--ink);
  background: #e8e8ed;
  direction: ltr;
  font: inherit;
  font-size: 15px;
  outline: none;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.language-search-input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.22);
}

.language-search-input::-webkit-search-cancel-button {
  cursor: pointer;
}

.language-close {
  width: 32px;
  height: 32px;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 16, 22, 0.06);
}

.language-close::before,
.language-close::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: #4f5661;
}

.language-close::before {
  transform: rotate(45deg);
}

.language-close::after {
  transform: rotate(-45deg);
}

.language-region-list {
  display: block;
  column-count: 2;
  column-gap: 84px;
}

.language-region-list.is-searching {
  column-count: 1;
}

.language-region {
  break-inside: avoid;
  margin-bottom: 38px;
}

.language-region h2 {
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.language-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 34px;
}

.language-option {
  min-height: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 6px;
  padding: 5px 6px;
  color: var(--ink);
  background: transparent;
  text-align: start;
  font: inherit;
}

.language-option:hover,
.language-option:focus-visible {
  background: rgba(12, 16, 22, 0.045);
  outline: none;
}

.language-option.is-active {
  color: #06c;
  background: rgba(0, 102, 204, 0.08);
  box-shadow: inset 3px 0 0 #06c;
}

.language-option span {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option small {
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.language-option.is-active small {
  color: #06c;
}

.language-region-search .language-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.language-empty {
  margin: 8px 0 0;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 600;
}

.full-width {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff;
}

.site-header.has-search-open .menu-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff;
}

.site-header.is-scrolled .menu-toggle span,
.site-header.has-search-open .menu-toggle span {
  background: var(--ink);
}

.hero-dark {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(225, 38, 28, 0.16), transparent 38%),
    linear-gradient(180deg, #07090d 0%, #111821 56%, #05070a 100%);
}

.page-home {
  background: #f5f5f7;
}

.page-home .site-header {
  height: 48px;
  --header-height: 48px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.page-home .search-scrim,
.page-home .language-backdrop {
  inset-top: 48px;
}

.page-home .site-header.is-scrolled {
  height: 48px;
  background: rgba(245, 245, 247, 0.82);
}

.page-home .site-header.has-mega-open,
.page-home .site-header.has-search-open {
  height: 48px;
  background: rgba(246, 247, 249, 0.92);
}

.page-home .nav-shell {
  height: 48px;
  width: min(100% - 36px, 980px);
}

.page-home .brand,
.page-home .brand-logo {
  width: 94px;
}

.page-home .nav-links {
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.page-home .site-header.is-scrolled .nav-links {
  background: transparent;
}

.page-home .site-header.has-search-open .nav-links {
  color: var(--ink-soft);
}

.page-home .nav-links a {
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
}

.page-home .nav-links a:hover,
.page-home .nav-links a:focus-visible,
.page-home .nav-links a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.page-home .site-header.is-scrolled .nav-links a:hover,
.page-home .site-header.is-scrolled .nav-links a:focus-visible,
.page-home .site-header.is-scrolled .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--ink);
}

.page-home .site-header.has-mega-open .nav-links a:hover,
.page-home .site-header.has-mega-open .nav-links a:focus-visible,
.page-home .site-header.has-mega-open .nav-links a[aria-current="page"],
.page-home .site-header.has-mega-open .nav-links a.is-mega-active,
.page-home .site-header.has-search-open .nav-links a:hover,
.page-home .site-header.has-search-open .nav-links a:focus-visible,
.page-home .site-header.has-search-open .nav-links a[aria-current="page"] {
  color: var(--ink);
}

.page-home .select-wrap select,
.page-home .ghost-button,
.page-home .nav-icon-link,
.page-home .language-trigger {
  min-height: 32px;
  border-radius: 0;
  font-size: 12px;
}

.page-home .select-wrap select {
  width: 100px;
  padding: 5px 10px;
}

.page-home .nav-icon-link {
  width: 36px;
}

.page-home .ghost-button {
  padding: 0 13px;
}

.page-home .nav-actions .select-wrap,
.page-home .nav-actions .ghost-button,
.page-home .nav-actions .nav-icon-link,
.page-home .nav-actions .language-trigger {
  width: 36px;
  min-height: 36px;
}

.page-home .nav-actions .select-wrap select {
  width: 36px;
  min-height: 36px;
  padding: 0;
}

.page-home .nav-actions .ghost-button {
  padding: 0;
}

/* ==========================================================================
   10. 首页 Home page
   ========================================================================== */
.home-product-hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 92px 22px 0;
  border-bottom: 12px solid #fff;
}

.home-product-dark {
  color: #fff;
  background: #000;
}

.home-product-hero-primary {
  min-height: 900px;
  background: #000;
}

.home-product-hero-primary::before,
.home-product-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.home-product-tile {
  min-height: 780px;
  border-bottom: 0;
  padding-top: 68px;
}

.home-product-hero-primary::before {
  z-index: 0;
  background: #000;
}

.home-product-hero-primary::after {
  z-index: 1;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.96) 8%, rgba(0, 0, 0, 0) 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0) 74%, rgba(0, 0, 0, 0.96) 100%);
}

.home-product-light {
  color: #111318;
  /* Matches the ClipAir render's baked backdrop (#eeedf2) so the image's
     rectangle merges into the tile instead of showing a visible boundary. */
  background: #eeedf2;
}

.home-product-soft {
  color: #111318;
  background:
    radial-gradient(circle at 50% 74%, rgba(220, 226, 234, 0.72), rgba(251, 251, 253, 0) 34%),
    #fbfbfd;
}

.home-product-copy {
  width: min(100%, 760px);
  position: relative;
  z-index: 2;
}

.home-product-copy h1,
.home-product-copy h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.home-product-copy p {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.22;
  color: currentColor;
  letter-spacing: 0;
}

.home-product-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.home-cta-fill {
  background: var(--cta);
  color: var(--cta-ink);
  border: 1px solid var(--cta);
}

.home-cta-fill:hover,
.home-cta-fill:focus-visible {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  outline: none;
}

.home-cta-outline {
  color: var(--cta);
  border: 1px solid var(--cta);
}

.home-cta-outline:hover,
.home-cta-outline:focus-visible {
  color: var(--cta-ink);
  background: var(--cta);
  outline: none;
}

.home-product-image {
  position: absolute;
  z-index: 1;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.home-product-image-desk-primary {
  width: min(96vw, 1180px);
  height: auto;
  max-height: none;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.home-product-image-clip {
  width: min(74vw, 1180px);
  max-height: 560px;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center;
  /* Feather the render's edges so its light-grey backdrop dissolves into the
     tile (#f5f5f7) instead of leaving a visible rectangle / overlapping the CTAs. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 90%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 90%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.home-product-image-omni-final {
  width: min(66vw, 980px);
  max-height: 520px;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 68px rgba(12, 16, 22, 0.18));
}

.home-award-line {
  min-height: 34px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-award-line-dark {
  color: rgba(255, 255, 255, 0.88);
}

.home-award-line img {
  width: auto;
  height: 28px;
  object-fit: contain;
}

.home-award-line img[src$=".png"],
.home-award-line img[src*="if-design-award"] {
  max-width: 84px;
  height: 24px;
}

.home-collection {
  min-height: 360px;
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
  padding: 70px 22px 86px;
  background: #fff;
}

.home-collection h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
}

.home-collection p {
  margin: 12px 0 0;
  color: #5f6368;
  font-size: 22px;
  line-height: 1.35;
}

.home-hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 26px;
  padding: 112px max(22px, calc((100vw - var(--max)) / 2)) 96px;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.hero-dark .eyebrow {
  color: var(--cyan);
}

.page-hero-copy > .eyebrow,
.section-head > .eyebrow,
.section-head > div > .eyebrow {
  display: none;
}

.page-hero-copy h1 {
  margin: 0;
  font-size: 70px;
  line-height: 1.06;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.hero-render {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.46));
}

.hero-render-main {
  right: 2%;
  top: 4%;
  width: 72%;
}

.hero-render-left {
  left: 0;
  bottom: 2%;
  width: 47%;
}

.hero-render-right {
  right: 4%;
  bottom: 0;
  width: 54%;
}

.home-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.home-strip a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-right: 1px solid var(--line);
}

.home-strip a:last-child {
  border-right: 0;
}

.home-strip strong {
  font-size: 18px;
}

.home-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* ==========================================================================
   11. 通用内容区块 Shared content sections
   ========================================================================== */
.section {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 48px;
  align-items: end;
}

.section-head h2,
.editorial-card h2,
.detail-panel h2,
.solution-row h2,
.account-card h2,
.company-copy h2,
.brand-values h2,
.checkout-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-head p,
.editorial-card p,
.detail-panel p,
.solution-row p,
.account-card p,
.company-copy p,
.brand-values p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

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

.editorial-card {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}

.editorial-card:first-child {
  grid-column: 1 / -1;
  min-height: 620px;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: none;
  align-items: center;
}

.editorial-dark {
  color: #fff;
  background: var(--night);
  border-color: rgba(255, 255, 255, 0.12);
}

.editorial-dark h2,
.editorial-dark p {
  color: #fff;
}

.editorial-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-card > div {
  padding: 42px;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  background: #f1f3f5;
}

.editorial-dark img {
  padding: 26px;
  background: #080b10;
}

.video-feature {
  padding-top: 44px;
}

.video-frame {
  border-radius: 8px;
  overflow: hidden;
  background: #050608;
  border: 1px solid rgba(12, 16, 22, 0.14);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050608;
  object-fit: contain;
}

.route-grid {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.route-card span {
  color: var(--red);
  font-weight: 700;
}

.route-card strong {
  font-size: 24px;
  line-height: 1.18;
}

.page-hero {
  min-height: 620px;
  padding: 116px max(22px, calc((100vw - var(--max)) / 2)) 70px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.38));
}

.product-hero img {
  background: #fff;
  border-radius: 8px;
}

.company-hero img {
  width: min(100%, 360px);
  justify-self: center;
  opacity: 0.96;
}

.page-brand {
  background: #f5f5f7;
}

.page-brand .site-header {
  height: 48px;
  --header-height: 48px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.page-brand .site-header.is-scrolled,
.page-brand .site-header.has-mega-open,
.page-brand .site-header.has-search-open {
  height: 48px;
  background: rgba(245, 245, 247, 0.86);
}

.page-brand .nav-shell {
  width: min(100% - 36px, 980px);
  height: 48px;
}

.page-brand .brand,
.page-brand .brand-logo {
  width: 94px;
}

.page-brand .nav-links a {
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
}

.page-brand .nav-actions .select-wrap,
.page-brand .nav-actions .ghost-button,
.page-brand .nav-actions .nav-icon-link,
.page-brand .nav-actions .language-trigger {
  width: 36px;
  min-height: 36px;
}

.brand-hero,
.brand-statement,
.brand-story,
.brand-capabilities,
.brand-roadmap,
.brand-identity-section,
.brand-entity-section,
.tech-band-inner {
  width: min(100% - 44px, 1180px);
  margin: 0 auto;
}

.brand-hero {
  min-height: 840px;
  display: grid;
  align-content: start;
  justify-items: center;
  position: relative;
  overflow: hidden;
  padding: 116px 22px 0;
  width: 100%;
  max-width: none;
  color: #f5f5f7;
  text-align: center;
  background:
    radial-gradient(circle at 50% 72%, rgba(115, 140, 165, 0.26), transparent 34%),
    linear-gradient(180deg, #050608 0%, #0d1015 54%, #030405 100%);
}

.brand-hero-copy {
  width: min(100%, 820px);
  position: relative;
  z-index: 3;
}

.brand-hero .eyebrow,
.brand-tech-band .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.brand-hero h1 {
  margin: 8px 0 0;
  font-size: 76px;
  line-height: 1.02;
  font-weight: 700;
}

.brand-hero p {
  width: min(100%, 720px);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  line-height: 1.34;
}

.brand-hero-stage {
  width: min(100%, 1220px);
  height: 470px;
  position: relative;
  margin-top: 34px;
  z-index: 2;
}

.brand-hero-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(76vw, 920px);
  height: 32px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  filter: blur(18px);
}

.brand-hero-product {
  position: absolute;
  left: 50%;
  bottom: 0;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.brand-hero-product-main {
  width: min(64vw, 760px);
  max-height: 430px;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.46));
}

.brand-hero-product-left {
  width: min(30vw, 390px);
  max-height: 330px;
  transform: translateX(-128%) rotate(-5deg);
  z-index: 2;
  opacity: 0.84;
  filter: saturate(0.92) drop-shadow(0 26px 54px rgba(0, 0, 0, 0.38));
}

.brand-hero-product-right {
  width: min(36vw, 460px);
  max-height: 340px;
  transform: translateX(42%) rotate(3deg);
  z-index: 1;
  opacity: 0.78;
  filter: saturate(0.92) drop-shadow(0 26px 54px rgba(0, 0, 0, 0.38));
}

.brand-statement,
.brand-story,
.brand-capabilities,
.brand-roadmap,
.brand-identity-section,
.brand-entity-section {
  padding: 108px 0;
}

.brand-statement-inner {
  width: min(100%, 920px);
  margin: 0 auto 54px;
  text-align: center;
}

.brand-statement h2,
.brand-section-head h2,
.brand-story h2,
.identity-lockup h2 {
  margin: 8px 0 0;
  color: #1d1d1f;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: 0;
}

.brand-statement p,
.brand-section-head p,
.brand-story-copy p,
.identity-lockup p,
.entity-grid p {
  margin: 18px 0 0;
  color: #6e6e73;
  font-size: 21px;
  line-height: 1.48;
}

.brand-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-kpi-row div {
  min-height: 156px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.brand-kpi-row strong {
  display: block;
  color: #1d1d1f;
  font-size: 42px;
  line-height: 1.05;
}

.brand-kpi-row span {
  display: block;
  margin-top: 12px;
  color: #6e6e73;
  line-height: 1.48;
}

.brand-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.brand-principles {
  display: grid;
  gap: 12px;
}

.brand-principles article,
.capability-grid article,
.roadmap-brand-grid article,
.entity-grid article {
  border-radius: 8px;
  background: #fff;
}

.brand-principles article {
  min-height: 164px;
  padding: 28px;
}

.brand-principles span {
  color: var(--red);
  font-weight: 700;
}

.brand-principles h3,
.capability-grid h3,
.roadmap-brand-grid h3,
.entity-grid h3 {
  margin: 10px 0 0;
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1.2;
}

.brand-principles p,
.capability-grid p,
.roadmap-brand-grid p {
  margin: 12px 0 0;
  color: #6e6e73;
  line-height: 1.58;
}

.brand-section-head {
  width: min(100%, 920px);
  margin-bottom: 42px;
}

.brand-section-head.split-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: end;
}

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

.capability-grid article {
  min-height: 310px;
  padding: 28px;
}

.brand-tech-band {
  color: #fff;
  background:
    radial-gradient(circle at 74% 28%, rgba(225, 38, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #050608, #161a21 58%, #07080b);
}

.tech-band-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 64px;
  padding: 92px 0;
}

.tech-band-inner h2 {
  margin: 8px 0 0;
  font-size: 58px;
  line-height: 1.06;
}

.tech-band-inner p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.58;
}

.tech-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tech-rail span {
  min-height: 112px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.roadmap-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.roadmap-brand-grid article {
  min-height: 520px;
  overflow: hidden;
}

.roadmap-brand-grid img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: #fbfbfd;
}

.roadmap-brand-grid h3,
.roadmap-brand-grid p {
  margin-left: 28px;
  margin-right: 28px;
}

.roadmap-brand-grid h3 {
  margin-top: 26px;
}

.roadmap-brand-grid p {
  margin-bottom: 28px;
}

.identity-lockup {
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
  border-radius: 8px;
  padding: 52px;
  background: #fff;
}

.identity-lockup img {
  width: min(100%, 540px);
  justify-self: center;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.swatch-row span {
  min-height: 136px;
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(90deg, var(--swatch) 0 36%, #fff 36% 100%);
}

.swatch-row b,
.swatch-row small {
  display: block;
  margin-left: 41%;
}

.swatch-row small {
  margin-top: 8px;
  color: #6e6e73;
}

.brand-entity-section {
  padding-top: 0;
}

.entity-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
}

.entity-grid article {
  padding: 30px;
}

.entity-grid strong {
  color: #1d1d1f;
}

@media (max-width: 1100px) {
  .brand-hero {
    min-height: 780px;
  }

  .brand-hero h1 {
    font-size: 64px;
  }

  .brand-hero p {
    font-size: 21px;
  }

  .brand-hero-stage {
    height: 420px;
  }

  .brand-hero-product-main {
    width: min(78vw, 700px);
  }

  .brand-hero-product-left {
    width: min(38vw, 340px);
    transform: translateX(-118%) rotate(-5deg);
  }

  .brand-hero-product-right {
    width: min(44vw, 400px);
    transform: translateX(30%) rotate(3deg);
  }

  .brand-story,
  .tech-band-inner,
  .identity-lockup,
  .entity-grid,
  .brand-section-head.split-head {
    grid-template-columns: 1fr;
  }

  .brand-kpi-row,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-section-head.split-head {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .brand-hero,
  .brand-statement,
  .brand-story,
  .brand-capabilities,
  .brand-roadmap,
  .brand-identity-section,
  .brand-entity-section,
  .tech-band-inner {
    width: min(100% - 36px, 1180px);
  }

  .brand-hero {
    width: 100%;
    min-height: 720px;
    padding-top: 104px;
  }

  .brand-hero h1,
  .brand-statement h2,
  .brand-section-head h2,
  .brand-story h2,
  .identity-lockup h2,
  .tech-band-inner h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .brand-hero p,
  .brand-statement p,
  .brand-section-head p,
  .brand-story-copy p,
  .identity-lockup p,
  .tech-band-inner p,
  .entity-grid p {
    font-size: 18px;
  }

  .brand-hero-stage {
    height: 380px;
    margin-top: 28px;
  }

  .brand-hero-product-main {
    width: min(98vw, 620px);
    max-height: 330px;
  }

  .brand-hero-product-left {
    width: min(46vw, 260px);
    transform: translateX(-118%) rotate(-5deg);
  }

  .brand-hero-product-right {
    width: min(52vw, 300px);
    transform: translateX(26%) rotate(3deg);
  }

  .brand-statement,
  .brand-story,
  .brand-capabilities,
  .brand-roadmap,
  .brand-identity-section,
  .brand-entity-section {
    padding: 76px 0;
  }

  .tech-band-inner {
    min-height: auto;
    padding: 76px 0;
  }

  .capability-grid,
  .roadmap-brand-grid,
  .swatch-row {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 220px;
  }

  .roadmap-brand-grid article {
    min-height: auto;
  }

  .roadmap-brand-grid img {
    height: 240px;
  }

  .identity-lockup {
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .brand-kpi-row,
  .tech-rail {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    min-height: 660px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-hero h1 {
    font-size: 38px;
  }

  .brand-hero-stage {
    height: 330px;
  }

  .brand-hero-product-main {
    width: 116vw;
    max-height: 300px;
  }

  .brand-hero-product-left,
  .brand-hero-product-right {
    display: none;
  }

  .brand-kpi-row div,
  .brand-principles article,
  .capability-grid article,
  .entity-grid article {
    padding: 24px;
  }

  .swatch-row span {
    background:
      linear-gradient(90deg, var(--swatch) 0 28%, #fff 28% 100%);
  }

  .swatch-row b,
  .swatch-row small {
    margin-left: 34%;
  }
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  padding: 0 14px;
}

.filter-chip.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

/* ==========================================================================
   12. 产品列表与卡片 Products listing & cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 548px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  height: 292px;
  position: relative;
  overflow: hidden;
  background: #eef1f4;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

/* Make the card image a link to the detail page (same target as 了解更多). */
.product-media-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-media-link:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: -2px;
}

.product-media-light img {
  padding: 10px;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-copy {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.product-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.award-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.award-row-hero {
  margin-top: 20px;
}

.award-badge {
  width: max-content;
  min-height: 38px;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(12, 16, 22, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: none;
  text-decoration: none;
}

.home-award-line:focus-visible,
.award-badge:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.award-mark {
  width: auto;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 4px;
  max-width: 96px;
}

.award-badge span {
  min-width: 0;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.award-if {
  border-color: rgba(230, 22, 40, 0.22);
  color: #d71920;
}

.award-if .award-mark {
  height: 28px;
  max-width: 92px;
}

.award-red-dot {
  border-color: rgba(12, 16, 22, 0.14);
  color: #101418;
}

.award-red-dot .award-mark {
  height: 26px;
  max-width: 68px;
}

.hero-dark .award-badge {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--ink);
  background: #fff;
}

.hero-dark .award-if {
  color: #d71920;
}

.product-copy > p:not(.product-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.spec-row,
.compat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.spec-row span,
.compat-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 9px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
}

.card-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.left-actions {
  justify-content: flex-start;
}

.product-subnav {
  position: sticky;
  top: 68px;
  z-index: 90;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  background: rgba(246, 247, 249, 0.9);
  backdrop-filter: blur(18px);
}

.page-product-detail .product-subnav {
  margin-top: 48px;
}

.page-product-detail main section[id] {
  scroll-margin-top: 144px;
}

.product-subnav a:not(.solid-small) {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================================
   13. 产品详情页 Product detail page
   ========================================================================== */
.product-detail-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 42px;
  padding: 132px max(22px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1.06;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.product-detail-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.product-detail-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 36px 76px rgba(0, 0, 0, 0.44));
}

.product-story-grid {
  display: grid;
  gap: 16px;
}

.product-story-grid article {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.product-story-grid article > div {
  padding: 46px;
}

.product-story-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #f1f3f5;
}

.product-angle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  padding-top: 0;
}

.product-angle-gallery figure {
  min-height: 260px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f5f7;
  overflow: hidden;
}

.product-angle-gallery img {
  width: min(84%, 380px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(12, 16, 22, 0.16));
}

.product-story-grid h2,
.scene-band h2,
.spec-section h2,
.box-service-grid h2,
.faq-section h2,
.store-config-card h2,
.commerce-panel h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  text-wrap: balance;
}

.product-story-grid p,
.scene-grid p,
.spec-section p,
.box-service-grid p,
.faq-section p,
.commerce-panel p,
.store-config-card p {
  color: var(--muted);
  line-height: 1.72;
}

.scene-grid,
.box-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scene-grid article,
.box-service-grid article,
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.scene-grid strong {
  font-size: 20px;
}

.spec-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: var(--ink);
}

.spec-table span {
  color: var(--muted);
}

.box-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.box-service-grid h2 {
  font-size: clamp(24px, 2.2vw, 30px);
}

.faq-section {
  padding-top: 0;
}

.faq-section details + details {
  margin-top: 10px;
}

.faq-section summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.detail-stack {
  display: grid;
  gap: 16px;
  padding-top: 0;
}

.detail-panel {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.detail-panel > div {
  padding: 52px;
}

.detail-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #f1f3f5;
}

.dark-panel {
  color: #fff;
  background: var(--night);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-panel h2,
.dark-panel p {
  color: #fff;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-panel img {
  background: #080b10;
  padding: 22px;
}

.page-clipair-detail {
  background: #f4f6f8;
}

.clipair-hero {
  background:
    linear-gradient(128deg, rgba(225, 38, 28, 0.22), rgba(52, 213, 255, 0.08) 42%, rgba(5, 7, 10, 0) 68%),
    linear-gradient(180deg, #050608 0%, #111820 58%, #05070a 100%);
}

.clipair-hero .product-detail-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.clipair-hero > img {
  max-height: 610px;
  transform: translateX(18px);
}

.clipair-story-grid article {
  border-color: rgba(158, 171, 188, 0.34);
  box-shadow: 0 18px 50px rgba(19, 29, 43, 0.08);
}

.clipair-story-grid article:first-child {
  background: #f8fbfd;
}

.clipair-story-grid article:first-child img {
  object-fit: cover;
  object-position: center;
  background: #d8e0e7;
}

.clipair-story-grid article:nth-child(2) {
  background: #fbfcfd;
}

.clipair-story-grid article:nth-child(2) img {
  object-fit: cover;
  background: #dfe5ea;
}

.clipair-detail-stack {
  gap: 18px;
}

.clipair-detail-stack .detail-panel {
  border-color: rgba(158, 171, 188, 0.34);
  box-shadow: 0 18px 50px rgba(19, 29, 43, 0.08);
}

.clipair-light-panel {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.clipair-light-panel img,
.clipair-rx-panel img {
  object-fit: cover;
  padding: 0;
}

.clipair-rx-panel {
  background:
    linear-gradient(135deg, #080a0d 0%, #151922 48%, #050608 100%);
}

.clipair-rx-panel img {
  min-height: 520px;
  background: #050608;
}

.clipair-rx-panel .feature-list {
  background: rgba(255, 255, 255, 0.14);
}

.clipair-rx-panel .feature-list div {
  background: rgba(255, 255, 255, 0.07);
}

.clipair-kit-panel {
  grid-template-columns: 1.08fr 0.92fr;
  background: #fff;
}

.clipair-kit-panel img {
  object-fit: contain;
  padding: 24px;
  background: #f3f5f7;
}

.page-clipair-detail .scene-grid article {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(158, 171, 188, 0.36);
}

.page-clipair-detail .scene-grid article::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--red);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.feature-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-list dt {
  font-size: 24px;
  font-weight: 700;
}

.feature-list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.page-product-detail {
  overflow-x: hidden;
  color: var(--ink);
}

/* Compact 48px global header — same sizing set as the homepage/brand pages. */
.page-product-detail .site-header {
  height: 48px;
  --header-height: 48px;
}

.page-product-detail .site-header.is-scrolled,
.page-product-detail .site-header.has-mega-open,
.page-product-detail .site-header.has-search-open {
  height: 48px;
}

.page-product-detail .nav-shell {
  width: min(100% - 36px, 980px);
  height: 48px;
}

.page-product-detail .brand,
.page-product-detail .brand-logo {
  width: 94px;
}

.page-product-detail .nav-links a {
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
}

.page-product-detail .nav-actions .select-wrap,
.page-product-detail .nav-actions .ghost-button,
.page-product-detail .nav-actions .nav-icon-link,
.page-product-detail .nav-actions .language-trigger {
  width: 36px;
  min-height: 36px;
}

/* Apple-style chrome: the global header slides away on scroll and the
   floating product capsule takes over near the top of the viewport. */
.page-product-detail .site-header {
  transition:
    transform 0.3s ease,
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

body.page-product-detail.dxd-chrome-hidden .site-header {
  transform: translateY(-100%);
}

/* Light glass by default; .is-on-dark flips the material over dark blocks. */
.dxd-localnav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  width: min(640px, calc(100vw - 32px));
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    visibility 0s linear 0.32s;
  color: var(--ink);
  background: rgba(252, 252, 254, 0.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(8, 12, 18, 0.14);
}

.dxd-localnav.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.dxd-localnav.is-on-dark {
  color: #fff;
  background: rgba(18, 20, 24, 0.82);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.dxd-localnav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 20px;
}

.dxd-localnav-title {
  margin-right: auto;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.dxd-localnav-ghost {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(16, 24, 32, 0.08);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.dxd-localnav-ghost:hover {
  background: rgba(16, 24, 32, 0.14);
}

.dxd-localnav-buy {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #111417;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.dxd-localnav.is-on-dark .dxd-localnav-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.dxd-localnav.is-on-dark .dxd-localnav-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.dxd-localnav.is-on-dark .dxd-localnav-buy {
  color: #0a0c0f;
  background: #fff;
}

/* --------------------------------------------------------------------------
   DeskHub D20 detail page (dxd-*) — single coherent layer.
   Narrative: dark hero → light highlights mosaic → design + colors →
   dark handheld moment → audio stage → dark control console → scenes →
   shared specs/FAQ idiom → dark closing CTA.
   -------------------------------------------------------------------------- */
.page-product-detail {
  background: #fff;
}

.page-product-detail .section {
  padding-top: 116px;
  padding-bottom: 116px;
}

/* Chapter heads (eyebrow stays visible: not a .section-head) */
.dxd-head {
  max-width: 860px;
  margin-bottom: 52px;
}

.dxd-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.dxd-head p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* Hero: copy block above a clean image — product fits the first viewport.
   The radial glow continues the render's studio lighting beyond the image,
   so its masked edges land on matching tones instead of flat black. */
.dxd-hero {
  padding-top: calc(48px + clamp(32px, 4vw, 52px));
  color: #fff;
  background:
    radial-gradient(42% 46% at 50% 64%, #16191d 0%, #0b0d10 56%, rgba(5, 7, 10, 0) 88%),
    #05070a;
}

.dxd-hero .eyebrow {
  color: var(--cyan);
}

.dxd-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.dxd-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.dxd-hero-line {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 600;
  text-wrap: balance;
}

.dxd-hero-sub {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.65;
}

.dxd-hero-copy .award-row {
  margin-top: 24px;
  justify-content: center;
}

.dxd-hero .hero-actions {
  justify-content: center;
}

/* Scaled to the viewport so the whole product is visible without scrolling.
   The picture fades the sides and the img fades top/bottom — nested masks
   intersect, so the render dissolves into the hero background on all edges. */
.dxd-hero-media {
  display: block;
  width: fit-content;
  margin: clamp(24px, 3vw, 40px) auto 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.dxd-hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(360px, calc(100svh - 470px), 720px);
  object-fit: contain;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
}

/* Transparent / clean renders: contained, no edge masks needed. */
.dxd-hero-contain {
  -webkit-mask-image: none;
  mask-image: none;
}

.dxd-hero-contain img {
  -webkit-mask-image: none;
  mask-image: none;
}

/* Light hero variant for products shot on bright backdrops. */
.dxd-hero-light {
  color: var(--ink);
  background: #fff;
}

/* Light-hero pages reuse the page-info light header; this outranks the
   dark product-header default. */
.page-product-detail.page-info .site-header:not(.is-scrolled) {
  background: rgba(246, 247, 249, 0.9);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  backdrop-filter: blur(20px);
}

.dxd-hero-light .eyebrow {
  color: var(--red);
}

.dxd-hero-light .dxd-hero-line {
  color: var(--ink-soft);
}

.dxd-hero-light .dxd-hero-sub {
  color: var(--muted);
}

.dxd-hero-light .dxd-hero-facts {
  border-top-color: var(--line);
}

.dxd-hero-light .dxd-hero-facts span {
  color: var(--muted);
}

.dxd-hero-light .primary-button {
  color: #fff;
  background: #111417;
}

.dxd-hero-light .secondary-button {
  color: var(--ink);
  background: rgba(16, 24, 32, 0.06);
  border: 1px solid rgba(16, 24, 32, 0.22);
}

/* Short laptop viewports: tighten the copy block so the product still fits. */
@media (min-width: 861px) and (max-height: 820px) {
  .dxd-hero {
    padding-top: calc(48px + 22px);
  }

  .dxd-hero-media {
    margin-top: 18px;
  }

  .dxd-hero-media img {
    height: clamp(300px, calc(100svh - 408px), 720px);
  }
}

.dxd-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  max-width: var(--max);
  margin: 34px auto 0;
  padding: 30px 22px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dxd-hero-facts div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.dxd-hero-facts strong {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.15;
}

.dxd-hero-facts span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.5;
}

/* Highlights mosaic -------------------------------------------------------- */
.dxd-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dxd-card {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
}

.dxd-card-wide {
  grid-column: span 2;
  min-height: 520px;
}

.dxd-card > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dxd-card-copy {
  position: relative;
  max-width: 600px;
  padding: clamp(26px, 3vw, 40px);
}

.dxd-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.dxd-card p {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.dxd-card .eyebrow {
  margin-bottom: 12px;
}

.dxd-card-light {
  color: var(--ink);
  background: #eef0f2;
}

.dxd-card-light p {
  color: var(--ink-soft);
}

.dxd-card-dark {
  color: #fff;
  background: #0a0c0f;
}

.dxd-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.dxd-card-dark .eyebrow {
  color: var(--cyan);
}

.dxd-card-wave {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  min-height: 480px;
}

.dxd-card-wave > img {
  position: static;
  z-index: auto;
  height: 100%;
  min-height: 100%;
  object-position: 64% 50%;
}

.dxd-card-wave .dxd-card-copy {
  padding-right: clamp(10px, 2vw, 24px);
}

.dxd-card-screen > img {
  position: static;
  z-index: auto;
  flex: 1;
  width: 100%;
  min-height: 0;
  object-position: 50% 100%;
}

.dxd-card-family {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.dxd-card-family p {
  color: var(--muted);
}

.dxd-card-family > img {
  position: static;
  z-index: auto;
  flex: 1;
  width: 100%;
  min-height: 0;
  margin-top: auto;
  object-fit: contain;
  padding: 0 18px 18px;
}

/* Design: color stage ------------------------------------------------------ */
.dxd-color-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 44px) clamp(18px, 3vw, 52px) clamp(26px, 3.5vw, 40px);
  background: #fff;
}

.dxd-color-media {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* Source renders are off-center; positions are measured so the product
   lands on the card's center line (black cx 61%, white cx 41% of source). */
.dxd-color-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 83% 50%;
}

.dxd-color-media img[hidden] {
  display: none;
}

/* The white render frames the product smaller and higher than the black one;
   zoom and shift it so both colors keep the same size and baseline. */
.dxd-color-media img[data-deskhub-color-image="white"] {
  object-position: 22% 50%;
  transform: translateY(8.5%) scale(1.08);
}

/* Apple-style swatch dots: color only, selected dot gets an offset ring. */
.dxd-color-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 4px;
}

.dxd-color-tabs button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: none;
  cursor: pointer;
}

.dxd-color-tabs button.is-active,
.dxd-color-tabs button:focus-visible {
  outline: 2px solid #111417;
  outline-offset: 3px;
}

.dxd-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(16, 24, 32, 0.22);
}

.dxd-swatch-black {
  background: #111417;
}

.dxd-swatch-white {
  background: #f4f6f8;
}

.dxd-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.dxd-color-panels {
  max-width: 560px;
  min-height: 124px;
  text-align: center;
}

.dxd-color-name {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dxd-color-panels h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.dxd-color-panels p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

/* Trios: tick + title + body (audio-level tick motif) ---------------------- */
.dxd-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  margin-top: 56px;
}

.dxd-trio-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dxd-trio article {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.dxd-trio article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.dxd-trio strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.3;
}

.dxd-trio span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

/* Design: handheld dark moment --------------------------------------------- */
.dxd-handheld {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  min-height: 560px;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #0a0c0f;
}

.dxd-handheld > div {
  padding: clamp(30px, 4.5vw, 68px);
}

.dxd-handheld .eyebrow {
  color: var(--cyan);
}

.dxd-handheld h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.dxd-handheld p {
  max-width: 480px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.66;
}

.dxd-handheld img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 56% 30%;
}

/* Audio stage: clean photo card, copy lives in the section head above. ------ */
.dxd-audio-stage {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0a0c0f;
}

.dxd-audio-stage > img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: 50% 40%;
}

/* 360° pickup field: original polar diagram with annotated points. */
.dxd-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #0a0c0f;
}

.dxd-field-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
}

.dxd-field-stage svg {
  display: block;
  width: min(400px, 100%);
  height: auto;
}

.dxd-field-cap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.dxd-field-cap strong:not(:first-child) {
  margin-left: 12px;
}

.dxd-field-cap strong {
  font-size: 20px;
}

.dxd-field-cap span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.dxd-field-points {
  display: grid;
  gap: clamp(22px, 3vw, 30px);
  padding: clamp(28px, 4vw, 56px);
}

.dxd-field-points article {
  position: relative;
  padding-left: 18px;
}

.dxd-field-points article::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: var(--cyan);
}

.dxd-field-points strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}

.dxd-field-points span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Expansion rows: AI minutes + magnetic gimbal camera. ---------------------- */
.dxd-extend {
  display: grid;
  gap: 18px;
}

.dxd-x-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: 20px;
}

.dxd-x-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.dxd-x-light p {
  color: var(--muted);
}

.dxd-x-dark {
  color: #fff;
  background: #0a0c0f;
}

.dxd-x-dark .eyebrow {
  color: var(--cyan);
}

.dxd-x-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.dxd-x-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 64px);
}

.dxd-x-copy h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.dxd-x-copy p {
  max-width: 480px;
  margin: 16px 0 0;
  line-height: 1.66;
}

.dxd-x-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 700;
}

.dxd-x-link:hover {
  text-decoration: underline;
}

.dxd-x-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 50% 40%;
}

.dxd-x-flip .dxd-x-media {
  order: -1;
}

/* Diagram-style media: contain on a tinted panel instead of cover. */
.dxd-x-fit {
  display: grid;
  place-items: center;
  align-self: stretch;
  background: #f5f6f8;
}

.dxd-x-fit img {
  min-height: 0;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  padding: clamp(18px, 3vw, 40px);
}

.dxd-x-dark .dxd-x-media img {
  object-position: 50% 22%;
}

/* Design gallery: one hero render plus a slim profile strip. ------------------ */
.dxd-angles {
  display: grid;
  gap: 18px;
}

.dxd-angles figure {
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f5f6f8;
}

.dxd-angle-main {
  padding: clamp(28px, 5vw, 72px);
}

.dxd-angle-main img {
  width: min(880px, 100%);
  object-fit: contain;
}

.dxd-angle-strip {
  padding: clamp(20px, 3vw, 44px) clamp(24px, 4vw, 64px);
}

.dxd-angle-strip img {
  width: min(900px, 100%);
  object-fit: contain;
}

/* Bento glance board: mixed stat / feature / image cells. --------------------- */
.dxd-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dxd-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  min-height: 236px;
  overflow: hidden;
  border-radius: 26px;
  padding: 26px 26px 24px;
  color: #fff;
  background: #1b1d21;
}

.dxd-b-light {
  color: var(--ink);
  background: #f5f6f8;
  border: 1px solid var(--line);
}

.dxd-b-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dxd-b-sub {
  max-width: 94%;
}

.dxd-b-visual {
  flex: 1;
  width: 100%;
  min-height: 96px;
  display: grid;
  place-items: center;
  margin-top: 4px;
}

.dxd-b-visual svg {
  width: 100%;
  height: auto;
  max-height: 168px;
}

.dxd-b-typo {
  justify-content: center;
}

.dxd-b-typo .dxd-b-stat {
  margin: 6px 0 0;
  font-size: clamp(34px, 2.9vw, 46px);
}

.dxd-b-typo .dxd-b-unit {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}

.dxd-b-chips {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.dxd-b-chips span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.dxd-b-chips .dxd-b-on {
  border-color: #fff;
  background: #fff;
  color: #0a0c0f;
}

.dxd-b-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.dxd-b-2x1 {
  grid-column: span 2;
}

.dxd-b-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.dxd-b-light .dxd-b-sub {
  color: var(--muted);
}

.dxd-b-stat {
  margin-top: auto;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.dxd-b-img {
  flex: 1;
  min-height: 0;
  margin: 14px -26px -24px;
}

.dxd-b-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 430px;
  object-fit: cover;
}

.dxd-b-2x1 .dxd-b-img img {
  max-height: 230px;
}

.dxd-b-top img {
  object-position: 50% 14%;
}

.dxd-b-fit img {
  object-fit: contain;
  padding: 0 12px 12px;
}

.dxd-b-photo {
  position: relative;
  min-height: 300px;
}

.dxd-b-photo .dxd-b-img {
  position: absolute;
  inset: 0;
  margin: 0;
}

.dxd-b-photo .dxd-b-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
}

.dxd-b-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(13, 15, 18, 0.85) 0%, rgba(13, 15, 18, 0.45) 22%, rgba(13, 15, 18, 0) 46%);
  pointer-events: none;
}

.dxd-b-photo .dxd-b-title,
.dxd-b-photo .dxd-b-sub {
  position: relative;
  z-index: 1;
}

/* Photo cell whose subject sits high in the frame: drop the image below
   the caption and feather its top edge into the card. */
.dxd-b-photo-inset .dxd-b-img {
  top: 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 72px);
  mask-image: linear-gradient(180deg, transparent 0, #000 72px);
}

.dxd-b-paper {
  color: var(--ink);
  background: #f2f2f2;
}

.dxd-b-paper .dxd-b-sub {
  color: var(--muted);
}

/* Studio-sound statement panel ------------------------------------------------ */
.dxd-studio {
  padding-top: 0;
}

.dxd-studio-panel {
  border-radius: clamp(28px, 3.2vw, 44px);
  padding: clamp(56px, 7.5vw, 104px) clamp(20px, 4vw, 48px);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(56% 48% at 50% 64%, rgba(111, 227, 255, 0.12), rgba(111, 227, 255, 0) 72%),
    #0b0d10;
}

.dxd-studio-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.dxd-studio .eyebrow {
  color: #6fe3ff;
}

.dxd-studio h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.dxd-studio-lede {
  margin: 0;
  max-width: 760px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.66);
}

.dxd-studio-wave {
  width: 100%;
  max-width: 880px;
  margin-top: clamp(16px, 3vw, 32px);
}

.dxd-studio-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.dxd-studio-facts {
  width: 100%;
  max-width: 840px;
  margin-top: clamp(14px, 2.6vw, 26px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 40px);
}

.dxd-studio-facts div {
  display: grid;
  gap: 6px;
}

.dxd-studio-facts strong {
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.dxd-studio-facts span {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 860px) {
  .dxd-studio-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .dxd-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dxd-b {
    min-height: 150px;
    padding: 18px;
  }

  .dxd-b-img {
    margin: 12px -18px -18px;
  }

  .dxd-b-photo {
    min-height: 320px;
  }

  .dxd-b-2x2.dxd-b-photo {
    min-height: 420px;
  }

  .dxd-b-photo-inset .dxd-b-img {
    top: 46px;
  }

  .dxd-b-stat {
    font-size: 30px;
  }
}

/* Grouped spec table ---------------------------------------------------------- */
.dxd-specs {
  border-top: 1px solid var(--line);
}

.dxd-spec-group {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(26px, 3.5vw, 40px) 0;
  border-bottom: 1px solid var(--line);
}

.dxd-spec-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.dxd-spec-rows {
  display: grid;
  gap: 16px;
}

.dxd-spec-rows > div {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 18px;
  align-items: baseline;
}

.dxd-spec-rows strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.dxd-spec-rows span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Fine-print footnote under the spec table. */
.dxd-spec-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Scroll reveal — the class is added by JS, so no-JS keeps content visible. */
.dxd-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dxd-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .dxd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Control console ------------------------------------------------------------ */
.dxd-control-panel {
  border-radius: 20px;
  padding: clamp(26px, 4vw, 64px);
  color: #fff;
  background: #07090c;
}

.dxd-control-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.dxd-control-head .eyebrow {
  color: var(--cyan);
}

.dxd-control-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.dxd-control-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.66;
}

.dxd-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.dxd-module {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  overflow: hidden;
  border-radius: 14px;
  background: #101216;
}

.dxd-module img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 0% 50%;
}

.dxd-module figcaption {
  padding: 18px 26px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
}

.dxd-console {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  min-height: 620px;
  overflow: hidden;
  border-radius: 14px;
  background: #0d1014;
}

.dxd-console-media {
  position: relative;
  min-height: 320px;
}

.dxd-console-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}

.dxd-console-body {
  display: grid;
  gap: 16px;
  padding: 24px 30px 32px;
}

.dxd-console-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dxd-console-tabs button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.dxd-console-tabs button.is-active {
  color: #101214;
  border-color: #fff;
  background: #fff;
}

.dxd-console-panels {
  min-height: 132px;
}

.dxd-console-panels h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.2;
}

.dxd-console-panels p {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

/* Scenes: clean photo card with an editorial caption row below. -------------- */
.dxd-scene {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0a0c0f;
}

.dxd-scene img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: 50% 36%;
}

.dxd-scene-note {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  margin-top: 36px;
}

.dxd-scene-note h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.dxd-scene-note > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.66;
}

/* Closing CTA -------------------------------------------------------------------- */
.page-product-detail .box-service-grid {
  padding-top: 0;
}

.dxd-buy-section {
  padding-top: 0;
}

.dxd-buy {
  display: grid;
  justify-items: center;
  border-radius: 20px;
  padding: clamp(52px, 7vw, 96px) clamp(22px, 5vw, 80px);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 130% at 50% -20%, #1d242e 0%, #0a0d11 55%, #06080b 100%);
}

.dxd-buy .eyebrow {
  color: var(--cyan);
}

.dxd-buy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.dxd-buy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.68;
}

.dxd-buy .hero-actions {
  justify-content: center;
}

/* Responsive --------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .dxd-control-grid {
    grid-template-columns: 1fr;
  }

  .dxd-module {
    min-height: 480px;
  }

  .dxd-console {
    min-height: 0;
  }

  .dxd-handheld {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dxd-handheld img {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .dxd-control-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .page-product-detail .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .dxd-hero {
    padding-top: calc(48px + 26px);
  }

  .dxd-hero-media img {
    height: clamp(280px, calc(100svh - 500px), 520px);
  }

  .dxd-localnav {
    top: 10px;
  }

  .dxd-localnav-inner {
    min-height: 50px;
    padding: 6px 6px 6px 16px;
  }

  .dxd-localnav-title {
    font-size: 15px;
  }

  .dxd-hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 22px 22px 32px;
  }

  .dxd-hero-facts div {
    grid-template-columns: minmax(118px, auto) 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .dxd-mosaic {
    grid-template-columns: 1fr;
  }

  .dxd-card,
  .dxd-card-wide {
    grid-column: auto;
    min-height: 520px;
  }

  .dxd-card-wave {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .dxd-card-wave > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: 50% 55%;
  }

  .dxd-card-wave .dxd-card-copy {
    padding-right: 22px;
  }

  .dxd-trio,
  .dxd-trio-4 {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 44px;
  }

  .dxd-color-media {
    aspect-ratio: 1 / 1;
  }

  .dxd-audio-stage > img,
  .dxd-scene img {
    aspect-ratio: 4 / 3;
  }

  .dxd-field {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .dxd-field-points {
    padding-top: 4px;
  }

  .dxd-spec-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dxd-spec-rows > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dxd-x-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dxd-x-flip .dxd-x-media {
    order: 0;
  }

  .dxd-x-media img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .dxd-scene-note {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .dxd-module {
    min-height: 420px;
  }

  .dxd-console-body {
    padding: 20px 22px 26px;
  }
}

@media (max-width: 620px) {
  .dxd-hero-copy {
    padding: 0 16px;
  }

  .dxd-hero-copy h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .dxd-card,
  .dxd-card-wide {
    min-height: 480px;
  }

  .dxd-card-copy {
    padding: 22px;
  }

  .dxd-console-tabs button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .dxd-module figcaption {
    padding: 16px 20px 20px;
  }
}

.solution-matrix {
  display: grid;
  gap: 16px;
}

.solution-row {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.solution-row.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.solution-row.reverse img {
  order: 2;
}

.solution-row img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  background: #f1f3f5;
}

.solution-row div {
  padding: 42px;
}

.store-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.single-store-layout {
  grid-template-columns: 360px 1fr;
}

.commerce-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.commerce-panel h2 {
  font-size: 28px;
}

.region-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--paper);
}

.region-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
}

.region-toggle button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 6px rgba(7, 9, 12, 0.08);
}

/* ==========================================================================
   14. 购买渠道 Buy channels
   ========================================================================== */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.channel-grid.compact {
  grid-template-columns: 1fr;
  margin: 20px 0;
}

.channel-card {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  text-align: left;
}

.channel-card strong {
  display: block;
  font-size: 15px;
}

.channel-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-grid {
  display: grid;
  gap: 16px;
}

.checkout-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.checkout-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  background: #f1f3f5;
}

.checkout-card > div {
  padding: 24px 24px 24px 0;
}

.checkout-card .solid-small {
  margin-top: 22px;
}

/* ==========================================================================
   15. 商城与购买流程 Store & buy flow
   ========================================================================== */
.store-buy-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 112px 36px 80px;
}

.store-buy-page {
  display: grid;
  gap: 42px;
}

.store-buy-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

.store-buy-header h1 {
  margin: 8px 0 10px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
}

.store-buy-header p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.store-buy-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  padding-top: 4px;
}

.store-buy-pills span {
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.store-buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: 56px;
  align-items: start;
}

.store-gallery {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 18px;
}

.store-gallery-card {
  display: grid;
  min-height: min(70vh, 760px);
  border-radius: 8px;
  background: #f5f5f7;
  overflow: hidden;
  place-items: center;
}

.store-gallery-card img {
  width: min(82%, 760px);
  max-height: 680px;
  object-fit: contain;
}

.store-gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  color: var(--muted);
}

.store-gallery-info {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.store-gallery-info .award-row {
  margin-top: 0;
}

.store-gallery-copy p {
  max-width: 760px;
  margin: 0;
  line-height: 1.65;
}

.store-gallery-copy .text-link {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}

.store-configurator-panel {
  display: grid;
  gap: 34px;
  padding: 0;
}

.store-step {
  display: grid;
  gap: 16px;
}

.store-step h2,
.store-order-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

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

.store-option-card,
.store-select-card,
.store-quantity-card,
.store-order-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.store-option-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
}

.store-option-card img {
  width: 64px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f7;
}

.store-option-card.is-selected,
.purchase-channel.is-active,
.store-select-card:focus-within,
.store-quantity-card:focus-within,
.checkout-fields:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.store-option-card strong,
.store-option-card small,
.store-option-card em {
  display: block;
}

.store-option-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.store-option-card em {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 13px;
  text-align: right;
}

.store-select-card,
.store-quantity-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.store-order-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #f5f5f7;
}

.store-order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(12, 16, 22, 0.1);
}

.store-order-summary .store-order-product {
  align-items: center;
  justify-content: flex-start;
  border-top: 0;
  padding-top: 0;
}

.store-order-product img {
  width: 72px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.store-order-summary span,
.store-order-summary small {
  color: var(--muted);
}

.store-order-summary .secondary-button {
  justify-content: center;
}

.store-payment-panel {
  max-width: 620px;
  margin-left: auto;
}

.store-config-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-product-preview {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 34px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.store-product-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
  background: #f1f3f5;
}

.store-product-preview h2 {
  margin-top: 0;
}

.store-price {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.store-price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.purchase-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.purchase-form label:not(.purchase-channel) {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.purchase-form select,
.purchase-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  box-sizing: border-box;
}

.purchase-form label.is-invalid input,
.purchase-form input[aria-invalid="true"] {
  border-color: #d92d20;
  box-shadow: 0 0 0 1px rgba(217, 45, 32, 0.18);
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px 18px;
}

.checkout-fields-title {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-fields .wide {
  grid-column: 1 / -1;
}

.checkout-invoice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 8px;
  background: #f7f8fa;
}

.checkout-invoice > strong,
.checkout-invoice .wide,
.company-lookup-panel {
  grid-column: 1 / -1;
}

.checkout-invoice .checkbox-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.checkout-invoice .checkbox-row input {
  width: auto;
  min-height: 0;
}

.address-assist {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 8px;
  background: #f5f5f7;
}

.address-assist strong {
  color: var(--ink);
}

.address-assist span,
.address-assist small {
  color: var(--muted);
  font-size: 13px;
}

.address-lookup-panel {
  display: grid;
  gap: 10px;
}

.address-lookup-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--blue);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.address-lookup-button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.address-lookup-button:hover,
.address-lookup-button:focus-visible {
  border-color: var(--blue);
  outline: none;
}

.address-lookup-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  color: currentColor;
}

.address-lookup-icon::before,
.address-lookup-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.address-lookup-icon::before {
  inset: 1px 4px 6px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.address-lookup-icon::after {
  left: 7px;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.address-lookup-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.address-lookup-message[data-status="error"] {
  color: #b42318;
}

.address-candidate-list {
  display: grid;
  gap: 8px;
}

.address-candidate {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(12, 16, 22, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.address-candidate:hover,
.address-candidate:focus-visible {
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.24);
  outline: none;
}

.address-candidate span {
  color: var(--muted);
  font-size: 13px;
}

.address-candidate em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.payment-summary,
.payment-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.payment-summary {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.payment-summary span,
.payment-summary small {
  color: var(--muted);
  font-size: 13px;
}

.payment-panel {
  display: grid;
  gap: 16px;
  margin: 0 26px 26px;
  padding: 22px;
}

.payment-panel h3,
.payment-panel p {
  margin: 0;
}

.payment-method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-method-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.stripe-form {
  display: grid;
  gap: 16px;
}

.purchase-channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.purchase-channel {
  display: flex;
  gap: 12px;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  cursor: pointer;
}

.purchase-channel.is-active {
  border-color: rgba(225, 38, 28, 0.5);
  background: rgba(225, 38, 28, 0.055);
}

.purchase-channel input {
  margin-top: 4px;
}

.purchase-channel strong,
.purchase-channel small {
  display: block;
}

.purchase-channel small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dark-primary {
  color: #fff;
  background: var(--ink);
}

.dark-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.purchase-note {
  margin: 0;
  font-size: 14px;
}

.account-list small a {
  margin-left: 8px;
  color: var(--blue);
  font-weight: 600;
}

.account-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

/* ==========================================================================
   16. 账户卡片与登录 Account cards & sign-in
   ========================================================================== */
.account-card,
.support-grid article,
.company-grid article,
.brand-values article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.account-card {
  min-height: 520px;
}

.account-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.account-methods div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.account-methods h3,
.support-grid h3,
.company-grid h3 {
  margin: 0;
  font-size: 20px;
}

.account-methods p,
.support-grid p,
.company-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 700;
}

.company-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 46px;
  align-items: start;
}

.company-grid {
  display: grid;
  gap: 16px;
}

.company-grid strong {
  color: var(--ink);
}

.brand-values {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-values article {
  min-height: 260px;
}

.brand-values span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--red);
  font-weight: 700;
}

/* ==========================================================================
   17. 页脚 Footer
   ========================================================================== */
.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 30px 0 28px;
}

.footer-notes {
  display: grid;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.footer-notes p,
.footer-shopping,
.legal,
.footer-record {
  margin: 0;
  color: #6d747d;
  font-size: 13px;
  line-height: 1.62;
}

.footer-note-number {
  display: inline-block;
  min-width: 20px;
  margin-right: 6px;
  color: #3e4650;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   18. 信息与法务页 Info & legal pages
   ========================================================================== */
.info-main {
  background: #fff;
}

.info-hero {
  padding: 150px 22px 76px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
}

.info-hero-inner,
.info-section-inner {
  width: min(100% - 44px, 980px);
  margin: 0 auto;
}

.info-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.info-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
}

.info-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.info-section {
  padding: 72px 22px;
  border-bottom: 1px solid var(--line);
}

.info-section h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfbfd;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.info-card p,
.info-section p,
.info-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.download-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.download-resource-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfbfd;
}

.download-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.download-resource-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.download-resource-card p {
  margin: 0;
}

.download-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.download-meta div {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr;
  gap: 12px;
  align-items: baseline;
}

.download-meta dt {
  color: var(--muted);
  font-size: 13px;
}

.download-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.download-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: var(--blue);
}

.download-button:hover,
.download-button:focus-visible {
  background: #005bbf;
  border-color: #005bbf;
}

.download-button-secondary {
  color: var(--blue);
  background: #fff;
}

.download-button-secondary:hover,
.download-button-secondary:focus-visible {
  color: #fff;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-actions-center {
  justify-content: center;
}

.info-link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-link-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
}

.info-link-list a:hover,
.info-link-list a:focus-visible {
  color: var(--blue);
  border-color: rgba(0, 113, 227, 0.35);
}

.address-map-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -2px;
}

.address-map-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--blue);
  text-decoration: none;
  background: #fff;
}

.address-map-links a:hover,
.address-map-links a:focus-visible {
  border-color: var(--blue);
  outline: none;
}

.contact-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  text-decoration: underline;
}

.contact-page-section {
  padding-bottom: 92px;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 96px;
}

.contact-method {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.contact-method h2 {
  margin-bottom: 16px;
}

.contact-method p {
  max-width: 520px;
  margin: 0 0 14px;
}

.contact-method ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.contact-method a {
  color: var(--blue);
  text-decoration: none;
}

.contact-method a:hover,
.contact-method a:focus-visible {
  text-decoration: underline;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  padding: 28px 0 42px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #22262b;
  font-size: 14px;
  font-weight: 700;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column-section + .footer-column-section {
  margin-top: 26px;
}

.footer-column a,
.footer-column button,
.footer-shopping a,
.footer-legal-links a {
  color: #505862;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.footer-column a,
.footer-column button {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover,
.footer-shopping a:hover,
.footer-legal-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-shopping {
  padding: 0 0 28px;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-legal-links a {
  color: #424a55;
  font-size: 13px;
  line-height: 1.62;
}

.footer-legal-links a + a::before {
  content: "|";
  margin: 0 11px;
  color: #9aa2ad;
}

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

.footer-region {
  min-height: auto;
  border: 0;
  padding: 0;
  color: #424a55;
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1.62;
  text-align: right;
}

.footer-region:hover,
.footer-region:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  outline: none;
}

[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .footer-inner {
  padding-top: 32px;
}

[dir="rtl"] .footer-notes {
  gap: 8px;
  padding-bottom: 24px;
}

[dir="rtl"] .footer-notes p,
[dir="rtl"] .footer-shopping,
[dir="rtl"] .legal,
[dir="rtl"] .footer-record {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.65;
  text-align: right;
  unicode-bidi: plaintext;
}

[dir="rtl"] .footer-note-number {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .footer-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding: 30px 0 52px;
}

[dir="rtl"] .footer-column h2 {
  margin-bottom: 13px;
  font-size: 13px;
  text-align: right;
}

[dir="rtl"] .footer-column ul {
  gap: 11px;
}

[dir="rtl"] .footer-column a,
[dir="rtl"] .footer-column button,
[dir="rtl"] .footer-shopping a,
[dir="rtl"] .footer-legal-links a {
  color: #515761;
  text-align: right;
  unicode-bidi: plaintext;
}

[dir="rtl"] .footer-column a,
[dir="rtl"] .footer-column button {
  justify-content: flex-start;
}

[dir="rtl"] .footer-column a span[dir="ltr"] {
  unicode-bidi: isolate;
}

[dir="rtl"] .footer-shopping {
  padding-bottom: 30px;
}

[dir="rtl"] .footer-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px 22px;
  align-items: start;
}

[dir="rtl"] .footer-region {
  grid-column: 3;
  justify-self: start;
  color: #515761;
  text-align: left;
}

[dir="rtl"] .footer-legal-links {
  grid-column: 2;
  justify-content: center;
}

[dir="rtl"] .legal {
  grid-column: 1;
  justify-self: end;
}

[dir="rtl"] .footer-legal-links a {
  font-size: 12px;
}

[dir="rtl"] .footer-legal-links a + a::before {
  margin: 0 10px;
}

[dir="rtl"] .footer-record {
  grid-column: 1 / -1;
}

@media (max-width: 860px) {
  [dir="rtl"] .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 46px;
  }

  [dir="rtl"] .footer-bottom {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .footer-region,
  [dir="rtl"] .footer-legal-links,
  [dir="rtl"] .legal {
    grid-column: 1;
  }

  [dir="rtl"] .footer-legal-links {
    justify-content: flex-start;
  }

  [dir="rtl"] .legal {
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  [dir="rtl"] .footer-directory {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 34px;
  }

  [dir="rtl"] .footer-column-section + .footer-column-section {
    margin-top: 24px;
  }

  [dir="rtl"] .footer-legal-links {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  [dir="rtl"] .footer-legal-links a + a::before {
    content: none;
  }
}

/* ==========================================================================
   19. 购买抽屉与弹窗 Buy drawer & modals
   ========================================================================== */
.buy-drawer,
.account-modal {
  background: #fff;
  border-radius: 8px;
}

.buy-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 170;
  width: min(100%, 440px);
  height: 100dvh;
  padding: 32px;
  transform: translateX(104%);
  transition: transform 220ms ease;
  box-shadow: -26px 0 70px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.buy-drawer.is-open {
  transform: translateX(0);
}

.buy-drawer h2 {
  margin: 0;
  font-size: 34px;
}

.buy-drawer p {
  color: var(--muted);
  line-height: 1.7;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(4, 7, 11, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.drawer-backdrop.is-open,
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close,
.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.drawer-close {
  float: right;
}

.drawer-close::before,
.drawer-close::after,
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 19px;
  height: 2px;
  background: var(--ink);
}

.drawer-close::before,
.modal-close::before {
  transform: rotate(45deg);
}

.drawer-close::after,
.modal-close::after {
  transform: rotate(-45deg);
}

.modal-backdrop {
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 22px;
}

.account-modal {
  width: min(100%, 520px);
  padding: 28px;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  transition: transform 180ms ease;
}

.account-modal-wide {
  width: min(100%, 880px);
}

.modal-backdrop.is-open .account-modal {
  transform: translateY(0);
}

.modal-close {
  float: right;
}

.account-modal h2 {
  margin: 0;
  font-size: 34px;
}

.account-modal p {
  color: var(--muted);
  line-height: 1.7;
}

.account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.account-head p {
  margin: 8px 0 0;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f6f8;
}

.account-tabs-dashboard {
  grid-template-columns: repeat(5, 1fr);
}

.account-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 600;
}

.account-tabs button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(12, 16, 22, 0.08);
}

.account-auth-form,
.account-form-grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.account-form-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  margin-bottom: 18px;
}

.account-form-grid .wide {
  grid-column: 1 / -1;
}

/* ==========================================================================
   20. 验证与表单字段 Verification & form fields
   ========================================================================== */
.verification-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.verification-phone-fields,
.verification-actions {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.verification-actions {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.verification-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.verification-buttons .secondary-button {
  width: 100%;
  min-height: 48px;
  min-width: 0;
  max-width: 100%;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.25;
  white-space: normal;
}

.verification-buttons .secondary-button:not(.dark-secondary) {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.verification-actions input:disabled {
  background: #eef7f2;
  border-color: rgba(18, 168, 105, 0.36);
  color: #0f5132;
  opacity: 1;
}

.verification-actions small {
  min-height: 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.verification-actions small.is-info {
  color: #667085;
}

.verification-actions small.is-success {
  color: #0f8f5f;
}

.verification-actions small.is-error {
  color: #c72a20;
}

@media (min-width: 900px) {
  .verification-group {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: start;
  }

  .verification-group-phone {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  }

  .verification-phone-fields {
    grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr);
    align-items: end;
  }

  .verification-actions {
    grid-template-columns: minmax(118px, 0.58fr) minmax(210px, 0.9fr);
  }

  .verification-actions small {
    grid-column: 1 / -1;
  }

  .verification-buttons {
    grid-template-columns: minmax(0, 1fr);
  }

  .verification-buttons .secondary-button {
    white-space: nowrap;
  }
}

/* ==========================================================================
   21. 人机验证弹窗 Captcha modal
   ========================================================================== */
.captcha-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 7, 11, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.captcha-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.captcha-modal {
  width: min(100%, 420px);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.captcha-modal-backdrop.is-open .captcha-modal {
  transform: translateY(0);
}

.captcha-modal h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.captcha-modal p {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.captcha-modal .verification-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.captcha-modal .verification-captcha label {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.captcha-modal .verification-captcha input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.verification-captcha-image {
  min-height: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.verification-captcha-image svg {
  display: block;
  width: 100%;
  height: 64px;
}

.captcha-modal-message {
  display: block;
  min-height: 20px;
  margin: 10px 0 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.account-verification-section {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.account-verification-section > div {
  display: grid;
  gap: 6px;
}

.account-verification-section strong {
  color: var(--ink);
}

.account-verification-section span,
.account-verification-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-auth-form label,
.account-form-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.account-auth-form input,
.account-auth-form select,
.account-form-grid input,
.account-form-grid select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
}

.account-auth-form input:disabled,
.account-auth-form select:disabled,
.account-form-grid input:disabled,
.account-form-grid select:disabled,
.secondary-button:disabled,
.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.username-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.username-input-shell {
  position: relative;
  display: block;
  min-width: 0;
}

.username-input-shell input {
  padding-right: 46px;
}

.username-status-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  display: none;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  transform: translateY(-50%);
}

.username-field small {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.username-field[data-username-status="valid"] input {
  border-color: rgba(18, 168, 105, 0.58);
}

.username-field[data-username-status="valid"] small {
  color: #0f8f5f;
}

.username-field[data-username-status="valid"] .username-status-icon {
  display: grid;
  background: #12a869;
}

.username-field[data-username-status="valid"] .username-status-icon::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

.username-field[data-username-status="error"] input {
  border-color: rgba(217, 45, 32, 0.64);
}

.username-field[data-username-status="error"] small {
  color: #c72a20;
}

.username-field[data-username-status="error"] .username-status-icon {
  display: grid;
  background: #d92d20;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.username-field[data-username-status="error"] .username-status-icon::before {
  content: "!";
}

.username-field[data-username-status="checking"] .username-status-icon {
  display: grid;
  border: 2px solid rgba(102, 112, 133, 0.34);
  border-top-color: #475467;
  animation: username-status-spin 780ms linear infinite;
}

@keyframes username-status-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.account-message {
  width: fit-content;
  max-width: min(100%, 460px);
  margin: 14px 0 0;
  border: 1px solid rgba(102, 112, 133, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  color: #344054;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  animation: account-message-in 180ms ease both, account-message-out 240ms ease 2.6s forwards;
}

.account-message::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #667085;
  vertical-align: 1px;
}

.account-message-success {
  border-color: rgba(5, 150, 105, 0.18);
  color: #027a48;
}

.account-message-success::before {
  background: #12b76a;
}

.account-message-error {
  border-color: rgba(225, 38, 28, 0.18);
  color: #b42318;
}

.account-message-error::before {
  background: #e1261c;
}

.account-page-panel-signedin {
  position: relative;
}

.account-page-panel-signedin .account-message {
  position: fixed;
  top: 90px;
  right: max(24px, calc((100vw - 1240px) / 2));
  z-index: 60;
  margin: 0;
}

@keyframes account-message-in {
  from {
    opacity: 0;
    translate: 0 -8px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes account-message-out {
  to {
    opacity: 0;
    translate: 0 -8px;
    pointer-events: none;
  }
}

.account-oauth-note,
.empty-state {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-list article {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8f9fb;
}

.account-list strong {
  color: var(--ink);
}

.account-list span,
.account-list small {
  color: var(--muted);
}

.account-list-compact article {
  background: #fff;
}

.page-account {
  background: #f5f5f7;
}

/* ==========================================================================
   22. 账户中心页 Account dashboard page
   ========================================================================== */
.account-page {
  min-height: 100vh;
  padding: 118px 18px 72px;
}

.account-auth-subnav {
  width: min(100%, 1240px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -40px auto 0;
  border-bottom: 1px solid rgba(190, 199, 210, 0.72);
  color: var(--ink);
}

.account-auth-subnav a {
  color: inherit;
  text-decoration: none;
}

.account-auth-brand {
  font-size: 28px;
  font-weight: 800;
}

.account-auth-subnav div {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1d2939;
  font-size: 15px;
  font-weight: 700;
}

.account-auth-subnav a:hover,
.account-auth-subnav a:focus-visible,
.account-auth-subnav a.is-active {
  color: var(--cta);
}

.account-login-page,
.account-register-page {
  width: min(100%, 640px);
  min-height: calc(100vh - 250px);
  display: grid;
  align-content: start;
  justify-items: center;
  margin: 0 auto;
  padding: 78px 0 32px;
  text-align: center;
}

.account-register-page {
  width: min(100%, 760px);
}

.account-login-symbol {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
}

.account-login-symbol span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 4%, #35b8e8 0 4px, transparent 5px),
    radial-gradient(circle at 72% 12%, #4b88f0 0 5px, transparent 6px),
    radial-gradient(circle at 89% 36%, #7c5cf4 0 6px, transparent 7px),
    radial-gradient(circle at 83% 66%, #c026d3 0 6px, transparent 7px),
    radial-gradient(circle at 58% 86%, #ec4899 0 6px, transparent 7px),
    radial-gradient(circle at 30% 82%, #fb7185 0 6px, transparent 7px),
    radial-gradient(circle at 10% 58%, #fb7185 0 5px, transparent 6px),
    radial-gradient(circle at 13% 30%, #fb923c 0 5px, transparent 6px),
    radial-gradient(circle at 34% 10%, #d6bd74 0 5px, transparent 6px),
    conic-gradient(from 12deg, #35b8e8, #4b88f0, #7c5cf4, #c026d3, #ec4899, #fb7185, #fb923c, #d6bd74, #35b8e8);
  -webkit-mask: radial-gradient(circle, transparent 0 54px, #000 55px 78px, transparent 79px);
  mask: radial-gradient(circle, transparent 0 54px, #000 55px 78px, transparent 79px);
}

.account-login-symbol img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.account-login-page h1 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.account-login-page > p {
  margin: 16px 0 34px;
  color: #1d2939;
  font-size: 22px;
  line-height: 1.4;
}

.account-login-step-form {
  width: min(100%, 560px);
  display: grid;
  gap: 18px;
  text-align: left;
}

.account-large-field {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 1px solid rgba(102, 112, 133, 0.86);
  border-radius: 14px;
  padding: 10px 20px;
  background: #fff;
}

.account-large-field:focus-within {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.14);
}

.account-large-field span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.account-large-field input {
  width: 100%;
  min-height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #1d1d1f;
  font-size: 24px;
  outline: 0;
}

.account-large-field-readonly {
  background: #f8fafc;
}

.account-login-privacy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 8px;
  color: #4d5662;
  font-size: 15px;
  line-height: 1.48;
}

.account-login-privacy p {
  margin: 0;
}

.account-login-note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.account-login-note-error {
  color: #b42318;
}

.account-login-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.account-login-actions .primary-button,
.account-login-actions .secondary-button {
  min-height: 54px;
  border-radius: 12px;
  font-size: 18px;
}

.account-dark-button {
  border-color: transparent;
  background: #1d1d1f;
  color: #fff;
}

.account-login-back {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cta);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.account-register-panel {
  width: 100%;
  border: 1px solid rgba(214, 218, 224, 0.78);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.account-page-hero {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 42px 0 76px;
  text-align: center;
}

.account-orbit {
  width: min(100%, 420px);
  height: 210px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 62%, rgba(225, 38, 28, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfbfd 0%, #f1f3f6 100%);
  box-shadow:
    0 32px 80px rgba(20, 26, 36, 0.12),
    inset 0 0 0 1px rgba(20, 26, 36, 0.06);
  overflow: hidden;
}

.account-orbit::before,
.account-orbit::after,
.account-visual-panel,
.account-visual-card,
.account-visual-card span,
.account-visual-signal,
.account-visual-status {
  content: "";
  position: absolute;
  pointer-events: none;
}

.account-orbit::before {
  width: 320px;
  height: 320px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -42%);
  filter: blur(2px);
}

.account-orbit::after {
  left: 58px;
  right: 58px;
  bottom: 24px;
  height: 14px;
  border-radius: 999px;
  background: rgba(20, 26, 36, 0.08);
  filter: blur(14px);
}

.account-visual-panel {
  width: 230px;
  height: 138px;
  left: 50%;
  top: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 253, 0.86)),
    #fff;
  box-shadow:
    0 24px 54px rgba(20, 26, 36, 0.14),
    inset 0 0 0 1px rgba(20, 26, 36, 0.07);
  transform: translateX(-50%);
}

.account-visual-panel::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  height: 8px;
  border-radius: 999px;
  background: #eef1f5;
  box-shadow:
    0 24px 0 #f2f4f7,
    0 48px 0 #f2f4f7;
}

.account-visual-card {
  width: 116px;
  height: 82px;
  top: 76px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 34px rgba(20, 26, 36, 0.12),
    inset 0 0 0 1px rgba(20, 26, 36, 0.06);
}

.account-visual-card-left {
  left: 30px;
  transform: rotate(-4deg);
}

.account-visual-card-right {
  right: 30px;
  transform: rotate(4deg);
}

.account-visual-card span {
  left: 18px;
  height: 7px;
  border-radius: 999px;
  background: #e8ebf0;
}

.account-visual-card span:nth-child(1) {
  top: 20px;
  width: 34px;
  background: rgba(225, 38, 28, 0.18);
}

.account-visual-card span:nth-child(2) {
  top: 38px;
  width: 72px;
}

.account-visual-card span:nth-child(3) {
  top: 56px;
  width: 54px;
}

.account-visual-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(225, 38, 28, 0.1);
}

.account-visual-signal-one {
  left: 128px;
  top: 48px;
}

.account-visual-signal-two {
  right: 126px;
  bottom: 52px;
}

.account-visual-status {
  width: 54px;
  height: 20px;
  right: 88px;
  top: 42px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(225, 38, 28, 0.22), rgba(225, 38, 28, 0.08)),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(225, 38, 28, 0.14);
}

.account-orbit-center {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  top: 64px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 18px 38px rgba(18, 24, 32, 0.13),
    inset 0 0 0 1px rgba(20, 26, 36, 0.07);
  transform: translateX(-50%);
  z-index: 2;
}

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

.account-page-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.account-page-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.account-page-hero h1 span {
  display: inline;
}

.account-page-lede {
  max-width: 680px;
  margin: 24px auto 0;
  color: #555d68;
  font-size: 22px;
  line-height: 1.45;
}

.account-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.account-blue-button {
  min-height: 44px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
}

.account-light-button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 113, 227, 0.35);
  background: transparent;
  color: var(--cta);
}

.account-page-cards {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.account-page-cards article {
  min-height: 250px;
  border: 1px solid rgba(214, 218, 224, 0.78);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.account-page-cards h2 {
  margin: 28px 0 10px;
  font-size: 27px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.account-page-cards p {
  margin: 0;
  color: #4d5662;
  font-size: 17px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.account-page-icon {
  width: 36px;
  height: 36px;
  display: block;
  color: var(--cta);
  background: currentColor;
}

.account-page-icon-control {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M8 5v26M18 5v26M28 5v26'/%3E%3Ccircle cx='8' cy='13' r='3.4'/%3E%3Ccircle cx='18' cy='23' r='3.4'/%3E%3Ccircle cx='28' cy='16' r='3.4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M8 5v26M18 5v26M28 5v26'/%3E%3Ccircle cx='8' cy='13' r='3.4'/%3E%3Ccircle cx='18' cy='23' r='3.4'/%3E%3Ccircle cx='28' cy='16' r='3.4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-person {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='11.5' r='5.3'/%3E%3Cpath d='M8 30c1.4-6.4 4.7-9.6 10-9.6s8.6 3.2 10 9.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='11.5' r='5.3'/%3E%3Cpath d='M8 30c1.4-6.4 4.7-9.6 10-9.6s8.6 3.2 10 9.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-contact {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5.5' y='8' width='18' height='14' rx='2.5'/%3E%3Cpath d='m7 10 7.5 6 7.5-6M24.5 15.5c2.9 1.2 4.9 3.9 5.5 7.2l.4 2.4c.2 1.1-.6 2.1-1.7 2.1h-3.2c-.8 0-1.5-.5-1.7-1.3l-.6-2.2c-.2-.8.1-1.6.8-2l1.3-.8c-.7-1.2-1.7-2.2-2.9-2.9l-.8 1.3c-.4.7-1.2 1-2 .8l-2.2-.6c-.8-.2-1.3-.9-1.3-1.7v-2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5.5' y='8' width='18' height='14' rx='2.5'/%3E%3Cpath d='m7 10 7.5 6 7.5-6M24.5 15.5c2.9 1.2 4.9 3.9 5.5 7.2l.4 2.4c.2 1.1-.6 2.1-1.7 2.1h-3.2c-.8 0-1.5-.5-1.7-1.3l-.6-2.2c-.2-.8.1-1.6.8-2l1.3-.8c-.7-1.2-1.7-2.2-2.9-2.9l-.8 1.3c-.4.7-1.2 1-2 .8l-2.2-.6c-.8-.2-1.3-.9-1.3-1.7v-2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-security {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 4 8 8v8c0 6.5 4.1 12.4 10 15 5.9-2.6 10-8.5 10-15V8L18 4Z'/%3E%3Cpath d='m13.5 18 3.1 3.1 6-6.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 4 8 8v8c0 6.5 4.1 12.4 10 15 5.9-2.6 10-8.5 10-15V8L18 4Z'/%3E%3Cpath d='m13.5 18 3.1 3.1 6-6.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-service {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 7h18v22H9z'/%3E%3Cpath d='M14 13h8M14 19h8M14 25h5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 7h18v22H9z'/%3E%3Cpath d='M14 13h8M14 19h8M14 25h5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-payment {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='9' width='26' height='18' rx='3'/%3E%3Cpath d='M5 15h26M10 22h7'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='9' width='26' height='18' rx='3'/%3E%3Cpath d='M5 15h26M10 22h7'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-subscription {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='18' r='11'/%3E%3Cpath d='M18 7v5M18 24v5M7 18h5M24 18h5M10.2 10.2l3.5 3.5M22.3 22.3l3.5 3.5M25.8 10.2l-3.5 3.5M13.7 22.3l-3.5 3.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='18' r='11'/%3E%3Cpath d='M18 7v5M18 24v5M7 18h5M24 18h5M10.2 10.2l3.5 3.5M22.3 22.3l3.5 3.5M25.8 10.2l-3.5 3.5M13.7 22.3l-3.5 3.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-family {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='14' cy='13' r='5'/%3E%3Ccircle cx='25' cy='15' r='3.5'/%3E%3Cpath d='M5 29c1.3-5.4 4.3-8 9-8s7.7 2.6 9 8M21 25c1.1-2 2.7-3 5-3 2.7 0 4.5 1.4 5.5 4.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='14' cy='13' r='5'/%3E%3Ccircle cx='25' cy='15' r='3.5'/%3E%3Cpath d='M5 29c1.3-5.4 4.3-8 9-8s7.7 2.6 9 8M21 25c1.1-2 2.7-3 5-3 2.7 0 4.5 1.4 5.5 4.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-calendar {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='8' width='22' height='21' rx='3'/%3E%3Cpath d='M12 5v6M24 5v6M7 15h22M13 20h2M18 20h2M23 20h2M13 25h2M18 25h2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='8' width='22' height='21' rx='3'/%3E%3Cpath d='M12 5v6M24 5v6M7 15h22M13 20h2M18 20h2M23 20h2M13 25h2M18 25h2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-region {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='18' r='12'/%3E%3Cpath d='M6 18h24M18 6c4 3.4 6 7.4 6 12s-2 8.6-6 12M18 6c-4 3.4-6 7.4-6 12s2 8.6 6 12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='18' r='12'/%3E%3Cpath d='M6 18h24M18 6c4 3.4 6 7.4 6 12s-2 8.6-6 12M18 6c-4 3.4-6 7.4-6 12s2 8.6 6 12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-language,
.account-page-icon-app {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='6' width='20' height='24' rx='2'/%3E%3Cpath d='M13 13h10M13 19h10M13 25h6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='6' width='20' height='24' rx='2'/%3E%3Cpath d='M13 13h10M13 19h10M13 25h6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-icon-mail {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='9' width='24' height='18' rx='3'/%3E%3Cpath d='m8 12 10 8 10-8'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='9' width='24' height='18' rx='3'/%3E%3Cpath d='m8 12 10 8 10-8'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-page-panel {
  width: min(100%, 980px);
  margin: 24px auto 0;
  border: 1px solid rgba(214, 218, 224, 0.78);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.account-security-band {
  width: min(100%, 980px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(214, 218, 224, 0.78);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.account-security-band h2 {
  margin: 18px 0 10px;
  font-size: 30px;
  line-height: 1.16;
}

.account-security-band p {
  margin: 0;
  color: #4d5662;
  line-height: 1.65;
}

.account-security-band > p {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.account-security-band ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-security-band li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fafc;
  font-weight: 700;
}

.account-page-panel h2 {
  margin: 0;
  font-size: 34px;
}

.account-page-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.account-page-panel-signedin {
  width: min(100%, 980px);
  border: 0;
  padding: 0;
  background: transparent;
}

.account-page-dashboard .account-panel {
  margin-top: 18px;
}

.account-center-shell {
  --account-grid-gap: 12px;
  --account-card-min-height: 112px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.account-center-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.account-identity {
  display: grid;
  gap: 8px;
}

.account-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.48) 31%, transparent 32%),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 46%),
    #eef6ff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -16px 28px rgba(15, 23, 42, 0.06),
    0 10px 24px rgba(15, 23, 42, 0.08);
  color: var(--account-avatar-ink, var(--ink));
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.account-avatar:has(img) {
  background: #eef1f5;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.account-avatar-button {
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.account-avatar-button:hover {
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
  transform: translateY(-1px);
}

.account-avatar-button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 4px;
}

.account-identity strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.account-identity small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.account-center-nav {
  display: grid;
  gap: 7px;
}

.account-center-nav button,
.account-sidebar-logout {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
}

.account-center-nav button {
  cursor: pointer;
}

.account-center-nav button.is-active {
  color: var(--cta);
  font-weight: 800;
}

.account-sidebar-logout {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--cta);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.account-center-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.account-section-head {
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.account-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.account-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.account-section-head span {
  max-width: 620px;
  color: #303846;
  font-size: 14px;
  line-height: 1.5;
}

.account-card-grid,
.account-device-grid,
.account-split-grid {
  display: grid;
  gap: var(--account-grid-gap);
}

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

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

.account-info-card,
.account-device-card,
.account-management-form {
  min-width: 0;
  border: 1px solid rgba(214, 218, 224, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(20, 26, 36, 0.06);
}

.account-info-card {
  min-height: var(--account-card-min-height);
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px 52px 16px 16px;
  color: inherit;
  font: inherit;
  text-align: left;
}

button.account-info-card {
  appearance: none;
  cursor: pointer;
}

button.account-info-card:hover,
.account-device-card:hover {
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 16px 42px rgba(20, 26, 36, 0.08);
}

.account-info-card .account-page-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
}

.account-info-card h3,
.account-management-form h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.account-info-card p,
.account-management-form p,
.account-management-form small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.account-card-action {
  display: inline-block;
  margin-top: 8px;
  color: var(--cta);
  font-weight: 800;
}

.account-detail-message {
  color: #059669;
  font-weight: 800;
  grid-column: 1 / -1;
  text-align: center;
}

.account-detail-message[data-status="error"] {
  color: #dc2626;
}

.account-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.account-password-form {
  gap: 12px;
}

.account-password-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  border: 1px solid rgba(214, 218, 224, 0.86);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.account-password-step > small {
  grid-row: 1 / span 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.1);
  color: var(--cta);
  font-weight: 900;
}

.account-password-step h4,
.account-password-step p,
.account-password-step .verification-group,
.account-password-step details,
.account-password-field-grid {
  grid-column: 2;
}

.account-password-step h4 {
  margin: 0;
  font-size: 16px;
}

.account-password-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-password-form label {
  gap: 5px;
}

.account-password-form input {
  min-height: 40px;
  padding: 8px 10px;
}

.account-password-field-grid label:first-child {
  grid-column: 1 / -1;
}

.account-password-verification-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  justify-items: stretch;
}

.account-password-verification-group label {
  width: 100%;
  justify-self: stretch;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
}

.account-password-verification-group label strong {
  min-height: 40px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.account-password-alt-verification {
  color: var(--muted);
}

.account-password-alt-verification summary {
  width: fit-content;
  color: var(--cta);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.account-password-alt-verification .verification-group {
  margin-top: 10px;
}

.account-password-alt-verification:not([open]) .verification-group {
  display: none;
}

.account-management-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.account-management-form > .account-form-grid,
.account-management-form.account-form-grid {
  margin-bottom: 0;
}

.account-management-form.account-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px 20px;
}

.account-management-form.account-form-grid h3 {
  grid-column: 1 / -1;
}

.account-management-form.account-form-grid > .username-field,
.account-management-form.account-form-grid > label {
  align-self: start;
}

.account-management-form.account-form-grid > button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 180px;
}

.account-security-forms {
  display: grid;
  gap: 18px;
}

.account-single-grid,
.account-full-span {
  grid-column: 1 / -1;
}

.account-family-member-card .account-avatar {
  width: 58px;
  height: 58px;
  font-size: 23px;
}

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

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

.account-device-overview-grid {
  margin-bottom: 4px;
}

.account-device-empty {
  min-height: 172px;
  place-items: start;
}

.account-device-empty .account-page-icon {
  width: 30px;
  height: 30px;
}

.account-device-empty button {
  justify-self: start;
}

.account-device-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-content: start;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.account-device-card .account-page-icon {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.account-device-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.account-device-card small,
.account-device-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.account-muted-value {
  color: var(--muted);
}

.account-device-backdrop {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(15, 18, 24, 0.22);
  backdrop-filter: blur(8px);
}

.account-device-drawer {
  position: fixed;
  top: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 206;
  width: min(560px, calc(100vw - 44px));
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(10, 15, 24, 0.22);
  overflow: auto;
}

.account-device-drawer .account-page-icon {
  margin: 0 auto;
}

.account-device-drawer h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  text-align: center;
}

.account-device-drawer > p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.account-device-drawer dl {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.account-device-drawer-section {
  display: grid;
  gap: 10px;
}

.account-device-drawer-section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.account-device-drawer dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.account-device-drawer dt {
  color: var(--muted);
  font-weight: 800;
}

.account-device-drawer dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.account-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 208;
  background: rgba(236, 238, 243, 0.76);
  backdrop-filter: blur(10px);
}

.account-detail-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 209;
  width: min(720px, calc(100vw - 40px));
  max-height: min(820px, calc(100vh - 40px));
  display: grid;
  gap: 18px;
  padding: 34px 38px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(10, 15, 24, 0.22);
  overflow: auto;
  transform: translate(-50%, -50%);
}

.account-detail-dialog:has(.account-avatar-form) {
  width: min(1040px, calc(100vw - 40px));
}

.account-detail-dialog:has(.account-password-form) {
  width: min(700px, calc(100vw - 40px));
  gap: 12px;
  padding: 22px 30px;
}

.account-detail-dialog:has(.account-password-form) h3 {
  font-size: 26px;
}

.account-detail-dialog:has(.account-password-form) .account-detail-body {
  max-width: 560px;
  font-size: 13px;
  line-height: 1.4;
}

.account-detail-dialog:has(.account-single-field-form) {
  width: min(760px, calc(100vw - 40px));
}

.account-detail-dialog:has(.account-name-form) {
  width: min(780px, calc(100vw - 40px));
  min-height: min(620px, calc(100vh - 40px));
  align-content: start;
}

.account-detail-dialog > .account-page-icon {
  margin: 0 auto;
}

.account-detail-dialog h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.12;
  text-align: center;
}

.account-detail-dialog h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.account-detail-lede,
.account-detail-body {
  margin: 0;
  text-align: center;
}

.account-detail-lede {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.account-detail-body {
  max-width: 520px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.account-detail-back-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--cta);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.account-detail-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.account-single-field-form {
  width: min(100%, 520px);
  margin: 22px auto 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.account-name-form {
  margin-top: 38px;
  gap: 18px;
}

.account-name-form label {
  gap: 8px;
}

.account-name-form input {
  min-height: 56px;
  border-color: #8e8e93;
  border-radius: 14px;
  padding: 0 18px;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
}

.account-name-form label span {
  display: block;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.account-detail-form .wide,
.account-detail-form .verification-actions,
.account-detail-form .verification-group,
.account-detail-form .username-field,
.account-detail-form .checkbox-row,
.account-detail-form button {
  grid-column: 1 / -1;
}

.account-detail-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.account-detail-form label strong {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fafc;
  overflow-wrap: anywhere;
}

.account-detail-form input,
.account-detail-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

.account-birthdate-field,
.account-combo-field {
  min-width: 0;
}

.account-date-picker {
  display: grid;
  grid-template-columns: minmax(96px, 1.15fr) minmax(78px, 0.9fr) minmax(78px, 0.9fr);
  gap: 0;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid #d7dde6;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 1px 2px rgba(17, 24, 39, 0.04);
}

.account-date-picker select {
  min-height: 50px;
  border: 0;
  border-right: 1px solid #d7dde6;
  border-radius: 0;
  background: transparent;
  padding: 0 34px 0 14px;
  color: #111827;
  font-weight: 800;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.account-date-picker select:last-child {
  border-right: 0;
}

.account-date-picker:focus-within,
.account-combo-shell:focus-within {
  border-color: rgba(0, 113, 227, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.account-combo-shell {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid #d7dde6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.account-combo-shell input {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  padding: 0 44px 0 14px;
  background: transparent;
  font-weight: 800;
}

.account-combo-shell input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.account-combo-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  pointer-events: none;
  transform: translateY(-62%) rotate(45deg);
}

.account-detail-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.account-detail-form .checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.account-detail-list {
  display: grid;
  gap: 10px;
}

.account-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.account-contact-section {
  display: grid;
  gap: 12px;
}

.account-contact-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-icon-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cta);
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.account-icon-button:hover,
.account-icon-button:focus-visible {
  background: rgba(0, 113, 227, 0.08);
}

.account-contact-row {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  background: #fff;
}

.account-contact-icon {
  width: 24px;
  height: 24px;
  display: block;
  align-self: start;
  color: var(--cta);
  background: currentColor;
}

.account-contact-icon-email {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2.5'/%3E%3Cpath d='m4.5 7 7.5 6 7.5-6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2.5'/%3E%3Cpath d='m4.5 7 7.5 6 7.5-6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.account-contact-icon-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M7.4 4.5 5.2 6.1c-.8.6-1.1 1.6-.8 2.5 1.5 5.1 5.5 9.1 10.6 10.7.9.3 1.9 0 2.5-.8l1.6-2.2c.5-.7.3-1.7-.5-2.1l-2.8-1.4c-.6-.3-1.3-.2-1.8.2l-1.1 1c-1.5-.8-2.8-2.1-3.6-3.6l1-1.1c.4-.5.5-1.2.2-1.8L9.5 5c-.4-.8-1.4-1-2.1-.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M7.4 4.5 5.2 6.1c-.8.6-1.1 1.6-.8 2.5 1.5 5.1 5.5 9.1 10.6 10.7.9.3 1.9 0 2.5-.8l1.6-2.2c.5-.7.3-1.7-.5-2.1l-2.8-1.4c-.6-.3-1.3-.2-1.8.2l-1.1 1c-1.5-.8-2.8-2.1-3.6-3.6l1-1.1c.4-.5.5-1.2.2-1.8L9.5 5c-.4-.8-1.4-1-2.1-.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-detail-row strong,
.account-detail-row small {
  display: block;
  overflow-wrap: anywhere;
}

.account-detail-row small {
  margin-top: 4px;
  color: var(--muted);
}

.account-contact-row small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.account-detail-row-actions,
.account-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.account-detail-row-actions button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--cta);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.account-detail-row-actions button:hover,
.account-detail-row-actions button:focus-visible {
  background: rgba(0, 113, 227, 0.08);
}

.account-detail-row-actions .account-link-danger {
  color: #b42318;
}

.account-generated-secret {
  border: 1px solid rgba(0, 113, 227, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 113, 227, 0.07);
  text-align: center;
}

.account-avatar-form {
  gap: 20px;
}

.account-avatar-editor {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fafc;
}

.account-avatar-crop {
  display: grid;
  gap: 10px;
}

.account-avatar-crop[hidden] {
  display: none;
}

.account-avatar-crop-frame {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 227, 0.24);
  border-radius: 50%;
  background:
    linear-gradient(45deg, rgba(102, 112, 133, 0.12) 25%, transparent 25% 75%, rgba(102, 112, 133, 0.12) 75%),
    linear-gradient(45deg, rgba(102, 112, 133, 0.12) 25%, transparent 25% 75%, rgba(102, 112, 133, 0.12) 75%);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  cursor: grab;
  touch-action: none;
}

.account-avatar-crop-frame:active {
  cursor: grabbing;
}

.account-avatar-crop-frame img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  user-select: none;
  pointer-events: none;
}

.account-avatar-presets {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin: 0;
  border: 0;
  padding: 0;
}

.account-avatar-presets legend {
  color: var(--muted);
  font-weight: 800;
}

.account-avatar-preset-group {
  display: grid;
  gap: 10px;
}

.account-avatar-preset-group h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.account-avatar-preset-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(90px, 1fr));
  gap: 12px;
}

.account-avatar-preset-option {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 8px;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.account-detail-form .account-avatar-preset-option {
  grid-column: auto;
}

.account-avatar-presets small {
  max-width: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.account-avatar-presets input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  opacity: 0;
}

.account-avatar-preset-choice {
  width: 72px;
  height: 72px;
}

.account-avatar-preset-option[aria-pressed="true"],
.account-avatar-presets label:has(input:checked) {
  border-color: rgba(0, 113, 227, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.account-avatar-preset {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #eef6ff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 9px 20px rgba(15, 23, 42, 0.15);
}

.account-avatar-preset img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.account-search-select,
.account-readonly-field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.account-search-select {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-readonly-field {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.account-readonly-field span {
  color: var(--muted);
  font-weight: 800;
}

.account-readonly-field strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.account-readonly-field button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--cta);
  background: rgba(0, 113, 227, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.account-avatar-preview {
  width: 118px;
  height: 118px;
  font-size: 44px;
}

.account-avatar-editor p,
.account-avatar-editor small {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.account-avatar-editor > div {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.account-avatar-upload {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.account-avatar-upload input {
  min-height: auto;
  border: 1px dashed rgba(0, 113, 227, 0.36);
  background: #fff;
  cursor: pointer;
}

.account-avatar-editor .secondary-button {
  width: 100%;
  min-height: 46px;
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.account-avatar-save {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.account-avatar-editor small[data-status="error"] {
  color: #c72a20;
  font-weight: 800;
}

.danger-button {
  border-color: rgba(210, 53, 44, 0.28);
  color: #b42318;
}

@media (max-width: 1100px) {
  .account-center-shell {
    grid-template-columns: 178px minmax(0, 1fr);
    gap: 28px;
  }

  .account-center-nav button,
  .account-sidebar-logout {
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  .account-center-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .account-center-sidebar {
    position: static;
    top: auto;
    gap: 18px;
  }

  .account-identity {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 6px 14px;
    align-items: center;
  }

  .account-avatar {
    grid-row: 1 / span 2;
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .account-identity strong {
    margin: 0;
  }

  .account-center-nav {
    display: flex;
    gap: 8px;
    margin: 0 -2px;
    padding: 0 2px 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding: 0 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .account-center-nav::-webkit-scrollbar {
    display: none;
  }

  .account-center-nav button {
    flex: 0 0 auto;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 15px;
    background: #fff;
    scroll-snap-align: center;
  }

  .account-center-nav button.is-active {
    border-color: var(--cta);
    background: var(--cta);
    color: #fff;
  }

  .account-sidebar-logout {
    font-size: 14px;
  }

  .account-card-grid,
  .account-card-grid-two,
  .account-device-grid,
  .account-split-grid,
  .account-privacy-grid {
    grid-template-columns: 1fr;
  }

  .account-detail-dialog:has(.account-avatar-form) .account-avatar-preset-grid {
    grid-template-columns: repeat(4, minmax(88px, 1fr));
  }
}

@media (max-width: 620px) {
  .account-page-panel-signedin {
    padding: 0;
  }

  .account-page-panel-signedin .account-message {
    top: 74px;
    left: 50%;
    right: auto;
    max-width: calc(100vw - 32px);
    transform: translateX(-50%);
  }

  .account-center-shell {
    gap: 22px;
  }

  .account-identity {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 4px 12px;
  }

  .account-avatar {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .account-identity strong {
    font-size: 21px;
  }

  .account-identity small {
    font-size: 14px;
  }

  .account-section-head {
    gap: 8px;
    padding-top: 0;
  }

  .account-section-head h2 {
    font-size: 34px;
  }

  .account-section-head span {
    font-size: 16px;
  }

  .account-info-card,
  .account-device-card,
  .account-management-form {
    min-height: auto;
    padding: 18px;
  }

  .account-info-card {
    padding-right: 56px;
  }

  .account-info-card h3,
  .account-management-form h3 {
    font-size: 20px;
  }

  .account-form-grid .wide,
  .account-management-form.account-form-grid h3 {
    grid-column: auto;
  }

  .account-device-drawer {
    inset: 10px;
    width: auto;
    gap: 14px;
    padding: 24px;
  }

  .account-device-drawer h3 {
    font-size: 28px;
  }

  .account-device-drawer dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .account-detail-dialog {
    inset: 10px;
    width: auto;
    max-height: none;
    padding: 26px;
    transform: none;
  }

  .account-detail-form,
  .account-detail-row {
    grid-template-columns: 1fr;
  }

  .account-password-step {
    grid-template-columns: 1fr;
  }

  .account-password-step > small,
  .account-password-step h4,
  .account-password-step p,
  .account-password-step .verification-group,
  .account-password-step details,
  .account-password-field-grid {
    grid-column: 1;
  }

  .account-password-field-grid,
  .account-password-verification-group label {
    grid-template-columns: 1fr;
  }

  .account-detail-dialog h3 {
    font-size: 28px;
  }

  .account-search-select,
  .account-avatar-presets {
    grid-template-columns: 1fr;
  }

  .account-detail-dialog:has(.account-avatar-form) .account-avatar-preset-grid,
  .account-avatar-preset-grid {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
    gap: 10px;
  }

  .account-avatar-presets label {
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
  }

  .account-avatar-preset-choice {
    width: 64px;
    height: 64px;
  }

  .account-avatar-editor {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .account-avatar-editor > div {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .account-detail-dialog:has(.account-avatar-form) .account-avatar-preset-grid,
  .account-avatar-preset-grid {
    grid-template-columns: 1fr;
  }

  .account-avatar-preset-option,
  .account-avatar-presets label {
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
  }
}

.account-overview {
  display: grid;
  gap: 18px;
}

.account-overview-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.account-overview-intro h3,
.account-overview-grid h4 {
  margin: 0;
  color: var(--ink);
}

.account-overview-intro h3 {
  font-size: 24px;
}

.account-overview-intro p {
  margin: 8px 0 0;
}

.account-overview-intro > span {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: #a5261c;
  background: rgba(225, 38, 28, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.account-overview-intro > span.is-ready {
  color: #0f8f5f;
  background: rgba(18, 168, 105, 0.1);
}

.account-overview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.account-overview-metrics article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.account-overview-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.account-overview-metrics strong {
  color: var(--ink);
  font-size: 24px;
}

.account-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 14px;
}

.account-overview-grid section {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.account-quick-actions {
  display: grid;
  gap: 10px;
}

.account-quick-actions button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.account-page-auth {
  width: min(100%, 880px);
  margin: 0 auto;
}

.email-form {
  display: grid;
  gap: 12px;
}

.email-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.email-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-support {
  background: #f5f5f7;
}

.page-support .site-header {
  background: rgba(246, 247, 249, 0.9);
  border-bottom: 1px solid rgba(190, 199, 210, 0.64);
  backdrop-filter: blur(20px);
}

.page-support .site-header .brand-logo-light {
  opacity: 0;
}

.page-support .site-header .brand-logo-standard {
  opacity: 1;
}

.page-support .site-header .nav-links {
  color: var(--ink-soft);
  background: transparent;
}

.page-support .site-header .nav-links a:hover,
.page-support .site-header .nav-links a:focus-visible,
.page-support .site-header .nav-links a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
}

.page-support .site-header .select-wrap select,
.page-support .site-header .ghost-button,
.page-support .site-header .nav-icon-link,
.page-support .site-header .language-trigger {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.page-support .site-header .nav-actions .select-wrap {
  color: var(--ink);
}

.page-support .site-header .menu-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff;
}

.page-support .site-header .menu-toggle span {
  background: var(--ink);
}

/* ==========================================================================
   23. 支持中心 Support center
   ========================================================================== */
.support-hero {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 136px 22px 84px;
  text-align: center;
  background:
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.support-hero-copy {
  width: min(100%, 900px);
}

.support-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.support-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.support-hero p {
  width: min(100%, 720px);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.support-search {
  width: min(100%, 760px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 34px auto 0;
  border: 1px solid rgba(12, 16, 22, 0.1);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 16, 22, 0.08);
}

.support-search span {
  width: 20px;
  height: 20px;
  justify-self: center;
  border: 2px solid #7b8490;
  border-radius: 999px;
  position: relative;
}

.support-search span::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  right: -7px;
  bottom: -3px;
  border-radius: 999px;
  background: #7b8490;
  transform: rotate(45deg);
}

.support-search input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
}

.support-search input::placeholder {
  color: #89929e;
}

.support-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.support-quick-links a,
.support-quick-links button {
  min-height: 38px;
  border: 1px solid rgba(12, 16, 22, 0.1);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.support-quick-links a,
.support-quick-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-quick-links a:hover,
.support-quick-links button:hover,
.support-quick-links a:focus-visible,
.support-quick-links button:focus-visible {
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--blue);
  outline: none;
}

.support-section {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 76px 0;
}

.support-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.support-section-head h2,
.support-service-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 700;
  text-wrap: balance;
}

.support-section-head p,
.support-service-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.support-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.support-product-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  background: #fff;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.support-product-card:hover,
.support-product-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 16px 34px rgba(12, 16, 22, 0.09);
  outline: none;
}

.support-product-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  margin-bottom: 6px;
}

.support-product-card strong {
  color: var(--ink);
  font-size: 17px;
}

.support-product-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.support-actions {
  padding-top: 46px;
}

.support-action-grid,
.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-action-card,
.support-topic-grid article {
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 8px;
  background: #fff;
}

.support-action-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.support-icon {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  position: relative;
}

.support-icon-device::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 2px;
  background: var(--ink);
}

.support-icon-device::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -7px;
  height: 2px;
  background: var(--ink);
}

.support-icon-download::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 2px;
  height: 18px;
  background: var(--ink);
}

.support-icon-download::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.support-icon-shield {
  border-radius: 14px 14px 18px 18px;
}

.support-icon-shield::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.support-icon-briefcase::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -8px;
  height: 10px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.support-icon-briefcase::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 17px;
  height: 2px;
  background: var(--ink);
}

.support-action-card h3,
.support-topic-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.support-action-card p,
.support-topic-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.support-action-card .text-button {
  margin-top: auto;
  color: var(--blue);
}

.support-service-band {
  width: min(100% - 44px, var(--max));
  margin: 34px auto 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 8px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(225, 38, 28, 0.18), transparent 40%),
    linear-gradient(135deg, #080b10, #1a2028);
}

.support-service-band h2,
.support-service-band p {
  color: #fff;
}

.support-service-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.support-service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.support-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-topic-grid article {
  min-height: 196px;
  padding: 24px;
}

.support-resource-section {
  padding-top: 42px;
}

.support-resource-list {
  display: grid;
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.support-resource-list a,
.support-resource-list button {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  color: var(--ink);
  text-align: left;
  background: #fff;
}

.support-resource-list a:last-child,
.support-resource-list button:last-child {
  border-bottom: 0;
}

.support-resource-list a:hover,
.support-resource-list button:hover,
.support-resource-list a:focus-visible,
.support-resource-list button:focus-visible {
  background: #f8f9fb;
  outline: none;
}

.support-resource-list strong {
  font-size: 18px;
}

.support-resource-list span {
  color: var(--muted);
  line-height: 1.56;
}

.search-shell {
  min-height: calc(100dvh - 160px);
  padding: 122px max(22px, calc((100vw - 760px) / 2)) 86px;
  background: #f5f5f7;
}

.search-panel {
  width: min(100%, 680px);
  margin: 0 auto;
}

.search-form {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(110, 118, 129, 0.28);
  padding-bottom: 9px;
  color: #6e6e73;
}

.search-glyph-large {
  width: 24px;
  height: 24px;
}

.search-glyph-large::before {
  border-width: 2.5px;
}

.search-input {
  width: 100%;
  min-height: 58px;
  border: 0;
  outline: 0;
  padding: 0;
  color: #1d1d1f;
  background: transparent;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
}

.search-input::placeholder {
  color: #6e6e73;
  opacity: 1;
}

.search-clear {
  width: 32px;
  height: 32px;
  position: relative;
  display: none;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 16, 22, 0.08);
}

.search-clear.is-visible {
  display: inline-flex;
}

.search-clear::before,
.search-clear::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 15px;
  height: 2px;
  border-radius: 999px;
  background: #4f5661;
}

.search-clear::before {
  transform: rotate(45deg);
}

.search-clear::after {
  transform: rotate(-45deg);
}

.search-empty,
.search-results-wrap {
  margin-top: 42px;
}

.search-kicker {
  margin: 0 0 13px;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 700;
}

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

.quick-link-list a {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 600;
}

.quick-link-list a::before {
  content: ">";
  color: #6e6e73;
  font-weight: 600;
}

.quick-link-list a:hover,
.quick-link-list a:focus-visible {
  color: var(--blue);
  outline: none;
}

.search-results-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.search-results-head h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.16;
}

.search-results-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 102px;
  border: 1px solid rgba(190, 199, 210, 0.72);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 12px 32px rgba(8, 12, 18, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.search-result img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: contain;
  background: #f1f3f5;
}

.search-result small,
.search-result strong,
.search-result em {
  display: block;
}

.search-result small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.search-result strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.search-result em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.search-no-results {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.search-no-results strong {
  font-size: 18px;
}

.search-no-results p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 1600px) {
  .home-product-hero-primary {
    min-height: 980px;
  }

  .home-product-image-desk-primary {
    width: min(72vw, 1500px);
    bottom: 0;
  }

  .home-product-tile {
    min-height: 880px;
    padding-top: 88px;
  }

  .home-product-image-clip {
    width: min(68vw, 1280px);
    max-height: 600px;
    bottom: 30px;
  }

  .home-product-image-omni-final {
    width: min(58vw, 1080px);
    max-height: 560px;
    bottom: 34px;
  }
}

@media (max-width: 1100px) {
  .home-hero,
  .page-hero,
  .product-detail-hero,
  .store-layout,
  .account-section,
  .company-section {
    grid-template-columns: 1fr;
  }

  .store-buy-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .store-gallery {
    position: static;
  }

  .store-gallery-card {
    min-height: 520px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .home-product-hero {
    min-height: 760px;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-product-tile {
    min-height: 700px;
  }

  .home-product-image-desk-primary,
  .home-product-image-clip {
    width: min(92vw, 900px);
  }

  .home-product-image-omni-final {
    width: min(82vw, 820px);
  }

  .product-grid,
  .support-grid,
  .support-product-grid,
  .brand-values,
  .brand-kpi-row,
  .capability-grid,
  .roadmap-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .support-service-band {
    grid-template-columns: 1fr;
  }

  .support-service-actions {
    justify-content: flex-start;
  }

  .brand-story-grid,
  .tech-band-inner,
  .identity-lockup,
  .entity-grid,
  .product-story-grid article,
  .store-product-preview {
    grid-template-columns: 1fr;
  }

  .brand-story-grid .brand-story-lead {
    grid-row: auto;
  }

  .commerce-panel {
    position: static;
  }

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

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

@media (min-width: 861px) and (max-width: 1100px) and (orientation: portrait) {
  .home-product-hero-primary {
    min-height: 920px;
  }

  .home-product-image-desk-primary {
    width: min(116vw, 1120px);
    bottom: 0;
  }

  .home-product-tile {
    min-height: 760px;
  }

  .home-product-image-clip {
    width: min(96vw, 860px);
    max-height: 520px;
    bottom: 18px;
    object-fit: contain;
  }

  .home-product-image-omni-final {
    width: min(88vw, 760px);
    max-height: 460px;
    bottom: 26px;
  }
}

@media (max-width: 860px) {
  .nav-mega {
    display: none;
  }

  .store-buy-shell {
    padding: 92px 18px 56px;
  }

  .store-buy-header {
    display: grid;
  }

  .store-buy-header h1 {
    font-size: 42px;
  }

  .support-hero {
    min-height: 520px;
    padding-top: 116px;
  }

  .support-hero h1 {
    font-size: 46px;
  }

  .support-hero p {
    font-size: 16px;
  }

  .support-section {
    padding: 62px 0;
  }

  .support-section-head h2,
  .support-service-band h2 {
    font-size: 34px;
  }

  .store-buy-pills {
    align-items: flex-start;
  }

  .store-gallery-card {
    min-height: 420px;
  }

  .store-gallery-copy {
    display: grid;
  }

  .site-header,
  .nav-shell {
    height: 62px;
  }

  .site-header {
    --header-height: 62px;
  }

  .search-scrim,
  .language-backdrop,
  .page-home .search-scrim,
  .page-home .language-backdrop {
    inset: 62px 0 0;
  }

  body.has-region-notice .search-scrim,
  body.has-region-notice .language-backdrop,
  body.has-region-notice.page-home .search-scrim,
  body.has-region-notice.page-home .language-backdrop {
    inset: calc(62px + var(--region-notice-height, 0px)) 0 0;
  }

  .nav-shell {
    gap: 8px;
    justify-content: flex-start;
  }

  .region-notice-inner {
    width: min(100% - 24px, var(--max));
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  .region-notice-message {
    flex: 1 1 calc(100% - 54px);
    font-size: 13px;
  }

  .region-notice-target,
  .region-notice-switch {
    flex: 1 1 180px;
    max-width: none;
    padding: 0 18px;
    font-size: 13px;
  }

  .region-notice-close {
    width: 44px;
  }

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

  .page-store .site-header .menu-toggle,
  .page-search .site-header .menu-toggle,
  .page-account .site-header .menu-toggle,
  .page-info .site-header .menu-toggle {
    border-color: rgba(12, 16, 22, 0.1);
    background: #fff;
  }

  .page-store .site-header .menu-toggle span,
  .page-search .site-header .menu-toggle span,
  .page-account .site-header .menu-toggle span,
  .page-info .site-header .menu-toggle span {
    background: var(--ink);
  }

  .brand {
    order: 1;
    width: 106px;
  }

  .brand-logo {
    width: 106px;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-height, 62px) + 8px);
    z-index: 160;
    max-height: calc(100dvh - var(--header-height, 62px) - 20px);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 6px;
    overflow: hidden;
    padding: 10px;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.has-region-notice .nav-links {
    top: calc(var(--region-notice-height, 0px) + var(--header-height, 62px) + 8px);
  }

  .page-home .nav-links,
  .page-home .site-header.is-scrolled .nav-links {
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .page-store .site-header .nav-links,
  .page-search .site-header .nav-links,
  .page-account .site-header .nav-links,
  .page-info .site-header .nav-links {
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .page-home .nav-links.is-open {
    display: grid;
  }

  .nav-links .mobile-account-link {
    appearance: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font: inherit;
    cursor: pointer;
  }

  .nav-links a,
  .nav-links .mobile-account-link,
  .page-home .nav-links a,
  .page-home .nav-links .mobile-account-link {
    justify-content: center;
    min-height: 38px;
    padding: 0 8px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }

  .nav-links a[aria-current="page"],
  .page-home .nav-links a[aria-current="page"] {
    color: var(--ink);
    background: rgba(12, 16, 22, 0.06);
  }

  .page-home .nav-links a:hover,
  .page-home .nav-links a:focus-visible,
  .nav-links .mobile-account-link:hover,
  .nav-links .mobile-account-link:focus-visible,
  .page-home .nav-links .mobile-account-link:hover,
  .page-home .nav-links .mobile-account-link:focus-visible,
  .page-home .nav-links a[aria-current="page"] {
    color: var(--ink);
    background: rgba(12, 16, 22, 0.06);
    outline: none;
  }

  .nav-links .mobile-nav-search {
    display: none;
  }

  .nav-links .mobile-language {
    display: block;
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(12, 16, 22, 0.08);
  }

  .nav-links.is-language-mode {
    grid-template-columns: 1fr;
  }

  .nav-links.is-language-mode a,
  .nav-links.is-language-mode .mobile-nav-search,
  .nav-links.is-language-mode .mobile-account-link {
    display: none;
  }

  .nav-links.is-language-mode .mobile-language {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .nav-links.is-language-mode .mobile-language-list {
    max-height: min(560px, calc(100dvh - var(--header-height, 62px) - 138px));
  }

  .nav-links .language-search {
    max-width: none;
    margin: 0 0 8px;
  }

  .nav-links .language-search-input {
    height: 42px;
    border-radius: 8px;
    background: #f0f1f3;
    font-size: 15px;
  }

  .nav-links .language-search::after {
    top: 27px;
  }

  .mobile-language-list {
    max-height: min(430px, calc(100dvh - var(--header-height, 62px) - 180px));
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 2px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 2px;
  }

  .mobile-language-list .language-option {
    min-height: 40px;
    color: var(--ink);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 7px 8px;
  }

  .mobile-language-list .language-option span {
    font-size: 15px;
  }

  .mobile-language-list .language-option small {
    font-size: 14px;
  }

  .mobile-language-list .language-empty {
    margin: 16px 8px 22px;
    line-height: 1.5;
   }

  .nav-links .mobile-language select {
    width: 100%;
    min-height: 44px;
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }

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

  .select-wrap select {
    width: 104px;
  }

  .language-mega {
    display: none;
  }

  .search-shell {
    padding-top: 104px;
  }

  .search-overlay-inner {
    width: min(100% - 36px, 680px);
    padding: 38px 0 52px;
  }

  .search-overlay-input {
    font-size: 24px;
  }

  .search-overlay-body {
    margin-top: 28px;
  }

  .search-input {
    font-size: 25px;
  }

  .home-hero {
    min-height: 780px;
    align-items: start;
    padding-top: 120px;
  }

  .home-product-hero {
    min-height: 700px;
    padding-top: 102px;
    border-bottom-width: 10px;
  }

  .home-product-grid {
    gap: 10px;
    padding: 10px;
  }

  .home-product-tile {
    min-height: 680px;
    padding-top: 78px;
  }

  .home-product-copy h1,
  .home-product-copy h2 {
    font-size: 48px;
  }

  .home-product-copy p {
    font-size: 23px;
  }

  .home-product-image-desk-primary {
    width: 118vw;
    max-height: 430px;
    bottom: -58px;
  }

  .home-product-image-clip {
    width: 104vw;
    max-height: 420px;
    bottom: -48px;
  }

  .home-product-image-omni-final {
    width: min(92vw, 720px);
    max-height: 380px;
    bottom: 0;
  }

  .home-collection h2 {
    font-size: 38px;
  }

  .home-collection p {
    font-size: 19px;
  }

  .page-hero {
    padding-top: 108px;
  }

  .product-subnav {
    top: 62px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .page-product-detail .product-subnav {
    margin-top: 62px;
  }

  .page-product-detail main section[id] {
    scroll-margin-top: 130px;
  }

  .product-detail-hero {
    min-height: 780px;
    padding-top: 118px;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .product-detail-copy h1 {
    font-size: 46px;
  }

  .hero-copy p,
  .page-hero-copy p,
  .product-detail-copy p {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 330px;
  }

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

  .home-strip a {
    width: min(100% - 44px, var(--max));
    margin: 0 auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .split-head,
  .editorial-card:first-child,
  .detail-panel,
  .solution-row,
  .solution-row.reverse,
  .checkout-card {
    grid-template-columns: 1fr;
  }

  .solution-row.reverse img {
    order: 0;
  }

  .editorial-grid,
  .route-grid,
  .product-grid,
  .brand-values,
  .brand-kpi-row,
  .capability-grid,
  .roadmap-brand-grid,
  .support-product-grid,
  .support-action-grid,
  .support-topic-grid,
  .swatch-row,
  .box-service-grid,
  .checkout-fields,
  .checkout-invoice,
  .purchase-channel-list {
    grid-template-columns: 1fr;
  }

  .support-product-card {
    min-height: 178px;
  }

  .support-product-card img {
    height: 92px;
  }

  .support-resource-list a,
  .support-resource-list button {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-head h2,
  .editorial-card h2,
  .detail-panel h2,
  .solution-row h2,
  .account-card h2,
  .company-copy h2,
  .brand-values h2,
  .checkout-card h2,
  .product-story-grid h2,
  .scene-band h2,
  .spec-section h2,
  .box-service-grid h2,
  .faq-section h2 {
    font-size: 34px;
  }

  .box-service-grid h2 {
    font-size: 28px;
  }

  .detail-panel > div,
  .solution-row div,
  .editorial-card > div,
  .product-story-grid article > div {
    padding: 32px;
  }

  .light-panel img {
    order: 2;
  }

  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .account-page {
    padding-top: 96px;
  }

  .account-page-hero {
    padding-bottom: 52px;
  }

  .account-page-lede {
    font-size: 19px;
  }

  .account-page-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .store-buy-header h1 {
    font-size: 34px;
  }

  .store-gallery-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .store-gallery-copy .text-link {
    justify-self: start;
  }

  .store-gallery-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .store-gallery-card img {
    width: 100%;
    max-height: 100%;
  }

  .store-option-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .store-option-card em {
    grid-column: 2;
    text-align: left;
  }

  .store-order-summary div {
    display: grid;
  }

  .nav-shell,
  .section,
  .support-section,
  .support-service-band {
    width: min(100% - 28px, var(--max));
  }

  .footer-inner {
    width: min(100% - 28px, var(--max));
    padding: 26px 0 24px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 0 34px;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-legal-links {
    display: grid;
    gap: 6px;
  }

  .footer-legal-links a + a::before {
    content: none;
  }

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

  .footer-region {
    text-align: left;
    order: -1;
  }

  .info-hero {
    padding: 118px 18px 58px;
  }

  .info-hero-inner,
  .info-section-inner {
    width: min(100% - 28px, 980px);
  }

  .info-hero h1 {
    font-size: 38px;
  }

  .info-hero p {
    font-size: 18px;
  }

  .info-section {
    padding: 52px 18px;
  }

  .info-card-grid,
  .download-resource-grid,
  .info-link-list {
    grid-template-columns: 1fr;
  }

  .download-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .address-map-links a {
    width: 100%;
    justify-content: center;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-email {
    font-size: 18px;
  }

  .support-hero {
    min-height: 500px;
    padding: 104px 14px 64px;
  }

  .support-hero h1 {
    font-size: 38px;
  }

  .support-search {
    grid-template-columns: 30px 1fr;
    gap: 6px;
  }

  .support-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .support-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-action-card,
  .support-topic-grid article,
  .support-service-band {
    padding: 22px;
  }

  .support-service-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-actions {
    display: flex;
  }

  .nav-actions .select-wrap {
    display: none;
  }

  .search-shell {
    min-height: calc(100dvh - 130px);
    padding: 96px 18px 64px;
  }

  .search-overlay-inner {
    width: min(100% - 28px, 520px);
    padding: 28px 0 38px;
  }

  .search-overlay-form {
    grid-template-columns: 24px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .search-overlay-input {
    min-height: 42px;
    font-size: 21px;
  }

  .search-overlay-body {
    margin-top: 22px;
    padding-left: 32px;
  }

  .search-form {
    grid-template-columns: 28px minmax(0, 1fr) 32px;
  }

  .search-glyph-large {
    width: 20px;
    height: 20px;
  }

  .search-input {
    min-height: 50px;
    font-size: 22px;
  }

  .search-empty,
  .search-results-wrap {
    margin-top: 30px;
  }

  .search-results-head {
    display: grid;
    align-items: start;
    gap: 6px;
  }

  .search-result {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .search-result img {
    width: 62px;
    height: 62px;
  }

  .home-hero,
  .page-hero,
  .product-detail-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-product-hero {
    min-height: 640px;
    padding: 92px 14px 0;
    border-bottom-width: 8px;
  }

  .home-product-grid {
    gap: 8px;
    padding: 8px;
  }

  .home-product-tile {
    min-height: 610px;
    padding-top: 70px;
  }

  .home-product-copy h1,
  .home-product-copy h2 {
    font-size: 40px;
  }

  .home-product-copy p {
    margin-top: 8px;
    font-size: 20px;
  }

  .home-product-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .home-cta {
    min-height: 38px;
    padding: 0 18px;
    font-size: 15px;
  }

  .home-award-line {
    margin-top: 10px;
    font-size: 12px;
  }

  .home-award-line img {
    height: 22px;
  }

  .home-award-line img[src$=".png"],
  .home-award-line img[src*="if-design-award"] {
    height: 19px;
    max-width: 70px;
  }

  .home-product-image-desk-primary {
    width: 186vw;
    max-height: 390px;
    bottom: 0;
  }

  .home-product-image-clip {
    width: 118vw;
    max-height: 340px;
    bottom: 20px;
  }

  .home-product-image-omni-final {
    width: 108vw;
    max-height: 310px;
    bottom: 12px;
  }

  .home-collection {
    min-height: 300px;
    padding: 56px 18px 68px;
  }

  .home-collection h2 {
    font-size: 32px;
  }

  .home-collection p {
    font-size: 17px;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .product-detail-copy h1 {
    font-size: 38px;
  }

  .page-clipair-detail {
    overflow-x: hidden;
  }

  .clipair-hero > img {
    transform: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-render-main {
    width: 86%;
  }

  .hero-render-left {
    width: 55%;
  }

  .hero-render-right {
    width: 62%;
  }

  .product-media {
    height: 246px;
  }

  .feature-list,
  .channel-grid,
  .account-tabs-dashboard,
  .account-form-grid,
  .account-security-band,
  .account-overview-grid,
  .verification-phone-fields,
  .verification-actions,
  .support-grid,
  .scene-grid,
  .spec-table div {
    grid-template-columns: 1fr;
  }

  .account-head {
    display: grid;
  }

  .card-actions {
    align-items: stretch;
  }

  .solid-small {
    min-width: 96px;
  }

  .brand-visual-panel,
  .identity-lockup {
    padding: 24px;
  }

  .brand-wordmark-vector {
    padding: 18px;
  }

  .brand-visual-grid,
  .tech-rail {
    grid-template-columns: 1fr;
  }

  .swatch-row b,
  .swatch-row small {
    margin-left: 42%;
  }

  .checkout-card > div {
    padding: 24px;
  }

  .store-product-preview,
  .purchase-form {
    padding: 18px;
  }

  .product-subnav .solid-small {
    min-width: 76px;
  }

  .account-page {
    padding: 86px 14px 52px;
  }

  .account-auth-subnav {
    min-height: 54px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: -22px;
    padding-bottom: 12px;
  }

  .account-auth-brand {
    width: 100%;
    font-size: 25px;
  }

  .account-auth-subnav div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
  }

  .account-login-page,
  .account-register-page {
    min-height: auto;
    padding: 44px 0 24px;
  }

  .account-login-symbol {
    width: 148px;
    height: 148px;
    margin-bottom: 28px;
  }

  .account-login-symbol span {
    -webkit-mask: radial-gradient(circle, transparent 0 42px, #000 43px 62px, transparent 63px);
    mask: radial-gradient(circle, transparent 0 42px, #000 43px 62px, transparent 63px);
  }

  .account-login-symbol img {
    width: 58px;
    height: 58px;
  }

  .account-login-page > p {
    margin: 12px 0 26px;
    font-size: 18px;
  }

  .account-large-field {
    min-height: 66px;
    border-radius: 12px;
    padding: 9px 16px;
  }

  .account-large-field input {
    font-size: 20px;
  }

  .account-login-actions {
    grid-template-columns: 1fr;
  }

  .account-login-privacy {
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 14px;
  }

  .account-register-panel {
    border-radius: 12px;
    padding: 18px;
  }

  .account-page-hero {
    padding: 22px 0 42px;
  }

  .account-orbit {
    width: min(100%, 300px);
    height: 160px;
    margin-bottom: 28px;
  }

  .account-orbit::before {
    width: 250px;
    height: 250px;
  }

  .account-orbit::after {
    left: 44px;
    right: 44px;
    bottom: 18px;
  }

  .account-visual-panel {
    width: 178px;
    height: 106px;
    top: 28px;
  }

  .account-visual-panel::before {
    left: 20px;
    right: 20px;
    top: 20px;
    box-shadow:
      0 18px 0 #f2f4f7,
      0 36px 0 #f2f4f7;
  }

  .account-visual-card {
    width: 82px;
    height: 62px;
    top: 66px;
  }

  .account-visual-card-left {
    left: 20px;
  }

  .account-visual-card-right {
    right: 20px;
  }

  .account-visual-card span {
    left: 14px;
    height: 6px;
  }

  .account-visual-card span:nth-child(1) {
    top: 15px;
    width: 26px;
  }

  .account-visual-card span:nth-child(2) {
    top: 30px;
    width: 50px;
  }

  .account-visual-card span:nth-child(3) {
    top: 45px;
    width: 40px;
  }

  .account-visual-signal-one {
    left: 86px;
    top: 40px;
  }

  .account-visual-signal-two {
    right: 86px;
    bottom: 42px;
  }

  .account-visual-status {
    width: 44px;
    height: 18px;
    right: 52px;
    top: 34px;
  }

  .account-orbit-center {
    width: 62px;
    height: 62px;
    top: 50px;
    border-radius: 20px;
  }

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

  .account-page-hero h1 {
    max-width: 360px;
    font-size: 30px;
    line-height: 1.16;
  }

  .account-page-hero h1 span {
    display: block;
  }

  .account-page-lede {
    margin-top: 18px;
    font-size: 17px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .account-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-page-cards article,
  .account-page-panel,
  .account-security-band {
    padding: 22px;
  }

  .account-page-cards h2,
  .account-page-panel h2,
  .account-security-band h2 {
    font-size: 28px;
  }

  .account-page-cards p {
    font-size: 16px;
    word-break: break-all;
  }

  .account-security-band > p {
    grid-column: auto;
  }

  .account-tabs-dashboard,
  .account-overview-metrics {
    grid-template-columns: 1fr;
  }

  .account-overview-intro {
    display: grid;
  }

  .product-detail-hero img {
    max-height: 360px;
  }

  .buy-drawer {
    padding: 24px;
  }
}

@media (min-width: 360px) and (max-width: 860px) {
  .nav-links:not(.is-language-mode) .mobile-account-link,
  .nav-links:not(.is-language-mode) .mobile-language {
    display: none;
  }

  .nav-links.is-language-mode .mobile-language {
    display: block;
    grid-column: 1 / -1;
  }

  .nav-links.is-open.is-language-mode,
  .page-home .nav-links.is-open.is-language-mode,
  .page-store .site-header .nav-links.is-open.is-language-mode,
  .page-search .site-header .nav-links.is-open.is-language-mode,
  .page-account .site-header .nav-links.is-open.is-language-mode,
  .page-info .site-header .nav-links.is-open.is-language-mode {
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-language-mode .mobile-language,
  .nav-links.is-language-mode .mobile-language-list {
    color: var(--ink);
    background: #fff;
  }

  .nav-links.is-language-mode .language-option {
    color: var(--ink);
  }

  .nav-links.is-language-mode .language-option small {
    color: #6e6e73;
  }
}

@media (max-width: 359px) {
  .nav-actions .language-trigger,
  .nav-actions .ghost-button {
    display: none;
  }
}

