@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #09212d;
  --ink-2: #103846;
  --teal: #079b9a;
  --teal-bright: #18c8c1;
  --cyan: #91e9e0;
  --lime: #d6ef94;
  --paper: #f8faf7;
  --paper-warm: #f0f5f1;
  --muted: #71858b;
  --line: #dce7e3;
  --white: #fff;
  --shadow: 0 24px 70px rgba(13, 47, 51, .10);
  --mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
  --sans: 'Manrope', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.menu-open, body.detail-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }

.announcement { color: #d7faf5; background: var(--ink); font: 11px var(--mono); letter-spacing: .02em; }
.announcement-inner { height: 32px; display: flex; align-items: center; gap: 10px; }
.announcement a { margin-left: auto; color: var(--lime); transition: color .2s; }
.announcement a:hover { color: white; }
.announcement-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 4px rgba(24, 200, 193, .15); }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(248, 250, 247, .93); border-bottom: 1px solid rgba(220, 231, 227, .82); backdrop-filter: blur(18px); }
.nav-inner { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; position: relative; overflow: hidden; border-radius: 12px; background: linear-gradient(140deg, var(--teal-bright), var(--teal)); box-shadow: 0 8px 16px rgba(0, 145, 145, .16); }
.brand-mark::before, .brand-mark::after, .brand-mark span::before { content: ''; position: absolute; border: 2px solid var(--white); border-radius: 50%; }
.brand-mark::before { width: 24px; height: 14px; transform: rotate(-24deg); }
.brand-mark::after { width: 14px; height: 24px; transform: rotate(-24deg); }
.brand-mark span::before { width: 4px; height: 4px; border: none; background: var(--lime); top: 8px; right: 7px; }
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong { font-size: 18px; letter-spacing: .12em; font-weight: 800; }
.brand-copy small { font: 9px var(--mono); color: var(--teal); letter-spacing: .09em; }
.primary-nav { flex: 1; display: flex; justify-content: center; gap: 5px; }
.primary-nav a { position: relative; padding: 10px 11px; color: #5e7378; font-size: 13px; font-weight: 600; transition: color .2s; }
.primary-nav a::after { content: ''; position: absolute; left: 11px; right: 11px; bottom: 1px; height: 2px; border-radius: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s; }
.primary-nav a:hover, .primary-nav a.active { color: var(--teal); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-icon-btn { width: 34px; height: 34px; position: relative; display: grid; place-items: center; border: 1px solid transparent; border-radius: 50%; color: var(--ink); background: transparent; transition: color .2s, background .2s; }
.nav-icon-btn:hover { color: var(--teal); background: #e6f4ef; }
.icon-search { width: 15px; height: 15px; display: inline-block; position: relative; border: 1.7px solid currentColor; border-radius: 50%; }
.icon-search::after { content: ''; width: 6px; height: 1.7px; position: absolute; right: -5px; bottom: -2px; border-radius: 2px; background: currentColor; transform: rotate(48deg); }
.icon-heart::before { content: '♡'; font-size: 22px; line-height: 1; }
.icon-bag { width: 16px; height: 16px; display: inline-block; position: relative; box-sizing: border-box; border: 1.7px solid currentColor; border-radius: 3px 3px 4px 4px; }
.icon-bag::before { content: ''; width: 8px; height: 7px; position: absolute; left: 2.3px; top: -6.5px; box-sizing: border-box; border: 1.7px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.nav-badge { position: absolute; top: -7px; right: -7px; min-width: 15px; height: 15px; padding: 0 3px; color: white; border: 2px solid var(--paper); background: var(--teal); border-radius: 50%; font: 8px/11px var(--mono); text-align: center; }
.login-link { margin-left: 4px; color: var(--teal); font-size: 12px; font-weight: 700; }
.menu-toggle { display: none; width: 36px; height: 36px; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 1.5px; margin: 4px 0; background: var(--ink); transition: transform .2s, opacity .2s; }
.mobile-menu { display: none; }
.search-panel { height: 0; overflow: hidden; background: var(--ink-2); transition: height .25s ease; }
.search-panel.open { height: 74px; }
.search-panel-inner { height: 74px; display: flex; align-items: center; gap: 16px; color: var(--cyan); }
.search-panel input { flex: 1; border: 0; outline: none; color: white; background: transparent; font-size: 19px; }
.search-panel input::placeholder { color: rgba(255,255,255,.45); }
.search-close { border: 0; color: rgba(255,255,255,.75); background: transparent; font-size: 12px; }

.global-search-panel {
  display: none;
  position: fixed;
  top: calc(var(--global-announcement-height, 32px) + var(--global-header-height, 82px));
  right: 0;
  left: 0;
  z-index: 105;
  color: var(--cyan);
  background: var(--ink-2);
  box-shadow: 0 14px 28px rgba(7, 30, 44, .15);
}

.global-search-panel.open { display: block; }

.global-search-panel-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.global-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-search-form input {
  flex: 1;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  outline: none;
  color: white;
  background: transparent;
  font-size: 17px;
}

.global-search-form input::placeholder { color: rgba(255,255,255,.45); }

.global-search-form button,
.global-search-close {
  border: 0;
  color: rgba(255,255,255,.82);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.global-search-form button { padding: 8px 12px; color: var(--lime); }
.global-search-form button:hover,
.global-search-close:hover { color: white; }

.onboarding-page .global-search-panel {
  top: calc(var(--reference-topbar-height) + var(--reference-nav-height));
}

.hero { min-height: 660px; position: relative; color: white; overflow: hidden; background: radial-gradient(circle at 76% 22%, rgba(22, 205, 197, .30), transparent 28%), radial-gradient(circle at 62% 86%, rgba(23, 97, 129, .50), transparent 32%), linear-gradient(122deg, #071e2c 0%, #082e3b 51%, #0a4f57 100%); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .22; background: linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.04) 40px, transparent 41px), linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.04) 40px, transparent 41px); background-size: 40px 40px; mask-image: linear-gradient(90deg, transparent, black 15%, black 78%, transparent); }
.hero-grid-lines { position: absolute; width: 730px; height: 730px; right: -100px; top: -160px; border: 1px solid rgba(150, 239, 228, .22); border-radius: 50%; box-shadow: 0 0 0 46px rgba(150,239,228,.04), 0 0 0 120px rgba(150,239,228,.025), 0 0 0 210px rgba(150,239,228,.015); }
.hero-grid-lines::after { content: ''; position: absolute; inset: 16%; border: 1px dashed rgba(150,239,228,.2); border-radius: 50%; }
.hero-inner { min-height: 610px; position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 34px; }
.hero-copy { position: relative; z-index: 2; padding: 48px 0 72px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--cyan); font: 11px var(--mono); letter-spacing: .14em; }
.eyebrow > span { width: 26px; height: 1px; display: inline-block; background: currentColor; }
.eyebrow-dark { color: var(--teal); }
.hero h1 { max-width: 560px; margin: 0; font-size: clamp(42px, 5.2vw, 76px); font-weight: 700; letter-spacing: -.065em; line-height: 1.1; }
.hero h1 em, .story-copy h2 em { color: var(--lime); font-style: normal; }
.hero-description { max-width: 430px; margin: 26px 0 0; color: rgba(241, 255, 251, .68); font-size: 15px; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 46px; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; font-size: 12px; font-weight: 800; transition: transform .2s, background .2s, border .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 25px rgba(208, 239, 148, .13); }
.button-primary:hover { background: #e5f9b4; }
.button-quiet { min-width: 130px; padding: 0; justify-content: flex-start; color: rgba(255,255,255,.78); background: transparent; }
.button-quiet:hover { color: white; }
.button-dark { margin-top: 19px; color: white; background: var(--ink); }
.button-dark:hover { background: var(--teal); }
.button-primary.light { color: var(--ink); background: var(--lime); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 54px; }
.proof-avatars { display: flex; padding-left: 5px; }
.proof-avatars span { width: 27px; height: 27px; display: grid; place-items: center; margin-left: -5px; border: 2px solid #104856; border-radius: 50%; color: var(--ink); background: #cbe7d7; font-size: 10px; font-weight: 800; }
.proof-avatars span:nth-child(2) { background: #ffd4ad; }.proof-avatars span:nth-child(3) { background: #c1dded; }.proof-avatars span:nth-child(4) { color: var(--cyan); background: rgba(255,255,255,.12); }
.hero-proof p { margin: 0; color: rgba(255,255,255,.55); font: 10px/1.6 var(--mono); }.hero-proof strong { color: white; font-family: var(--sans); font-size: 12px; }.hero-proof p span { color: rgba(255,255,255,.42); }
.hero-stage { height: 510px; position: relative; }
.stage-glow { position: absolute; width: 510px; height: 300px; left: 49%; top: 39%; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(57, 227, 214, .2); filter: blur(65px); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(153, 239, 224, .24); border-radius: 50%; transform: translate(-50%, -50%) rotate(-17deg); }.orbit-one { width: 530px; height: 218px; }.orbit-two { width: 650px; height: 270px; opacity: .45; transform: translate(-50%, -50%) rotate(19deg); }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 9px 12px; color: rgba(255,255,255,.82); border: 1px solid rgba(172, 245, 233, .24); border-radius: 2px; background: rgba(2, 29, 38, .38); box-shadow: 0 12px 24px rgba(0,0,0,.1); backdrop-filter: blur(8px); font: 10px var(--mono); }.note-top { top: 81px; right: 8%; }.note-bottom { bottom: 82px; left: 3%; }.note-dot { width: 6px; height: 6px; border-radius: 50%; }.note-dot.green { background: var(--lime); box-shadow: 0 0 12px var(--lime); }.note-dot.blue { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.desktop-device { position: absolute; z-index: 2; width: 320px; height: 270px; left: 51%; top: 55%; transform: translate(-50%, -50%) perspective(500px) rotateX(2deg) rotateY(-10deg); }.device-screen { width: 300px; height: 195px; position: relative; padding: 8px; border: 5px solid #1b4149; border-radius: 14px; background: #051921; box-shadow: 0 25px 42px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.22); }.screen-top { height: 18px; display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.45); font: 6px var(--mono); }.screen-top span { width: 4px; height: 4px; border-radius: 50%; background: #eb7663; }.screen-top span:nth-child(2) { background: #eac56c; }.screen-top span:nth-child(3) { background: #71cb91; }.screen-top b { margin-left: auto; font-weight: 400; }.screen-content { height: 159px; position: relative; padding: 25px 22px; overflow: hidden; background: radial-gradient(circle at 85% 15%, rgba(31, 206, 189, .42), transparent 30%), linear-gradient(125deg, #0d3846, #0b1d29); }.screen-content::after { content: ''; position: absolute; width: 100px; height: 100px; right: -30px; bottom: -46px; border: 1px solid rgba(213,239,148,.34); border-radius: 50%; box-shadow: 0 0 0 16px rgba(213,239,148,.06), 0 0 0 35px rgba(213,239,148,.05); }.screen-kicker { color: var(--cyan); font: 7px var(--mono); letter-spacing: .1em; }.screen-content strong { display: block; margin-top: 12px; color: white; font-size: 25px; letter-spacing: -.08em; line-height: 1.16; }.screen-bars { position: absolute; bottom: 19px; left: 22px; display: flex; align-items: end; gap: 4px; height: 25px; }.screen-bars i { width: 4px; height: 8px; display: block; background: var(--teal-bright); }.screen-bars i:nth-child(2) { height: 14px; }.screen-bars i:nth-child(3) { height: 10px; background: var(--lime); }.screen-bars i:nth-child(4) { height: 22px; }.screen-bars i:nth-child(5) { height: 16px; background: var(--lime); }.screen-bars i:nth-child(6) { height: 25px; }.device-base { width: 360px; height: 28px; position: absolute; left: -29px; bottom: 15px; border-radius: 3px 3px 14px 14px; background: linear-gradient(180deg, #547c7c, #183c43); box-shadow: 0 16px 0 -9px rgba(1, 23, 29, .7), 0 26px 36px rgba(0,0,0,.2); transform: perspective(240px) rotateX(50deg); }.device-base::after { content: 'K'; position: absolute; left: 48%; top: 10px; color: rgba(255,255,255,.33); font: 9px var(--mono); }
.stage-keyboard { position: absolute; z-index: 3; width: 270px; height: 72px; left: 49%; bottom: 46px; display: flex; flex-wrap: wrap; align-content: center; gap: 5px; padding: 12px 15px; border: 1px solid rgba(208, 239, 148, .24); border-radius: 7px; background: linear-gradient(135deg, #254a51, #102b35); box-shadow: 0 22px 30px rgba(0,0,0,.28); transform: translateX(-50%) perspective(320px) rotateX(54deg) rotateZ(-3deg); }.stage-keyboard span { width: 22px; height: 13px; border-radius: 2px; background: linear-gradient(135deg, #9ec2b2, #4b7775); box-shadow: inset 0 -2px 0 rgba(0,0,0,.28); }.stage-keyboard span:nth-child(5n) { background: linear-gradient(135deg, #cae994, #5da19a); }.stage-mouse { position: absolute; z-index: 4; width: 42px; height: 68px; right: 12%; bottom: 55px; border: 1px solid rgba(210,239,148,.4); border-radius: 48% 48% 43% 43%; background: linear-gradient(145deg, #4f8889, #0d343f); transform: rotate(-18deg); box-shadow: 0 18px 30px rgba(0,0,0,.22); }.stage-mouse::before { content: ''; width: 1px; height: 22px; position: absolute; left: 50%; top: 0; background: rgba(210,239,148,.45); }.stage-mouse::after { content: ''; width: 6px; height: 11px; position: absolute; left: 45%; top: 12px; border-radius: 5px; background: var(--lime); opacity: .7; }
.stage-plant { position: absolute; z-index: 1; right: 7%; bottom: 33px; width: 80px; height: 150px; }.stage-plant::before { content: ''; position: absolute; bottom: 0; left: 23px; width: 45px; height: 30px; border-radius: 8px 8px 18px 18px; background: linear-gradient(135deg,#b7986a,#654e38); }.stage-plant i { position: absolute; width: 30px; height: 68px; bottom: 24px; left: 35px; border-radius: 100% 0 100% 0; background: linear-gradient(45deg, #499077, #c3e796); transform-origin: bottom; transform: rotate(30deg); }.stage-plant i:nth-child(2) { left: 16px; transform: rotate(-38deg) scale(.8); }.stage-plant i:nth-child(3) { left: 37px; bottom: 48px; transform: rotate(3deg) scale(.65); }.stage-plant b { position: absolute; left: 44px; bottom: 22px; width: 5px; height: 95px; background: #477b6a; transform: rotate(5deg); }
.hero-bottom { position: absolute; right: 0; bottom: 23px; left: 0; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.42); font: 9px var(--mono); letter-spacing: .08em; }.scroll-line { width: 80px; height: 1px; position: relative; background: rgba(255,255,255,.22); }.scroll-line i { width: 24px; height: 1px; position: absolute; left: 0; background: var(--lime); }

.feature-strip { background: #e6f1ec; border-bottom: 1px solid #d9e7e0; }.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }.feature-item { min-height: 94px; display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-right: 1px solid #d4e4dc; }.feature-item:first-child { border-left: 1px solid #d4e4dc; }.feature-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal); border: 1px solid #acd5c6; border-radius: 50%; font-size: 17px; }.feature-item strong, .feature-item small { display: block; }.feature-item strong { font-size: 13px; }.feature-item small { margin-top: 4px; color: #81938f; font: 10px var(--mono); }

.section { padding: 114px 0; }.products-section { background: var(--paper); }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }.section-heading h2, .story-copy h2, .compact-heading h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.065em; }.section-heading > div > p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 14px; }.text-link { padding-bottom: 8px; color: var(--teal); font: 12px var(--mono); transition: color .2s; }.text-link:hover { color: var(--ink); }.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; padding: 11px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; }.category-tab { padding: 7px 13px; color: #829498; border: 1px solid transparent; border-radius: 2px; background: transparent; font-size: 12px; transition: color .2s, background .2s, border .2s; }.category-tab:hover, .category-tab.active { color: var(--teal); border-color: #add6ca; background: #e7f4ee; }.catalog-search { width: 166px; display: flex; align-items: center; gap: 10px; padding: 8px 10px; color: #8b9ea0; border-bottom: 1px solid #c5d5d1; }.catalog-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 12px; }.catalog-search input::placeholder { color: #9aa8aa; }.catalog-search .icon-search { width: 12px; height: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 26px; }.product-card { min-width: 0; overflow: hidden; border: 1px solid #e0e9e5; background: #fff; transition: transform .3s, box-shadow .3s, border-color .3s; }.product-card:hover { border-color: #c6ddd3; box-shadow: var(--shadow); transform: translateY(-5px); }.product-card.is-hidden { display: none; }.product-image { height: 252px; position: relative; overflow: hidden; }.product-image::before, .product-image::after { content: ''; position: absolute; border-radius: 50%; }.product-tag { position: absolute; z-index: 3; top: 16px; left: 17px; color: rgba(255,255,255,.74); font: 9px var(--mono); letter-spacing: .08em; }.favorite-btn { position: absolute; z-index: 4; top: 10px; right: 11px; width: 34px; height: 34px; display: grid; place-items: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: rgba(0,0,0,.12); transition: color .2s, background .2s, border .2s; }.favorite-btn:hover, .favorite-btn.active { color: var(--lime); border-color: rgba(214,239,148,.7); background: rgba(0,0,0,.25); }.favorite-btn .icon-heart::before { font-size: 20px; }.art-copy { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: white; text-shadow: 0 2px 8px rgba(0,0,0,.18); }.art-copy small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.68); font: 8px var(--mono); letter-spacing: .08em; }.art-copy strong { display: block; font-size: 20px; line-height: 1.16; letter-spacing: -.06em; }.product-info { padding: 17px 18px 15px; }.product-type { margin: 0; color: var(--teal); font: 9px var(--mono); letter-spacing: .03em; }.product-info h3 { overflow: hidden; margin: 7px 0 4px; color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }.product-desc { height: 22px; overflow: hidden; margin: 0; color: #91a0a0; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; }.product-bottom strong { color: var(--teal); font-size: 18px; letter-spacing: -.04em; }.add-cart { width: 29px; height: 29px; display: grid; place-items: center; color: white; border: 0; border-radius: 50%; background: var(--teal); font-size: 21px; font-weight: 300; line-height: 1; transition: transform .2s, background .2s; }.add-cart:hover { background: var(--ink); transform: rotate(90deg); }.empty-state { padding: 68px 0; color: var(--muted); text-align: center; font-size: 14px; }

.art-headphone { background: radial-gradient(circle at 68% 25%, #237b8e, transparent 25%), linear-gradient(140deg, #082f3b, #071c35 68%, #0e6470); }.art-headphone::before { width: 190px; height: 190px; right: -50px; top: 52px; border: 1px solid rgba(143,224,220,.42); box-shadow: 0 0 0 22px rgba(110,224,218,.1), 0 0 0 54px rgba(110,224,218,.06); }.art-headphone::after { width: 280px; height: 1px; right: -10px; top: 78px; background: rgba(210,239,148,.2); transform: rotate(-28deg); }.headphone-visual { width: 128px; height: 140px; position: absolute; top: 42px; right: 51px; transform: rotate(17deg); }.headphone-visual::before { content: ''; position: absolute; inset: 0 10px 13px; border: 8px solid #a7d3ce; border-bottom-color: transparent; border-radius: 55px 55px 35px 35px; transform: rotate(-7deg); }.headphone-visual i, .headphone-visual b { width: 39px; height: 73px; position: absolute; top: 55px; border: 6px solid #76aaa9; border-radius: 17px; background: linear-gradient(140deg,#173f4b,#061a28); box-shadow: inset 5px 0 12px rgba(142,236,227,.2); }.headphone-visual i { left: 5px; transform: rotate(8deg); }.headphone-visual b { right: 5px; transform: rotate(-8deg); }.headphone-visual span { width: 19px; height: 19px; position: absolute; left: 49px; top: 79px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 17px var(--lime); }
.art-hub { background: radial-gradient(circle at 72% 50%, #20bcb1, transparent 24%), linear-gradient(140deg, #11294a, #123268 48%, #24134b); }.art-hub::before { width: 240px; height: 240px; right: -90px; top: -55px; border: 1px solid rgba(149,224,255,.48); box-shadow: 0 0 0 20px rgba(93,203,244,.08), 0 0 0 56px rgba(93,203,244,.04); }.hub-visual { width: 130px; height: 130px; position: absolute; top: 57px; right: 54px; display: grid; place-items: center; transform: rotate(-12deg); }.hub-ring { width: 112px; height: 112px; position: absolute; border: 15px solid #70d9d6; border-right-color: #234c9a; border-radius: 50%; box-shadow: 0 0 30px rgba(45,221,213,.36); }.hub-core { width: 53px; height: 53px; position: absolute; border: 1px solid #daf9cb; border-radius: 50%; background: radial-gradient(circle at 30% 28%, #d5ef94, #22b6b1 48%, #12375b); box-shadow: 0 0 28px rgba(93,233,213,.62); }.hub-visual i { width: 8px; height: 8px; position: absolute; border-radius: 50%; background: var(--lime); }.hub-visual i:nth-of-type(1) { top: 3px; }.hub-visual i:nth-of-type(2) { right: 3px; bottom: 18px; }.hub-visual i:nth-of-type(3) { left: 3px; bottom: 20px; }
.art-keyboard { background: linear-gradient(145deg, #e26f75 0%, #75447e 56%, #142c58 100%); }.art-keyboard::before { width: 310px; height: 160px; right: -90px; top: -25px; border: 1px solid rgba(255,242,217,.38); transform: rotate(-25deg); box-shadow: 0 0 0 14px rgba(255,255,255,.05); }.art-keyboard::after { width: 150px; height: 150px; left: -60px; bottom: -80px; background: rgba(255,210,153,.22); }.keyboard-visual { width: 178px; height: 95px; position: absolute; top: 72px; right: 31px; padding: 11px 9px; border: 1px solid rgba(255,255,255,.5); border-radius: 7px; background: linear-gradient(145deg, #485e87, #161e46); box-shadow: 0 22px 30px rgba(32, 14, 70, .35); transform: rotate(14deg) skew(-8deg); }.keyboard-row { display: flex; gap: 3px; margin-bottom: 5px; }.keyboard-row i { width: 13px; height: 10px; border-radius: 2px; background: #d9c3bb; box-shadow: inset 0 -2px rgba(42, 31, 55, .3); }.keyboard-row i:nth-child(2n) { background: #8ec8c7; }.keyboard-row i:nth-child(3n) { background: #f0c184; }.keyboard-row i.long { width: 46px; }
.art-mouse { background: radial-gradient(circle at 17% 25%, #c5eedb, transparent 26%), linear-gradient(140deg, #153d52, #126a73 60%, #a6d890); }.art-mouse::before { width: 260px; height: 260px; right: -85px; top: -100px; border: 1px dashed rgba(222,255,224,.55); }.art-mouse::after { width: 70px; height: 70px; left: 24px; bottom: 26px; background: rgba(214,239,148,.18); }.mouse-visual { width: 94px; height: 132px; position: absolute; top: 61px; right: 70px; border: 2px solid #cbeed0; border-radius: 55% 55% 47% 47%; background: linear-gradient(145deg, #e5f3df, #7dc0ae); box-shadow: 19px 25px 22px rgba(0, 38, 48, .24); transform: rotate(28deg); }.mouse-visual::before { content: ''; position: absolute; left: 50%; top: 0; width: 1px; height: 68px; background: rgba(26,112,112,.45); }.mouse-wheel { width: 9px; height: 18px; position: absolute; left: 43%; top: 21px; border-radius: 8px; background: #1b7477; }.mouse-line { width: 25px; height: 7px; position: absolute; bottom: 18px; left: 33px; border: 1px solid rgba(28,112,111,.45); border-radius: 50%; }
.art-dock { background: linear-gradient(145deg, #273244, #1c5d69 58%, #a5c990); }.art-dock::before { width: 290px; height: 130px; right: -110px; bottom: 18px; border: 1px solid rgba(225,255,224,.42); transform: rotate(-22deg); }.art-dock::after { width: 72px; height: 72px; top: 52px; left: 19px; border: 1px solid rgba(212,239,148,.32); }.dock-visual { width: 190px; height: 72px; position: absolute; top: 102px; right: 33px; border-radius: 11px; background: linear-gradient(160deg,#dce8d1,#537b7b 50%,#173d4b); box-shadow: 17px 22px 30px rgba(0,0,0,.25); transform: rotate(-10deg); }.dock-port { width: 15px; height: 6px; position: absolute; top: 29px; border-radius: 6px; background: #183443; box-shadow: inset 0 0 0 1px rgba(224,255,224,.2); }.dock-port.p1 { left: 28px; }.dock-port.p2 { left: 52px; width: 24px; }.dock-port.p3 { left: 89px; }.dock-port.p4 { left: 113px; width: 29px; }.dock-logo { position: absolute; right: 21px; top: 22px; color: rgba(255,255,255,.64); font: 16px var(--mono); }
.art-speaker { background: radial-gradient(circle at 78% 31%, #8ac4b8, transparent 20%), linear-gradient(145deg, #0d2738, #183f51 55%, #2b7880); }.art-speaker::before { width: 210px; height: 210px; right: -50px; top: -40px; border: 1px solid rgba(216,239,187,.4); }.art-speaker::after { width: 36px; height: 36px; right: 19px; top: 20px; background: var(--lime); filter: blur(13px); opacity: .6; }.speaker-visual { position: absolute; top: 80px; right: 37px; width: 191px; height: 120px; }.speaker-box { width: 48px; height: 80px; position: absolute; bottom: 7px; border-radius: 4px; background: linear-gradient(145deg,#769ba0,#163c4b); box-shadow: 0 19px 22px rgba(0,0,0,.26); }.speaker-box.left { left: 4px; }.speaker-box.right { right: 4px; }.speaker-box i { width: 30px; height: 30px; position: absolute; top: 24px; left: 9px; border: 4px solid #b6dfc5; border-radius: 50%; box-shadow: inset 0 0 0 5px #2d6975; }.speaker-box b { width: 8px; height: 8px; position: absolute; top: 11px; left: 20px; border-radius: 50%; background: var(--lime); }.speaker-wave { width: 70px; height: 70px; position: absolute; left: 60px; top: 5px; border: 1px solid rgba(211,240,190,.55); border-radius: 50%; box-shadow: 0 0 0 9px rgba(211,240,190,.12), 0 0 0 21px rgba(211,240,190,.08); }
.art-light { background: radial-gradient(circle at 58% 32%, #f0e5a9, transparent 18%), linear-gradient(145deg, #182a3e, #26646a 59%, #c7de9b); }.art-light::before { width: 200px; height: 200px; left: 44px; top: -106px; border: 1px solid rgba(250,245,190,.62); box-shadow: 0 0 0 16px rgba(250,245,190,.12), 0 0 0 36px rgba(250,245,190,.06); }.art-light::after { width: 100px; height: 100px; right: -22px; bottom: -49px; background: rgba(219,242,166,.26); filter: blur(15px); }.light-visual { width: 112px; height: 155px; position: absolute; top: 36px; right: 62px; }.light-orb { width: 68px; height: 68px; position: absolute; left: 24px; top: 7px; border: 2px solid #fff0bd; border-radius: 50%; background: radial-gradient(circle at 34% 31%, #fffbd0, #ecd68d 45%, #7cc2a5 68%, transparent 71%); box-shadow: 0 0 38px #f5eaa6; }.light-stand { width: 8px; height: 67px; position: absolute; left: 54px; top: 68px; background: linear-gradient(90deg, #d2dab5, #618a78); transform: rotate(18deg); }.light-shadow { width: 100px; height: 15px; position: absolute; bottom: 8px; border-radius: 50%; background: rgba(5, 38, 47, .28); filter: blur(2px); transform: rotate(-4deg); }
.art-drive { background: linear-gradient(145deg, #103743, #1e6974 55%, #bedf9e); }.art-drive::before { width: 180px; height: 180px; right: -70px; top: -60px; border: 1px solid rgba(219,245,192,.55); }.art-drive::after { width: 18px; height: 18px; left: 32px; top: 51px; border: 1px solid var(--lime); border-radius: 50%; box-shadow: 0 0 0 8px rgba(214,239,148,.1); }.drive-visual { width: 118px; height: 118px; position: absolute; top: 61px; right: 57px; display: grid; place-items: center; border: 2px solid #d6efbd; border-radius: 50%; background: linear-gradient(145deg,#2d7c83,#122f40); box-shadow: 0 24px 25px rgba(0,0,0,.25); transform: rotate(18deg); }.drive-ring { position: absolute; inset: 10px; border: 1px dashed rgba(210,239,148,.8); border-radius: 50%; }.drive-visual span { color: #ddf2bd; font: 16px/1.15 var(--mono); letter-spacing: -.12em; }

.story-section { background: var(--paper-warm); }.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 9vw, 142px); }.story-visual { height: 440px; position: relative; overflow: hidden; background: linear-gradient(145deg, #0a2c3a, #0d666a 63%, #7eae83); }.story-visual::before { content: ''; position: absolute; inset: 0; opacity: .3; background: linear-gradient(90deg, transparent 49.5%, rgba(215,239,148,.3) 50%, transparent 50.5%), linear-gradient(0deg, transparent 49.5%, rgba(215,239,148,.2) 50%, transparent 50.5%); background-size: 84px 84px; }.story-orbit { position: absolute; left: 49%; top: 48%; width: 500px; height: 500px; border: 1px solid rgba(211,239,164,.35); border-radius: 50%; transform: translate(-50%,-50%) rotate(33deg); }.orbit-b { width: 300px; height: 530px; border-color: rgba(154,232,218,.3); transform: translate(-50%,-50%) rotate(-27deg); }.story-card { position: absolute; display: flex; flex-direction: column; color: white; background: rgba(6, 33, 43, .46); border: 1px solid rgba(218,242,193,.35); backdrop-filter: blur(8px); }.story-card-main { width: 230px; height: 267px; left: 50%; top: 51%; padding: 25px 25px 20px; transform: translate(-50%,-50%) rotate(-7deg); }.story-card-main span { color: var(--lime); font: 11px var(--mono); }.story-card-main strong { margin-top: auto; font-size: 34px; line-height: 1.05; letter-spacing: -.09em; }.story-card-main small { margin-top: 14px; color: rgba(255,255,255,.52); font: 8px var(--mono); }.story-card-mini { right: 28px; bottom: 28px; width: 110px; height: 82px; padding: 14px; transform: rotate(9deg); }.story-card-mini b { color: var(--lime); font-size: 21px; }.story-card-mini small { color: rgba(255,255,255,.55); font-size: 9px; }.story-spark { position: absolute; top: 34px; right: 36px; color: var(--lime); font-size: 26px; }.story-copy h2 em { color: var(--teal); }.story-copy > p:not(.eyebrow) { max-width: 470px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }.story-copy .button { margin-top: 20px; }
.services-section { background: #fff; }.compact-heading { align-items: end; }.heading-note { margin: 0 0 3px; color: var(--muted); font-size: 13px; line-height: 1.8; text-align: right; }.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 52px; }.service-card { min-height: 255px; position: relative; padding: 25px; border: 1px solid var(--line); background: var(--paper); transition: transform .25s, background .25s, border .25s; }.service-card:hover { color: white; border-color: var(--ink-2); background: var(--ink-2); transform: translateY(-5px); }.service-number { color: var(--teal); font: 10px var(--mono); }.service-icon { position: absolute; top: 22px; right: 25px; color: var(--teal); font-size: 25px; }.service-card strong { display: block; margin-top: 72px; font-size: 20px; letter-spacing: -.05em; }.service-card p { max-width: 235px; margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.85; }.service-card:hover p { color: rgba(255,255,255,.6); }.service-arrow { position: absolute; right: 25px; bottom: 22px; color: var(--teal); font-size: 18px; transition: transform .2s; }.service-card:hover .service-arrow { transform: translate(4px,-4px); }
.join-section { color: white; background: linear-gradient(110deg, #0a2733, #0c5660); }.join-inner { min-height: 285px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }.join-section h2 { margin: 0; font-size: clamp(31px, 4vw, 50px); line-height: 1.12; letter-spacing: -.07em; }.join-actions { width: 310px; }.join-actions p { margin: 0 0 20px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.8; }.join-actions .button { width: 100%; justify-content: space-between; }
.site-footer { color: rgba(255,255,255,.55); background: var(--ink); }.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; padding-top: 66px; padding-bottom: 54px; }.footer-brand .brand-copy strong { color: white; }.footer-brand .brand-copy small { color: var(--cyan); }.footer-brand p { margin: 24px 0 0; color: rgba(255,255,255,.4); font: 11px/2 var(--mono); }.footer-column { display: flex; flex-direction: column; gap: 11px; }.footer-column h3 { margin: 2px 0 11px; color: white; font-size: 12px; }.footer-column a, .footer-column p { margin: 0; color: rgba(255,255,255,.47); font: 11px var(--mono); transition: color .2s; }.footer-column a:hover { color: var(--lime); }.footer-contact p { margin-bottom: 2px; }.socials { display: flex; gap: 7px; margin-top: 12px; }.socials a { width: 27px; height: 27px; display: grid; place-items: center; color: var(--cyan); border: 1px solid rgba(145,233,224,.34); border-radius: 50%; font: 10px var(--sans); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; padding-bottom: 22px; color: rgba(255,255,255,.28); border-top: 1px solid rgba(145,233,224,.14); font: 9px var(--mono); }
.toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; max-width: calc(100% - 48px); padding: 13px 18px; color: var(--ink); border: 1px solid rgba(214,239,148,.5); border-radius: 3px; background: var(--lime); box-shadow: 0 14px 34px rgba(0,0,0,.18); font-size: 12px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .25s, transform .25s; }.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .primary-nav { gap: 0; }.primary-nav a { padding-right: 8px; padding-left: 8px; font-size: 12px; }.login-link { display: none; }.hero-inner { grid-template-columns: .9fr 1.1fr; }.product-grid { grid-template-columns: repeat(3, 1fr); }.product-card:last-child { display: none; }.footer-main { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
}
@media (max-width: 780px) {
  .container { width: min(100% - 38px, var(--container)); }.announcement-inner { height: 30px; }.announcement-inner span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.nav-inner { min-height: 68px; }.brand-copy strong { font-size: 16px; }.brand-mark { width: 34px; height: 34px; border-radius: 10px; }.primary-nav { display: none; }.nav-actions { margin-left: auto; }.nav-icon-btn { display: none; }.menu-toggle { display: block; }.mobile-menu { display: flex; max-height: 0; overflow: hidden; flex-direction: column; gap: 0; padding: 0 19px; border-top: 0 solid var(--line); background: rgba(248,250,247,.98); transition: max-height .25s, padding .25s, border .25s; }.mobile-menu.open { max-height: 270px; padding-top: 8px; padding-bottom: 11px; border-top: 1px solid var(--line); }.mobile-menu a { padding: 11px 0; color: var(--ink); border-bottom: 1px solid #e7efeb; font-size: 13px; }.hero { min-height: 760px; }.hero-inner { min-height: 700px; display: block; }.hero-copy { padding-top: 72px; }.hero h1 { font-size: clamp(43px, 12vw, 65px); }.hero-description { max-width: 360px; font-size: 13px; }.hero-stage { height: 340px; margin-top: 4px; }.desktop-device { transform: translate(-50%, -50%) scale(.78) perspective(500px) rotateX(2deg) rotateY(-10deg); }.stage-keyboard { transform: translateX(-50%) scale(.76) perspective(320px) rotateX(54deg) rotateZ(-3deg); }.stage-mouse { right: 2%; bottom: 35px; transform: scale(.72) rotate(-18deg); }.stage-plant { right: -8px; bottom: 11px; transform: scale(.75); }.orbit-one { width: 390px; height: 180px; }.orbit-two { width: 480px; height: 210px; }.note-top { top: 16px; right: 0; transform: scale(.85); transform-origin: right top; }.note-bottom { bottom: 20px; left: 0; transform: scale(.85); transform-origin: left bottom; }.hero-bottom { bottom: 15px; }.feature-grid { grid-template-columns: repeat(2, 1fr); }.feature-item:nth-child(2) { border-right: 0; }.feature-item:nth-child(3) { border-left: 1px solid #d4e4dc; border-top: 1px solid #d4e4dc; }.feature-item:nth-child(4) { border-top: 1px solid #d4e4dc; }.section { padding: 78px 0; }.section-heading { display: block; }.text-link { display: inline-block; margin-top: 22px; }.catalog-toolbar { display: block; margin-top: 34px; }.category-tabs { gap: 4px; }.catalog-search { width: 100%; margin-top: 16px; }.product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }.product-card:last-child { display: block; }.product-image { height: 210px; }.product-info { padding: 13px 12px 12px; }.product-info h3 { font-size: 13px; }.product-desc { font-size: 10px; }.product-bottom { margin-top: 11px; }.product-bottom strong { font-size: 16px; }.art-copy { left: 13px; bottom: 13px; }.art-copy strong { font-size: 16px; }.headphone-visual { right: 22px; transform: scale(.76) rotate(17deg); transform-origin: top right; }.hub-visual, .keyboard-visual, .mouse-visual, .dock-visual, .drive-visual { right: 15px; transform: scale(.8) rotate(14deg); transform-origin: top right; }.speaker-visual { right: 4px; transform: scale(.8); transform-origin: top right; }.light-visual { right: 25px; transform: scale(.8); transform-origin: top right; }.story-grid { grid-template-columns: 1fr; gap: 48px; }.story-visual { height: 360px; }.story-card-main { width: 200px; height: 225px; }.story-card-main strong { font-size: 28px; }.story-copy > p:not(.eyebrow) { font-size: 13px; }.service-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }.service-card { min-height: 190px; }.service-card strong { margin-top: 48px; }.compact-heading { display: flex; align-items: end; }.heading-note { font-size: 11px; }.join-inner { min-height: 340px; display: block; padding-top: 72px; padding-bottom: 62px; }.join-actions { width: 100%; margin-top: 29px; }.footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }.footer-brand { grid-column: 1 / -1; }.footer-contact { grid-column: 1 / -1; }.footer-bottom { display: block; padding-top: 16px; padding-bottom: 20px; line-height: 2; }.footer-bottom span { display: block; }
}

/* Homepage health dashboard banner. */
.health-orb { position: absolute; border: 1px solid rgba(145,233,224,.34); border-radius: 50%; pointer-events: none; }
.health-orb-one { width: 420px; height: 420px; left: 51%; top: 49%; transform: translate(-50%, -50%); box-shadow: 0 0 0 24px rgba(145,233,224,.05), 0 0 0 62px rgba(145,233,224,.035), 0 0 0 106px rgba(145,233,224,.025); }
.health-orb-two { width: 225px; height: 225px; left: 51%; top: 49%; border-style: dashed; transform: translate(-50%, -50%) rotate(31deg); }
.health-dashboard { position: absolute; z-index: 4; width: 428px; height: 310px; left: 52%; top: 51%; padding: 22px 24px; overflow: hidden; border: 1px solid rgba(191,255,239,.4); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(6,45,57,.72)); box-shadow: 0 35px 65px rgba(0,0,0,.28), inset 0 0 45px rgba(127,244,224,.08); backdrop-filter: blur(13px); transform: translate(-50%, -50%) rotate(-4deg); }
.health-dashboard::before { content: ''; position: absolute; width: 190px; height: 190px; right: -92px; bottom: -107px; border: 1px solid rgba(214,239,148,.38); border-radius: 50%; box-shadow: 0 0 0 15px rgba(214,239,148,.05), 0 0 0 32px rgba(214,239,148,.035); }
.dashboard-top { position: relative; display: flex; justify-content: space-between; color: rgba(213,255,247,.55); font: 9px var(--mono); letter-spacing: .12em; }
.dashboard-top b { display: flex; align-items: center; gap: 6px; color: var(--lime); font-weight: 500; letter-spacing: .08em; }
.dashboard-top i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.dashboard-title { position: relative; display: flex; align-items: flex-end; justify-content: space-between; margin-top: 24px; color: rgba(240,255,251,.72); font-size: 13px; }
.dashboard-title strong { color: #fff; font-size: 48px; line-height: .9; letter-spacing: -.08em; }
.dashboard-title small { margin-left: 4px; color: rgba(145,233,224,.66); font: 11px var(--mono); letter-spacing: 0; }
.dashboard-progress { height: 4px; position: relative; margin-top: 14px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.12); }
.dashboard-progress i { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal-bright), var(--lime)); box-shadow: 0 0 12px rgba(24,200,193,.7); }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 19px; }
.dashboard-metrics div { min-height: 89px; padding: 12px 11px; border: 1px solid rgba(191,255,239,.16); border-radius: 12px; background: rgba(3,30,39,.34); }
.dashboard-metrics span, .dashboard-metrics small { display: block; color: rgba(214,255,246,.55); font: 9px var(--mono); }
.dashboard-metrics strong { display: block; margin: 9px 0 4px; color: white; font-size: 24px; letter-spacing: -.06em; }
.dashboard-metrics div:nth-child(2) strong { color: var(--lime); }
.dashboard-metrics div:nth-child(3) strong { color: #9fe8f0; font-size: 21px; }
.dashboard-footer { display: flex; justify-content: space-between; gap: 15px; margin-top: 20px; color: rgba(224,255,249,.48); font: 9px var(--mono); }
.dashboard-footer b { color: var(--cyan); font-weight: 500; }
.health-product-chip { position: absolute; z-index: 5; display: grid; align-items: center; justify-items: center; width: 104px; height: 104px; padding: 11px; border: 1px solid rgba(208,239,148,.42); border-radius: 19px; color: #fff; background: linear-gradient(145deg, rgba(20,117,119,.86), rgba(8,49,66,.88)); box-shadow: 0 16px 28px rgba(0,0,0,.2); transform: rotate(7deg); }
.health-product-chip span { color: var(--cyan); font: 10px var(--mono); }
.health-product-chip b { font-size: 25px; line-height: 1; letter-spacing: -.08em; }
.health-product-chip small { color: rgba(239,255,249,.68); font-size: 9px; }
.chip-oximeter { right: 1%; top: 74px; }
.chip-ring { left: 3%; bottom: 68px; border-color: rgba(145,233,224,.35); background: linear-gradient(145deg, rgba(20,78,112,.9), rgba(7,39,58,.9)); transform: rotate(-9deg); }

/* Account, checkout and transaction feedback. */
.account-main, .checkout-main { min-height: 760px; padding: 38px 0 95px; background: var(--paper-warm); }
.account-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(410px, .85fr); overflow: hidden; border: 1px solid #dcebe5; border-radius: 8px; background: #fff; box-shadow: 0 20px 55px rgba(13,47,51,.08); }
.account-intro { min-height: 620px; padding: 67px 58px; color: #fff; background: radial-gradient(circle at 82% 13%, rgba(145,233,224,.18), transparent 24%), linear-gradient(145deg, #071f2d, #0b5e63 75%, #1aa994); }
.account-intro h1 { margin: 0; font-size: clamp(39px, 5vw, 64px); line-height: 1.08; letter-spacing: -.09em; }
.account-intro h1 em { color: var(--lime); font-style: normal; }
.account-intro > p:not(.eyebrow) { max-width: 390px; margin: 24px 0 0; color: rgba(242,255,251,.7); font-size: 13px; line-height: 1.95; }
.account-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.account-benefits span { padding: 8px 11px; color: #d7fff3; border: 1px solid rgba(191,255,239,.23); border-radius: 4px; background: rgba(255,255,255,.08); font: 10px var(--mono); }
.account-card { padding: 50px 48px; background: #fff; }
.account-card-heading strong, .account-card-heading span { display: block; }
.account-card-heading strong { margin-top: 8px; color: var(--ink); font-size: 27px; letter-spacing: -.07em; }
.account-card-heading > span:last-child { margin-top: 7px; color: #78918e; font-size: 11px; }
.account-tabs { display: flex; gap: 28px; margin-top: 31px; border-bottom: 1px solid #e2ece8; }
.account-tabs button { position: relative; padding: 0 2px 13px; color: #819692; border: 0; background: transparent; font-size: 13px; }
.account-tabs button::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s; }
.account-tabs button.active { color: var(--teal); font-weight: 700; }.account-tabs button.active::after { transform: scaleX(1); }
.account-form { display: grid; gap: 14px; margin-top: 25px; }.account-form[hidden], .account-dashboard[hidden], #checkout-content[hidden], .checkout-empty[hidden], .checkout-success[hidden] { display: none; }
.account-form label, .checkout-form label { display: flex; flex-direction: column; gap: 7px; color: #587572; font-size: 11px; }
.account-form input, .checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; min-height: 43px; padding: 10px 12px; color: var(--ink); border: 1px solid #d9e7e2; border-radius: 4px; outline: 0; background: #fbfdfb; font-size: 12px; }
.account-form textarea, .checkout-form textarea { resize: vertical; }.account-form input:focus, .checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px #e5f5ee; }
.account-form-error, .checkout-form-error { min-height: 18px; margin: -3px 0 -7px; color: #b35f52; font-size: 11px; }.account-submit { width: 100%; justify-content: space-between; margin-top: 2px; }.account-form-tip { margin: -1px 0 0; color: #9aa9a5; font-size: 10px; line-height: 1.65; }.sms-code-row { position: relative; }.sms-code-row input { padding-right: 110px; }.sms-code-row button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); padding: 5px 12px; min-height: 31px; background: #dff0ea; color: var(--teal); border: 0; border-radius: 3px; font-size: 11px; cursor: pointer; white-space: nowrap; }.sms-code-row button:disabled { opacity: .5; cursor: not-allowed; }
.account-agreement { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 8px !important; line-height: 1.7; }.account-agreement input { width: 16px !important; min-height: 16px !important; flex: 0 0 16px; margin-top: 2px; accent-color: var(--teal); }.account-agreement a, .checkout-agreement a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.account-user-card { display: flex; align-items: center; gap: 12px; margin-top: 25px; padding: 15px; border: 1px solid #dcebe5; background: #f6fbf8; }.account-user-mark { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border-radius: 10px; background: var(--teal); font: 700 16px var(--mono); }.account-user-card p, .account-user-card strong, .account-user-card small { display: block; margin: 0; }.account-user-card p { color: #8ba09b; font-size: 9px; }.account-user-card strong { margin-top: 2px; color: var(--ink); font-size: 14px; }.account-user-card small { margin-top: 3px; color: #78918e; font: 10px var(--mono); }.account-user-card button { margin-left: auto; color: #a36e68; border: 0; background: transparent; font-size: 10px; }.account-user-card button:hover { color: #7e3734; }
.account-orders-heading { display: flex; justify-content: space-between; gap: 15px; margin-top: 28px; padding-bottom: 11px; border-bottom: 1px solid #e2ece8; color: var(--ink); font-size: 14px; }.account-orders-heading a { color: var(--teal); font: 10px var(--mono); }.account-order { position: relative; margin-top: 12px; padding: 13px; border: 1px solid #e1ece7; background: #fff; }.account-order > div { display: flex; justify-content: space-between; gap: 8px; }.account-order > div strong { color: var(--ink); font: 11px var(--mono); }.account-order > div span { color: #92a5a0; font-size: 9px; }.account-order > b { position: absolute; top: 13px; right: 13px; color: var(--teal); font-size: 10px; }.account-order p { margin: 10px 0 6px; padding-right: 35px; color: #718985; font-size: 10px; line-height: 1.7; }.account-order-total { color: var(--teal); font-size: 13px; }.account-orders-empty { display: grid; gap: 6px; margin-top: 15px; padding: 28px 15px; color: #849994; border: 1px dashed #cfe3db; background: #f8fcfa; text-align: center; }.account-orders-empty strong { color: var(--ink); font-size: 13px; }.account-orders-empty span { font-size: 10px; }.account-orders-empty a { margin-top: 5px; color: var(--teal); font: 10px var(--mono); }

.checkout-shell { padding: 31px 33px 36px; border: 1px solid #dcebe5; border-radius: 8px; background: #fff; box-shadow: 0 20px 55px rgba(13,47,51,.08); }.checkout-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid #e2ece8; }.checkout-heading h1 { margin: 6px 0 6px; color: var(--ink); font-size: clamp(31px, 4vw, 46px); letter-spacing: -.08em; }.checkout-heading p:last-child { margin: 0; color: #78918e; font-size: 12px; }.checkout-heading-note { color: #839691; font: 10px var(--mono); }.checkout-heading-note strong { color: var(--teal); }.checkout-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }.checkout-steps li { position: relative; display: flex; align-items: center; gap: 10px; color: #9aa9a5; font-size: 11px; }.checkout-steps li:not(:last-child)::after { content: ''; position: absolute; top: 15px; right: 0; left: 113px; height: 1px; background: #dce9e3; }.checkout-steps li.active, .checkout-steps li.completed { color: var(--teal); }.checkout-steps li.active::after, .checkout-steps li.completed::after { background: #9ddaca; }.checkout-steps li span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 31px; border: 1px solid #d8e7e1; border-radius: 50%; color: #91a29d; background: #f8fbfa; font: 10px var(--mono); }.checkout-steps li.active span, .checkout-steps li.completed span { color: #fff; border-color: var(--teal); background: var(--teal); }.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr); gap: 20px; }.checkout-form { display: grid; gap: 17px; }.checkout-card { padding: 22px 23px; border: 1px solid #dfebe6; background: #fbfdfc; }.checkout-card-heading h2 { margin: 6px 0 5px; color: var(--ink); font-size: 19px; letter-spacing: -.05em; }.checkout-card-heading > span { color: #829590; font-size: 10px; }.checkout-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }.checkout-form-grid .full { grid-column: 1 / -1; }.checkout-payment-options { display: grid; gap: 9px; margin-top: 18px; }.checkout-payment-option { display: flex !important; flex-direction: row !important; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid #dce9e4; background: #fff; cursor: pointer; }.checkout-payment-option:has(input:checked) { border-color: #8dd0bf; background: #effaf5; }.checkout-payment-option input { width: 15px; min-height: 15px; flex: 0 0 15px; accent-color: var(--teal); }.checkout-payment-option .payment-icon { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; border-radius: 8px; background: #1ab17f; font-weight: 700; }.checkout-payment-option .payment-blue { background: #1b85ce; }.checkout-payment-option .payment-dark { background: #21434d; }.checkout-payment-option strong, .checkout-payment-option small { display: block; }.checkout-payment-option strong { color: var(--ink); font-size: 11px; }.checkout-payment-option small { margin-top: 2px; color: #849994; font-size: 9px; }.checkout-note-field { margin-top: 16px; }.checkout-note-field textarea { min-height: 70px; }.checkout-agreement { flex-direction: row !important; align-items: flex-start; gap: 8px !important; margin-top: 17px; line-height: 1.7; }.checkout-agreement input { width: 16px !important; min-height: 16px !important; flex: 0 0 16px; margin-top: 2px; accent-color: var(--teal); }.checkout-submit { min-height: 49px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #fff; border: 1px solid var(--teal); border-radius: 4px; background: var(--teal); font-size: 13px; font-weight: 800; box-shadow: 0 12px 26px rgba(7,155,154,.16); }.checkout-submit:hover { background: var(--ink); border-color: var(--ink); }.checkout-safe-note { margin: -7px 0 0; color: #90a19d; font: 10px/1.7 var(--mono); }.checkout-summary { align-self: start; padding: 22px; border: 1px solid #dcebe5; background: #f8fcfa; }.checkout-summary-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #dce9e3; }.checkout-summary-heading h2 { margin: 6px 0 0; color: var(--ink); font-size: 20px; }.checkout-summary-heading > span { color: var(--teal); font: 10px var(--mono); }.checkout-items { display: grid; gap: 12px; padding: 17px 0; }.checkout-item { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 9px; }.checkout-item-visual { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; border-radius: 5px; background: linear-gradient(145deg, #2181ba, #0c3e71); }.checkout-item-visual.visual-care { background: linear-gradient(145deg, #3b9d7d, #135e62); }.checkout-item-visual.visual-supplement { background: linear-gradient(145deg, #c78431, #704126); }.checkout-item-visual b { font-size: 13px; }.checkout-item strong, .checkout-item span { display: block; }.checkout-item strong { overflow: hidden; color: var(--ink); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.checkout-item span { overflow: hidden; margin-top: 3px; color: #829590; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }.checkout-item > b { color: var(--teal); font: 10px var(--mono); white-space: nowrap; }.checkout-total-lines { padding-top: 13px; border-top: 1px solid #dce9e3; }.checkout-total-lines div { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; color: #78918e; font-size: 10px; }.checkout-total-lines strong { color: var(--ink); }.checkout-total-line { margin-top: 5px; padding-top: 14px !important; border-top: 1px dashed #d3e3dd; }.checkout-total-line strong { color: var(--teal); font-size: 21px; }.checkout-summary-tip { margin: 17px 0 0; padding-top: 14px; border-top: 1px solid #dce9e3; color: #879b95; font-size: 10px; line-height: 1.7; }.checkout-empty { display: grid; gap: 9px; padding: 80px 20px; color: #829590; border: 1px dashed #cfe3db; text-align: center; }.checkout-empty strong { color: var(--ink); font-size: 18px; }.checkout-empty span { font-size: 11px; }.checkout-empty .button { width: max-content; margin: 12px auto 0; }.checkout-success { display: grid; justify-items: center; padding: 72px 20px 85px; color: #81948e; text-align: center; }.checkout-success-mark { width: 68px; height: 68px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 13px #e1f5ec; font-size: 32px; }.checkout-success .about-mini-label { margin-top: 28px; }.checkout-success h2 { margin: 9px 0 8px; color: var(--ink); font-size: 30px; letter-spacing: -.07em; }.checkout-success p:not(.about-mini-label) { margin: 0; color: #718985; font-size: 12px; }.checkout-success > span:not(.checkout-success-mark) { margin-top: 10px; font-size: 11px; }.checkout-success > div { display: flex; gap: 12px; margin-top: 27px; }.button-quiet-dark { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; color: var(--teal); border: 1px solid #abd8c9; background: #fff; font-size: 12px; font-weight: 700; }
.add-cart.is-added { color: #fff; border-color: var(--teal); background: var(--teal); transform: scale(1.08); }.detail-add.is-added { color: #fff !important; border-color: #0c806f !important; background: #0c806f !important; }
.cart-nav.is-bumping { animation: cart-bump .62s ease; }.cart-nav.is-bumping .nav-badge { animation: badge-pop .62s ease; }
@keyframes cart-bump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.2) rotate(-8deg); } 65% { transform: scale(.95) rotate(6deg); } }
@keyframes badge-pop { 0%,100% { transform: scale(1); } 45% { transform: scale(1.45); background: var(--lime); color: var(--ink); } }

@media (max-width: 900px) {
  .account-shell { grid-template-columns: 1fr; }.account-intro { min-height: 0; padding: 49px 42px; }.account-intro h1 { font-size: 48px; }.account-card { padding: 38px 42px; }.checkout-shell { padding-right: 24px; padding-left: 24px; }.checkout-layout { grid-template-columns: 1fr; }.checkout-summary { order: -1; }
}
@media (max-width: 780px) {
  .health-dashboard { width: 350px; height: 270px; left: 50%; top: 50%; padding: 18px 19px; border-radius: 19px; }.health-orb-one { width: 350px; height: 350px; }.health-orb-two { width: 190px; height: 190px; }.dashboard-title { margin-top: 16px; }.dashboard-title strong { font-size: 40px; }.dashboard-metrics { margin-top: 14px; }.dashboard-metrics div { min-height: 75px; padding: 9px 8px; }.dashboard-metrics strong { margin-top: 6px; font-size: 20px; }.dashboard-footer { margin-top: 12px; }.health-product-chip { transform: scale(.78) rotate(7deg); }.chip-oximeter { right: -4%; top: 35px; }.chip-ring { left: -4%; bottom: 31px; transform: scale(.78) rotate(-9deg); }.account-main, .checkout-main { padding-top: 23px; }.account-intro { padding: 38px 25px; }.account-intro h1 { font-size: 42px; }.account-intro > p:not(.eyebrow) { font-size: 12px; }.account-benefits { margin-top: 29px; }.account-card { padding: 31px 23px; }.checkout-shell { padding: 23px 17px 27px; }.checkout-heading { display: block; }.checkout-heading-note { display: block; margin-top: 17px; }.checkout-steps { gap: 5px; }.checkout-steps li { display: block; text-align: center; }.checkout-steps li:not(:last-child)::after { top: 15px; left: 64%; }.checkout-steps li span { margin: 0 auto 7px; }.checkout-steps li strong { display: block; font-size: 9px; }.checkout-form-grid { grid-template-columns: 1fr; }.checkout-form-grid .full { grid-column: auto; }.checkout-card { padding: 18px 15px; }.checkout-item > b { font-size: 9px; }.checkout-success { padding-right: 10px; padding-left: 10px; }.checkout-success h2 { font-size: 26px; }.checkout-success > div { flex-direction: column; width: 100%; }.checkout-success .button { width: 100%; }.checkout-heading h1 { font-size: 36px; }
}
@media (max-width: 440px) {
  .hero-actions { gap: 11px; }.button { padding: 0 17px; gap: 12px; }.button-quiet { min-width: 100px; }.hero-proof { margin-top: 39px; }.feature-item { padding-right: 9px; padding-left: 9px; gap: 8px; }.feature-item strong { font-size: 11px; }.feature-item small { font-size: 8px; }.product-image { height: 182px; }.product-tag { left: 10px; top: 11px; font-size: 7px; }.favorite-btn { top: 7px; right: 7px; transform: scale(.85); }.product-info h3 { margin-top: 5px; font-size: 12px; }.product-desc { font-size: 9px; }.art-copy { bottom: 10px; }.art-copy small { font-size: 7px; }.art-copy strong { font-size: 14px; }.add-cart { width: 26px; height: 26px; font-size: 18px; }.story-visual { height: 310px; }.story-card-main { width: 175px; height: 200px; }.story-card-mini { right: 10px; bottom: 15px; }.compact-heading { display: block; }.heading-note { margin-top: 18px; text-align: left; }.footer-main { padding-top: 50px; }
}

/* Merchant landing page — follows the supplied onboarding reference layout. */
.onboarding-page {
  --reference-green: #10a989;
  --reference-green-deep: #087661;
  --reference-ink: #142f2d;
  --reference-muted: #71817e;
  background: #f3f8f7;
  color: var(--reference-ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.onboarding-page .announcement {
  height: 38px;
  background: #f0f0f0;
  color: #656d6d;
  font-size: 12px;
}

.onboarding-page .announcement-inner {
  max-width: 1140px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 44px;
}

.onboarding-page .announcement-inner > a {
  color: #606868;
}

.onboarding-page .announcement-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.onboarding-page .announcement-links a { color: #606868; }
.onboarding-page .announcement-dot { display: none; }

.onboarding-page .site-header {
  background: #fff;
  color: #222;
  box-shadow: 0 1px 0 rgba(20, 49, 46, .08);
  position: relative;
  z-index: 10;
}

.onboarding-page .nav-inner {
  max-width: 1140px;
  min-height: 68px;
  gap: 24px;
}

.onboarding-page .reference-brand {
  flex: 0 0 218px;
  min-width: 218px;
  color: #101b1a;
}

.onboarding-page .reference-brand-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .01em;
  white-space: nowrap;
}

.onboarding-page .primary-nav {
  flex: 1;
  justify-content: space-between;
  gap: 16px;
}

.onboarding-page .primary-nav a {
  padding: 24px 0 20px;
  color: #4a5352;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.onboarding-page .primary-nav a:hover,
.onboarding-page .primary-nav a.active {
  color: #1c2927;
  border-bottom-color: #1c2927;
}

.onboarding-page .reference-icons {
  flex: 0 0 auto;
  gap: 12px;
}

.onboarding-page .reference-icons > a,
.onboarding-page .reference-icons .menu-toggle {
  color: #111;
  font-size: 15px;
  line-height: 1;
}

.onboarding-page .reference-icons > a:nth-child(2) { font-size: 19px; }
.onboarding-page .reference-icons > a:nth-child(3) { transform: rotate(180deg); }
.onboarding-page .reference-icons .menu-toggle { display: none; }

.onboarding-page .mobile-menu { display: none; }

.reference-hero {
  position: relative;
  overflow: hidden;
  min-height: 692px;
  background: linear-gradient(111deg, #066e5e 0%, #079b7e 53%, #18b69b 100%);
  color: #fff;
}

.reference-hero::before,
.reference-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.reference-hero::before { width: 650px; height: 650px; left: -300px; bottom: -350px; }
.reference-hero::after { width: 420px; height: 420px; right: -150px; top: 80px; }

.reference-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.28) 50%, transparent 51%), linear-gradient(0deg, transparent 49%, rgba(255,255,255,.28) 50%, transparent 51%);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.5), transparent 78%);
}

.reference-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  min-height: 692px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
  padding-top: 34px;
  padding-bottom: 58px;
}

.reference-hero-copy { align-self: start; padding-top: 22px; }

.reference-eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.reference-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.12;
  letter-spacing: -.055em;
  font-weight: 900;
}

.reference-hero h1 em { color: #fff; font-style: normal; }

.reference-hero-description {
  max-width: 500px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.9;
}

.reference-welcome-card {
  width: min(100%, 565px);
  padding: 25px 27px 23px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  color: #314c49;
  box-shadow: 0 18px 48px rgba(0, 69, 57, .16);
}

.reference-welcome-title { display: flex; align-items: center; gap: 14px; }

.reference-welcome-icon,
.reference-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: linear-gradient(145deg, #38c7aa, #079777);
  color: #fff;
  font-size: 21px;
  box-shadow: 0 7px 15px rgba(14, 162, 132, .22);
}

.reference-welcome-title strong { display: block; font-size: 17px; }
.reference-welcome-title small { display: block; margin-top: 4px; color: #8a9b98; font-size: 12px; }

.reference-welcome-list {
  margin: 20px 0 18px;
  padding: 13px 0 4px;
  border-top: 1px solid #e8eeec;
}

.reference-welcome-list p { margin: 8px 0; color: #60716e; font-size: 12px; }
.reference-welcome-list span { margin-right: 8px; color: var(--reference-green); font-weight: 900; }

.reference-welcome-actions { display: flex; gap: 13px; }

.reference-primary-button,
.reference-secondary-button {
  min-width: 133px;
  height: 44px;
  padding: 0 22px;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.reference-primary-button { border: 1px solid var(--reference-green); background: var(--reference-green); color: #fff; box-shadow: 0 8px 16px rgba(14, 165, 133, .2); }
.reference-secondary-button { border: 1px solid #b8ddd5; background: #fff; color: var(--reference-green-deep); }
.reference-primary-button:hover, .reference-secondary-button:hover { transform: translateY(-2px); }

.reference-stats { display: flex; gap: 18px; margin-top: 25px; }
.reference-stats > div { min-width: 132px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.1); }
.reference-stats strong { display: block; font-size: 21px; letter-spacing: .03em; }
.reference-stats span { display: block; margin-top: 4px; color: rgba(255,255,255,.7); font-size: 12px; }

.reference-hero-art { position: relative; min-height: 447px; align-self: center; }
.reference-art-panel { position: absolute; inset: 23px 0 24px 0; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg, #fff8e8 0%, #f9e0b6 41%, #ed9d39 100%); box-shadow: 0 24px 54px rgba(0, 65, 54, .23); }
.reference-art-panel::before { content: ""; position: absolute; inset: -20% -20% 22%; background: repeating-linear-gradient(122deg, rgba(255,255,255,.36) 0 2px, transparent 2px 68px); transform: rotate(-2deg); opacity: .64; }
.reference-art-sun { position: absolute; width: 330px; height: 330px; top: -90px; right: -50px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.74), rgba(255,225,154,.08) 65%, transparent 70%); }
.reference-art-branch { position: absolute; width: 120%; height: 20px; left: -12%; bottom: 26%; border-radius: 100%; background: #7a5332; transform: rotate(-27deg); box-shadow: 0 5px 0 rgba(116,72,35,.12); }
.reference-art-branch::before, .reference-art-branch::after { content: ""; position: absolute; height: 13px; border-radius: 100%; background: #835631; transform-origin: left center; }
.reference-art-branch::before { width: 190px; left: 28%; top: -2px; transform: rotate(-42deg); }
.reference-art-branch::after { width: 155px; left: 59%; top: 3px; transform: rotate(34deg); }
.reference-flower { position: absolute; z-index: 2; color: #ed8c1d; font-family: Georgia, serif; font-size: 105px; line-height: 1; text-shadow: 10px 8px 0 rgba(218, 117, 18, .18), 0 0 10px rgba(255,255,255,.35); }
.flower-a { left: 11%; top: 13%; transform: rotate(-13deg); }
.flower-b { left: 42%; top: 38%; font-size: 126px; transform: rotate(7deg); }
.flower-c { right: 5%; top: 13%; font-size: 96px; transform: rotate(20deg); }
.flower-d { right: 23%; bottom: 2%; font-size: 86px; transform: rotate(-18deg); }
.reference-leaf { position: absolute; z-index: 3; width: 56px; height: 25px; border-radius: 100% 0 100% 0; background: #599a5e; box-shadow: inset 0 3px 5px rgba(255,255,255,.22); }
.leaf-a { left: 31%; top: 28%; transform: rotate(26deg); }
.leaf-b { left: 74%; top: 30%; transform: rotate(-34deg); }
.leaf-c { right: 36%; bottom: 10%; transform: rotate(43deg); }
.reference-art-badge { position: absolute; z-index: 4; top: 0; right: 12px; padding: 11px 19px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--reference-green-deep); box-shadow: 0 8px 16px rgba(0, 60, 50, .12); font-size: 12px; font-weight: 800; }
.reference-art-index { position: absolute; z-index: 5; left: 10px; bottom: 0; display: flex; gap: 2px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.24); }
.reference-art-index span { color: #fff; font-size: 12px; }
.reference-art-index span.active { padding-right: 2px; font-weight: 900; }

.reference-notice { position: relative; z-index: 3; display: grid; grid-template-columns: 60px 155px minmax(0, 1fr) 218px; align-items: center; gap: 16px; min-height: 187px; margin-top: -30px; padding: 25px 28px; border: 1px solid rgba(195, 228, 220, .9); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 14px 35px rgba(31, 95, 81, .1); }
.reference-notice-icon { width: 48px; height: 48px; border-radius: 15px; font-size: 29px; }
.reference-notice-title strong, .reference-notice-title span { display: block; }
.reference-notice-title strong { font-size: 18px; }
.reference-notice-title span { margin-top: 4px; color: var(--reference-green); font-size: 12px; }
.reference-notice > p { margin: 0; color: #71827e; font-size: 13px; line-height: 1.9; }
.reference-notice-tabs { display: grid; gap: 10px; }
.reference-notice-tabs button { height: 34px; border: 1px solid #e4efec; border-radius: 999px; background: #fff; color: #6f8b85; font-size: 12px; text-align: left; padding: 0 15px; cursor: pointer; }
.reference-notice-tabs button.active, .reference-notice-tabs button:hover { border-color: #d3efe9; background: #effbf8; color: var(--reference-green-deep); }

.reference-process-section { padding: 76px 0 96px; }
.reference-process-heading { text-align: center; }
.reference-process-kicker { margin: 0 0 6px; color: var(--reference-green); font-size: 11px; font-weight: 900; letter-spacing: .23em; }
.reference-process-heading h2 { margin: 0; color: #102d2a; font-size: 38px; letter-spacing: -.04em; }
.reference-process-heading > p:last-child { margin: 9px 0 35px; color: #91a09e; font-size: 13px; }
.reference-process-card { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; padding: 47px 55px 36px; border: 1px solid #e7efed; border-radius: 22px; background: #fff; box-shadow: 0 12px 30px rgba(37, 91, 82, .07); }
.reference-process-line { position: absolute; z-index: 0; top: 91px; left: 11%; right: 11%; height: 2px; background: #c9e8e2; }
.reference-process-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; border: 0; background: transparent; color: #26433f; text-align: center; cursor: pointer; }
.reference-process-icon { display: grid; place-items: center; width: 75px; height: 75px; border: 2px solid #bce5dd; border-radius: 50%; background: #f6fffd; color: #2aa992; font-size: 27px; box-shadow: 0 12px 22px rgba(34, 155, 128, .08); transition: all .2s ease; }
.reference-process-step strong { margin-top: 20px; font-size: 14px; }
.reference-process-step small { margin-top: 8px; color: #9aa9a7; font-size: 11px; }
.reference-process-step.active .reference-process-icon, .reference-process-step:hover .reference-process-icon { border-color: var(--reference-green); background: var(--reference-green); color: #fff; transform: translateY(-3px); }
.reference-process-detail { width: min(100% - 40px, 710px); margin: 20px auto 0; color: #77908a; font-size: 13px; text-align: center; }

.onboarding-page .onboarding-intro,
.onboarding-page .onboarding-process-section { display: none !important; }
.onboarding-page .onboarding-form-section,
.onboarding-page .progress-section { display: none !important; }
.onboarding-page.show-application .onboarding-form-section,
.onboarding-page.show-progress .progress-section { display: block !important; }
.onboarding-page.show-application .reference-hero,
.onboarding-page.show-application .reference-notice,
.onboarding-page.show-application .reference-process-section,
.onboarding-page.show-progress .reference-hero,
.onboarding-page.show-progress .reference-notice,
.onboarding-page.show-progress .reference-process-section { display: none; }

.reference-back-button { margin: 0 0 18px; border: 0; background: transparent; color: var(--reference-green-deep); font-size: 13px; cursor: pointer; }
.onboarding-page .onboarding-form-section { min-height: 800px; padding: 55px 0 80px; background: #f3f8f7; }
.onboarding-page .progress-section { padding: 55px 0 100px; background: #f3f8f7; }
.onboarding-page .progress-box { max-width: 1140px; }

.reference-footer { color: rgba(255,255,255,.76); background: #4d4d4d; }
.reference-footer-inner { max-width: 1140px; min-height: 204px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.reference-footer h3 { margin: 0 0 20px; color: #fff; font-size: 17px; }
.reference-footer p { margin: 8px 0; font-size: 12px; }
.reference-hotline { display: flex; flex-direction: column; align-items: flex-start; }
.reference-hotline span { font-size: 13px; }
.reference-hotline strong { margin: 5px 0; color: #fff; font-size: 40px; letter-spacing: .08em; }
.reference-hotline small { font-size: 12px; }
.reference-footer-bottom { min-height: 61px; display: grid; place-items: center; background: #2e2e2e; color: rgba(255,255,255,.62); font-size: 12px; text-align: center; }

@media (max-width: 1120px) {
  .onboarding-page .nav-inner, .onboarding-page .announcement-inner, .reference-hero-inner, .reference-footer-inner { padding-left: 24px; padding-right: 24px; }
  .onboarding-page .primary-nav { gap: 10px; }
  .onboarding-page .primary-nav a { font-size: 12px; }
  .reference-hero-inner { gap: 26px; }
  .reference-process-card { padding-left: 25px; padding-right: 25px; }
}

@media (max-width: 840px) {
  .onboarding-page .announcement-inner { gap: 18px; }
  .onboarding-page .announcement-links { gap: 11px; }
  .onboarding-page .primary-nav { display: none; }
  .onboarding-page .reference-icons .menu-toggle { display: inline-flex; }
  .onboarding-page .mobile-menu { display: flex; }
  .reference-hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 55px; }
  .reference-hero-copy { padding-top: 0; }
  .reference-hero-art { min-height: 400px; }
  .reference-notice { grid-template-columns: 52px 1fr; }
  .reference-notice > p { grid-column: 1 / -1; }
  .reference-notice-tabs { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .reference-process-card { grid-template-columns: repeat(5, minmax(135px, 1fr)); overflow-x: auto; padding: 42px 18px 30px; }
  .reference-process-line { left: 110px; right: 110px; width: 580px; }
}

@media (max-width: 580px) {
  .onboarding-page .announcement { height: auto; }
  .onboarding-page .announcement-inner { min-height: 42px; flex-wrap: wrap; gap: 5px 15px; padding-top: 7px; padding-bottom: 7px; }
  .onboarding-page .announcement-links { width: 100%; margin-left: 0; justify-content: space-between; }
  .onboarding-page .reference-brand { flex-basis: 190px; min-width: 0; }
  .onboarding-page .reference-brand-name { white-space: normal; font-size: 10px; }
  .onboarding-page .nav-inner { min-height: 61px; padding-left: 18px; padding-right: 18px; }
  .onboarding-page .reference-icons > a { display: none; }
  .reference-hero-inner { padding: 40px 18px 50px; }
  .reference-hero h1 { font-size: 42px; }
  .reference-hero-description { font-size: 13px; }
  .reference-welcome-card { padding: 20px 17px; }
  .reference-welcome-actions { flex-direction: column; }
  .reference-primary-button, .reference-secondary-button { width: 100%; }
  .reference-stats { gap: 8px; }
  .reference-stats > div { min-width: 0; flex: 1; padding: 11px 8px; }
  .reference-stats strong { font-size: 17px; }
  .reference-stats span { font-size: 10px; }
  .reference-hero-art { min-height: 300px; }
  .reference-art-panel { inset: 14px 0 16px; }
  .reference-flower { font-size: 72px; }
  .flower-b { font-size: 86px; }
  .reference-notice { margin-top: -20px; padding: 20px 17px; }
  .reference-notice-tabs { grid-template-columns: 1fr; }
  .reference-process-section { padding: 56px 0 70px; }
  .reference-process-heading h2 { font-size: 32px; }
  .reference-process-card { margin-left: 18px; margin-right: 18px; }
  .reference-footer-inner { min-height: 0; padding-top: 42px; padding-bottom: 42px; flex-direction: column; align-items: flex-start; }
  .reference-hotline strong { font-size: 32px; }
  .reference-footer-bottom { padding: 18px; line-height: 1.6; }
}

/* ===== HEALTH CATALOG ===== */
.legacy-category-tabs,
.legacy-product-grid { display: none; }
.product-card { cursor: pointer; }
.detail-link { margin-left: auto; padding: 0; color: var(--teal); border: 0; background: transparent; font-size: 10px; white-space: nowrap; transition: color .2s, transform .2s; }
.detail-link:hover { color: var(--ink); transform: translateX(2px); }
.detail-link span { font-size: 13px; }

.art-medical { background: radial-gradient(circle at 80% 22%, rgba(255,255,255,.68), transparent 22%), linear-gradient(140deg, #d9efeb 0%, #80c8c1 48%, #167c80 100%); }
.art-medical::before { width: 190px; height: 190px; right: -62px; top: -72px; border: 1px solid rgba(255,255,255,.74); box-shadow: 0 0 0 18px rgba(255,255,255,.12), 0 0 0 47px rgba(255,255,255,.08); }
.art-medical::after { width: 110px; height: 110px; left: -48px; bottom: -55px; background: rgba(255,255,255,.18); filter: blur(4px); }
.art-medical-blue { background: radial-gradient(circle at 22% 27%, rgba(255,255,255,.7), transparent 23%), linear-gradient(140deg, #dcecf4, #6faebd 54%, #194b71); }
.art-medical-lilac { background: radial-gradient(circle at 77% 26%, rgba(255,240,246,.72), transparent 24%), linear-gradient(140deg, #f3e5ee, #c398b9 53%, #5c587e); }
.medical-visual { position: absolute; z-index: 1; }
.oximeter-visual { width: 120px; height: 142px; top: 48px; right: 56px; border: 5px solid #e6f5ec; border-radius: 27px 27px 38px 38px; background: linear-gradient(145deg, #70bfae, #1f6e73); box-shadow: 20px 23px 25px rgba(15,78,81,.28); transform: rotate(9deg); }
.oximeter-visual::before { content: ''; position: absolute; inset: 4px 9px 26px; border: 1px solid rgba(255,255,255,.34); border-radius: 18px; }
.oximeter-screen { position: absolute; left: 18px; top: 27px; width: 76px; padding: 9px 7px; color: #c8fbec; border-radius: 7px; background: #12404b; font: 7px/1.25 var(--mono); text-align: center; }
.oximeter-screen b { display: inline-block; margin-top: 3px; color: white; font: 26px/1 var(--sans); letter-spacing: -.09em; }
.oximeter-visual i { width: 8px; height: 8px; position: absolute; right: 19px; top: 69px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.pressure-visual { width: 160px; height: 118px; top: 75px; right: 39px; padding: 13px; border: 2px solid #d8f5f0; border-radius: 13px; background: linear-gradient(135deg,#bddedb,#4c8e9d 52%,#1b466c); box-shadow: 17px 24px 27px rgba(16,55,79,.25); transform: rotate(-7deg); }
.pressure-screen { width: 106px; height: 73px; padding: 7px 10px; color: #d7fbf1; border-radius: 6px; background: #193c50; font: 7px var(--mono); }
.pressure-screen b { display: block; margin-top: 4px; color: white; font: 21px/1.05 var(--mono); }.pressure-screen em { color: var(--lime); font-style: normal; }.pressure-button { width: 17px; height: 17px; position: absolute; right: 15px; bottom: 19px; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; background: var(--lime); }
.thermometer-visual { width: 110px; height: 148px; top: 42px; right: 63px; transform: rotate(15deg); }.thermometer-head { width: 76px; height: 76px; margin: 0 auto; border: 5px solid #fff4fa; border-radius: 50%; background: radial-gradient(circle at 34% 30%, #fff, #efc3dd 40%, #926f9c); box-shadow: 0 0 25px rgba(255,241,248,.52); }.thermometer-body { width: 51px; height: 103px; position: absolute; left: 30px; top: 45px; padding-top: 58px; color: #4b587e; border: 4px solid #fff4fa; border-radius: 28px; background: linear-gradient(90deg,#fff5fa,#e1b9dc); box-shadow: 15px 23px 25px rgba(65,49,88,.2); text-align: center; }.thermometer-body b { font: 12px var(--mono); }.thermometer-body small { font-size: 8px; }

.art-care { background: radial-gradient(circle at 77% 21%, rgba(255,230,210,.8), transparent 24%), linear-gradient(140deg, #fff1e2 0%, #e7b592 50%, #a86268 100%); }.art-care::before { width: 220px; height: 220px; right: -100px; top: -85px; border: 1px solid rgba(255,248,234,.82); box-shadow: 0 0 0 20px rgba(255,255,255,.11); }.art-care::after { width: 65px; height: 65px; left: 26px; bottom: 33px; border: 1px solid rgba(255,250,228,.7); }
.art-care-warm { background: radial-gradient(circle at 19% 24%, rgba(255,244,190,.7), transparent 22%), linear-gradient(140deg, #f5e0ae, #d58a76 52%, #984f65); }.art-care-sage { background: radial-gradient(circle at 78% 20%, rgba(232,250,203,.76), transparent 22%), linear-gradient(140deg, #e6f0ce, #93b18e 52%, #406b70); }
.care-visual { position: absolute; z-index: 1; }.gel-visual { width: 140px; height: 151px; top: 44px; right: 53px; }.gel-tube { width: 66px; height: 125px; position: absolute; right: 30px; padding-top: 47px; border-radius: 10px 10px 4px 4px; background: linear-gradient(145deg,#fff8eb,#db9b80); box-shadow: 16px 23px 25px rgba(104,53,53,.2); transform: rotate(15deg); }.gel-tube::before { content: ''; width: 54px; height: 18px; position: absolute; left: 6px; top: -14px; border-radius: 8px 8px 3px 3px; background: #f9ebd1; }.gel-tube::after { content: ''; width: 27px; height: 10px; position: absolute; left: 20px; bottom: -6px; border-radius: 3px; background: #eed6bf; }.gel-tube span { display: block; color: #ae5e65; font: 12px/1.08 var(--mono); text-align: center; }.care-leaf { width: 45px; height: 100px; position: absolute; left: 25px; bottom: 2px; border-radius: 100% 0 100% 0; background: linear-gradient(45deg,#85a65e,#e2e6af); transform: rotate(-35deg); }
.patch-visual { width: 170px; height: 137px; top: 68px; right: 35px; transform: rotate(-8deg); }.patch-card { width: 134px; height: 88px; position: absolute; right: 5px; top: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.76); border-radius: 7px; background: linear-gradient(145deg,#fff9da,#efbe92); box-shadow: 17px 24px 25px rgba(104,53,53,.2); }.patch-card span { display: block; color: #ab6060; font-size: 20px; font-weight: 800; }.patch-card small { color: #bb8066; font: 7px var(--mono); }.patch-visual i { width: 10px; height: 10px; position: absolute; border-radius: 50%; background: #fff2ba; box-shadow: 0 0 0 6px rgba(255,242,186,.18); }.patch-visual i:nth-of-type(1) { left: 2px; top: 26px; }.patch-visual i:nth-of-type(2) { left: 34px; top: 87px; }.patch-visual i:nth-of-type(3) { right: 9px; bottom: 0; }
.roll-visual { width: 150px; height: 160px; top: 37px; right: 50px; }.roll-bottle { width: 72px; height: 122px; position: absolute; right: 29px; top: 19px; padding-top: 48px; border: 2px solid #e7f1d1; border-radius: 15px 15px 11px 11px; background: linear-gradient(145deg,#bce0b0,#4f8e80); box-shadow: 18px 24px 23px rgba(31,75,71,.26); transform: rotate(8deg); }.roll-bottle span { display: block; color: #f7f3c4; font: 13px/1.1 var(--mono); text-align: center; }.roll-cap { width: 44px; height: 32px; position: absolute; left: 12px; top: -29px; border-radius: 9px 9px 4px 4px; background: linear-gradient(145deg,#d5e2bb,#6d9f83); }.roll-orbit { width: 80px; height: 33px; position: absolute; left: 2px; bottom: 18px; border: 1px solid rgba(235,255,213,.7); border-radius: 50%; transform: rotate(-30deg); }

.art-supplement { background: radial-gradient(circle at 20% 25%, rgba(255,249,203,.68), transparent 20%), linear-gradient(140deg, #e9d69d, #a2a664 50%, #3d6b68 100%); }.art-supplement::before { width: 205px; height: 205px; right: -83px; top: -93px; border: 1px solid rgba(255,255,226,.8); box-shadow: 0 0 0 20px rgba(255,255,255,.1); }.art-supplement::after { width: 52px; height: 52px; left: 20px; bottom: 23px; border: 1px solid rgba(255,255,220,.75); }
.art-supplement-ocean { background: radial-gradient(circle at 78% 20%, rgba(220,244,228,.65), transparent 23%), linear-gradient(140deg, #d3e8d2, #71a67d 48%, #276d75 100%); }
.supplement-visual { position: absolute; z-index: 1; }.multi-visual { width: 165px; height: 158px; top: 48px; right: 39px; }.supplement-jar, .fish-jar { width: 88px; height: 118px; position: absolute; right: 31px; top: 17px; padding-top: 45px; border: 2px solid #fff2ca; border-radius: 10px 10px 14px 14px; background: linear-gradient(145deg,#f3e9c0,#be9f62 45%,#6c7761); box-shadow: 19px 24px 25px rgba(61,73,50,.24); transform: rotate(-9deg); }.supplement-jar::before, .fish-jar::before { content: ''; width: 79px; height: 22px; position: absolute; left: 3px; top: -21px; border-radius: 7px 7px 2px 2px; background: #d8c78c; }.supplement-jar span, .fish-jar span { display: block; color: #fff9ce; font: 14px/1.05 var(--mono); text-align: center; }.supplement-jar small { display: block; margin-top: 6px; color: rgba(255,255,255,.7); font: 7px var(--mono); text-align: center; }.multi-visual i { width: 10px; height: 10px; position: absolute; border-radius: 50%; background: #fff4b6; box-shadow: 0 0 0 7px rgba(255,244,182,.15); }.multi-visual i:nth-of-type(1) { left: 10px; top: 42px; }.multi-visual i:nth-of-type(2) { left: 24px; bottom: 24px; }.multi-visual i:nth-of-type(3) { right: 4px; bottom: 2px; }.fish-visual { width: 165px; height: 160px; top: 42px; right: 39px; }.fish-jar { right: 26px; top: 18px; transform: rotate(8deg); background: linear-gradient(145deg,#d8f0d0,#6fa88a 50%,#2d7278); }.fish-jar::before { background: #9dcca3; }.fish-wave { width: 106px; height: 47px; position: absolute; left: 0; bottom: 22px; border: 2px solid rgba(224,255,214,.62); border-radius: 50%; transform: rotate(-14deg); }.fish-visual i { width: 7px; height: 7px; position: absolute; border-radius: 50%; background: #e8f3be; }.fish-visual i:nth-of-type(1) { left: 15px; top: 39px; }.fish-visual i:nth-of-type(2) { left: 34px; top: 72px; }

/* ===== PRODUCT DETAIL ===== */
.detail-overlay { position: fixed; z-index: 90; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(3, 25, 34, .68); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s, visibility .25s; }
.detail-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.detail-modal { width: min(1120px, 100%); max-height: min(870px, 92vh); overflow: auto; border: 1px solid #dfe9e3; border-radius: 6px; background: #fff; box-shadow: 0 28px 80px rgba(0,0,0,.28); transform: translateY(16px) scale(.985); transition: transform .25s; }
.detail-overlay.open .detail-modal { transform: translateY(0) scale(1); }
.detail-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px 10px; }.detail-breadcrumb { margin: 0; color: #8a9a9b; font-size: 11px; }.detail-breadcrumb span { margin: 0 8px; color: #bdc9c7; }.detail-breadcrumb strong { color: var(--teal); font-weight: 600; }.detail-close { width: 32px; height: 32px; border: 0; color: #6d8283; background: transparent; font-size: 27px; line-height: 1; }.detail-close:hover { color: var(--ink); }
.detail-tabs { display: flex; gap: 27px; padding: 0 28px; border-bottom: 1px solid #e0e8e4; }.detail-tab { position: relative; padding: 11px 0 13px; color: #71838a; border: 0; background: transparent; font-size: 13px; }.detail-tab::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }.detail-tab.active { color: var(--teal); font-weight: 700; }.detail-tab.active::after { background: var(--teal); }
.detail-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; padding: 22px 28px 0; }.detail-gallery { min-width: 0; position: relative; padding: 0 0 12px; }.detail-art { height: 405px; position: relative; overflow: hidden; border: 1px solid #e0e9e5; }.detail-art .art-copy { left: 27px; bottom: 28px; }.detail-art .art-copy strong { font-size: 28px; }.detail-art .product-tag { top: 24px; left: 27px; }.detail-art .medical-visual, .detail-art .care-visual, .detail-art .supplement-visual { transform: scale(1.22); transform-origin: center; }.detail-art .oximeter-visual { top: 103px; right: 160px; }.detail-art .pressure-visual { top: 133px; right: 115px; }.detail-art .thermometer-visual { top: 80px; right: 142px; }.detail-art .gel-visual { top: 94px; right: 123px; }.detail-art .patch-visual { top: 128px; right: 96px; }.detail-art .roll-visual { top: 90px; right: 115px; }.detail-art .multi-visual, .detail-art .fish-visual { top: 92px; right: 105px; }.detail-thumbs { display: flex; gap: 8px; margin-top: 12px; }.thumb { width: 58px; height: 49px; border: 1px solid #dae5e0; background: linear-gradient(140deg,#dbeee8,#69aca4); }.thumb:nth-child(2) { background: linear-gradient(140deg,#edf2de,#c9a47c); }.thumb:nth-child(3) { background: linear-gradient(140deg,#dae9f2,#8eb3c0); }.thumb.active { border: 2px solid var(--teal); }

/* Product detail pages intentionally omit the breadcrumb path. */
.detail-breadcrumb { display: none !important; }

/* PCT clinic service cards on the homepage */
.pct-consult-visual, .pct-nutrition-visual, .pct-recovery-visual { width: 165px; height: 158px; top: 45px; right: 35px; }
.pct-service-icon { position: absolute; top: 30px; right: 24px; display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid rgba(255,255,255,.72); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(224,248,220,.38)); box-shadow: 14px 18px 30px rgba(31,79,76,.22); color: #21686d; font: 700 18px/1 var(--mono); letter-spacing: .08em; transform: rotate(-8deg); }
.pct-nutrition-visual .pct-service-icon { color: #2c6d54; background: linear-gradient(145deg, rgba(255,250,205,.95), rgba(199,235,183,.48)); transform: rotate(8deg); }
.pct-recovery-visual .pct-service-icon { color: #8b5b54; background: linear-gradient(145deg, rgba(255,245,218,.96), rgba(248,205,179,.48)); transform: rotate(-5deg); }
.pct-consult-visual i, .pct-nutrition-visual i, .pct-recovery-visual i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.86); box-shadow: 0 0 0 7px rgba(255,255,255,.12); }
.pct-consult-visual i:nth-of-type(1), .pct-nutrition-visual i:nth-of-type(1), .pct-recovery-visual i:nth-of-type(1) { left: 13px; top: 48px; }
.pct-consult-visual i:nth-of-type(2), .pct-nutrition-visual i:nth-of-type(2), .pct-recovery-visual i:nth-of-type(2) { left: 34px; bottom: 23px; }
.pct-consult-visual i:nth-of-type(3), .pct-nutrition-visual i:nth-of-type(3), .pct-recovery-visual i:nth-of-type(3) { right: 7px; bottom: 4px; }
.store-card { position: absolute; z-index: 6; top: 20px; left: 0; width: 205px; padding: 14px 12px 11px; border: 1px solid #dfeae4; background: rgba(255,255,255,.96); box-shadow: 0 7px 18px rgba(20,65,67,.12); }.store-eyebrow { margin: 0 0 8px; color: #a7b7b4; font-size: 10px; text-align: center; }.store-card > strong { display: block; overflow: hidden; padding-right: 16px; color: var(--ink); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }.store-chevron { position: absolute; top: 49px; right: 12px; color: var(--teal); font-size: 14px; }.store-meta, .store-contact { margin: 8px 0 0; color: #73878a; font-size: 10px; }.store-contact { color: #4c7778; }.store-contact span { color: var(--teal); }.store-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; padding-top: 9px; border-top: 1px solid #e6eeea; }.store-stats span { color: #9aa9a8; font-size: 9px; text-align: center; }.store-stats strong { display: block; color: var(--teal); font-size: 13px; }.store-stats i { color: var(--teal); font-size: 8px; font-style: normal; }.store-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 11px; }.store-actions button { min-height: 28px; border: 1px solid #ceddd8; background: #fff; color: var(--ink); font-size: 10px; }.store-actions .favorite-store { color: #fff; border-color: var(--teal); background: var(--teal); }.store-actions button:hover { border-color: var(--teal); }
.detail-summary { padding: 8px 0 0; }.detail-type { margin: 0; color: var(--teal); font: 10px var(--mono); letter-spacing: .04em; }.detail-summary h2 { margin: 10px 0 12px; color: var(--ink); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; letter-spacing: -.045em; }.detail-description { margin: 0; color: #7c8c8d; font-size: 13px; line-height: 1.9; }.detail-price-box { display: flex; align-items: baseline; gap: 10px; margin-top: 22px; padding: 13px 16px; background: #f0f3f1; }.detail-price-box span { color: #607677; font-size: 11px; }.detail-price-box strong { color: var(--teal); font-size: 27px; letter-spacing: -.04em; }.detail-price-box del { color: #9aabaa; font-size: 12px; }.detail-option-row { min-height: 54px; display: flex; align-items: center; gap: 20px; margin-top: 12px; padding: 10px 16px; background: #f0f3f1; }.detail-option-row > span { width: 62px; flex: 0 0 auto; color: #607677; font-size: 11px; }.quantity-control { display: flex; height: 33px; border: 1px solid #d4dfdc; background: white; }.quantity-control button, .quantity-control strong { width: 38px; display: grid; place-items: center; border: 0; background: white; color: var(--ink); font-size: 13px; }.quantity-control button:hover { color: var(--teal); background: #eef8f2; }.quantity-control strong { border-right: 1px solid #d4dfdc; border-left: 1px solid #d4dfdc; font-weight: 500; }.detail-option-row em { color: #718889; font-size: 11px; font-style: normal; }.detail-option-row em b { color: var(--teal); font-weight: 600; }.detail-option-value { min-width: 130px; padding: 8px 22px; color: #536a6c; border: 1px solid #d4dfdc; background: #fff; font-size: 11px; text-align: center; }.detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 17px; }.detail-actions button { min-height: 43px; border: 1px solid var(--teal); background: #fff; color: var(--teal); font-size: 13px; }.detail-actions .detail-buy { color: #fff; background: var(--teal); }.detail-actions button:hover { color: #fff; background: var(--ink); border-color: var(--ink); }.contact-service { width: 100%; display: flex; align-items: center; gap: 7px; margin-top: 15px; padding: 0; border: 0; background: transparent; color: var(--teal); font-size: 12px; text-align: left; }.contact-service small { color: #8b9c9c; font-size: 10px; }.service-bubble { width: 22px; height: 22px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--teal); font-size: 11px; }.detail-promises { display: flex; gap: 18px; margin-top: 22px; padding-top: 15px; border-top: 1px solid #e5ece9; color: #718889; font: 10px var(--mono); }.detail-promises span::first-letter { color: var(--teal); }.detail-content { margin: 12px 28px 26px; padding: 21px 0 0; border-top: 1px solid #e0e8e4; }.detail-content h3 { margin: 0 0 11px; color: var(--ink); font-size: 15px; }.detail-content p { max-width: 800px; margin: 0; color: #718587; font-size: 12px; line-height: 1.9; }.detail-notice { margin-top: 14px; padding: 10px 14px; color: #64847b; background: #eff8ef; font-size: 11px; }.detail-spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.detail-spec-grid span { padding: 12px; color: #91a1a0; background: #f4f7f4; font-size: 10px; }.detail-spec-grid strong { display: block; margin-top: 6px; color: var(--ink); font-size: 12px; font-weight: 600; }

@media (max-width: 780px) {
  .health-category-tabs { gap: 11px; }.health-category-tabs .category-tab { padding: 10px 2px 11px; font-size: 12px; }.view-all-products { margin-top: 22px; }.product-bottom { gap: 6px; }.detail-link { font-size: 9px; }.detail-overlay { align-items: start; padding: 12px; }.detail-modal { max-height: calc(100vh - 24px); }.detail-modal-head { padding: 14px 17px 7px; }.detail-tabs { padding: 0 17px; }.detail-layout { grid-template-columns: 1fr; gap: 24px; padding: 17px 17px 0; }.detail-art { height: 310px; }.detail-art .art-copy { left: 18px; bottom: 19px; }.detail-art .art-copy strong { font-size: 22px; }.detail-art .product-tag { top: 18px; left: 18px; }.detail-art .medical-visual, .detail-art .care-visual, .detail-art .supplement-visual { transform: scale(.9); }.detail-art .oximeter-visual { top: 66px; right: 89px; }.detail-art .pressure-visual { top: 84px; right: 51px; }.detail-art .thermometer-visual { top: 49px; right: 75px; }.detail-art .gel-visual { top: 57px; right: 55px; }.detail-art .patch-visual { top: 78px; right: 32px; }.detail-art .roll-visual { top: 53px; right: 48px; }.detail-art .multi-visual, .detail-art .fish-visual { top: 55px; right: 43px; }.store-card { top: 14px; left: 14px; width: 184px; padding: 11px 10px 9px; }.store-card > strong { font-size: 11px; }.store-meta, .store-contact { margin-top: 6px; font-size: 9px; }.store-stats { margin-top: 8px; padding-top: 6px; }.store-actions { margin-top: 8px; }.store-actions button { min-height: 24px; font-size: 9px; }.detail-summary { padding: 0; }.detail-price-box { margin-top: 15px; }.detail-option-row { gap: 11px; }.detail-promises { gap: 10px; }.detail-content { margin-right: 17px; margin-left: 17px; }.detail-spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .health-category-tabs { gap: 7px; }.health-category-tabs .category-tab { font-size: 11px; }.detail-summary h2 { font-size: 23px; }.detail-description { font-size: 12px; }.detail-option-row { align-items: flex-start; flex-wrap: wrap; padding: 12px; }.detail-option-row > span { width: 100%; }.detail-option-row em { margin-left: auto; }.detail-actions { gap: 8px; }.detail-actions button { font-size: 12px; }.contact-service small { display: none; }.detail-promises { font-size: 9px; }
}

/* ===== STANDALONE PRODUCT DETAIL PAGE ===== */
.detail-page { background: var(--paper-warm); }
.detail-page-main { padding: 40px 0 96px; }
.detail-back { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--teal); font: 11px var(--mono); transition: color .2s, transform .2s; }.detail-back:hover { color: var(--ink); transform: translateX(-3px); }
.detail-page-shell { overflow: hidden; border: 1px solid #dfe9e3; border-radius: 6px; background: #fff; box-shadow: 0 20px 55px rgba(13,47,51,.08); }.detail-page-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px 11px; }.detail-page-note { color: #8b9d9c; font: 10px var(--mono); }.detail-page .detail-layout { grid-template-columns: 1.05fr .95fr; padding: 28px 32px 0; }.detail-page .detail-summary h1 { margin: 10px 0 12px; color: var(--ink); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; letter-spacing: -.045em; }.detail-page .detail-content { margin-right: 32px; margin-left: 32px; }.detail-page .detail-content h2 { margin: 0 0 11px; color: var(--ink); font-size: 15px; }.detail-page .store-contact { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: #4c7778; font-size: 10px; text-align: left; }.detail-page .store-contact:hover { color: var(--teal); }

@media (max-width: 780px) {
  .detail-page-main { padding: 24px 0 56px; }.detail-page-head { padding: 15px 17px 8px; }.detail-page-note { display: none; }.detail-page .detail-layout { grid-template-columns: 1fr; gap: 24px; padding: 17px 17px 0; }.detail-page .detail-content { margin-right: 17px; margin-left: 17px; }.detail-page .detail-summary h1 { font-size: 25px; }
}

/* ===== MERCHANT SHOWCASE ===== */
.merchant-card-pct { background: radial-gradient(circle at 79% 21%, rgba(236,174,224,.44), transparent 27%), linear-gradient(140deg, #18334e, #535b87 65%, #ad6e91); }
.merchant-section { background: var(--paper); }.merchant-heading { align-items: end; }.merchant-heading-note { padding-bottom: 8px; color: #9aabaa; font: 10px var(--mono); letter-spacing: .08em; }.merchant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }.merchant-card { min-height: 344px; position: relative; overflow: hidden; padding: 25px 28px 24px; color: white; border: 1px solid rgba(255,255,255,.22); }.merchant-card::before { content: ''; position: absolute; width: 360px; height: 360px; right: -115px; top: -150px; border: 1px solid rgba(214,239,148,.35); border-radius: 50%; box-shadow: 0 0 0 20px rgba(214,239,148,.06), 0 0 0 54px rgba(214,239,148,.04); }.merchant-card::after { content: ''; position: absolute; width: 220px; height: 1px; right: -23px; bottom: 95px; background: rgba(214,239,148,.3); transform: rotate(-24deg); }.merchant-card-future { background: radial-gradient(circle at 80% 24%, rgba(107,238,215,.36), transparent 26%), linear-gradient(140deg, #092b3b, #0a5661 72%, #1c7b78); }.merchant-card-bio { background: radial-gradient(circle at 79% 22%, rgba(244,211,145,.42), transparent 26%), linear-gradient(140deg, #172e3f, #4b6467 66%, #8f9b68); }.merchant-card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.68); }.merchant-index { color: var(--lime); font: 12px var(--mono); }.merchant-type { font: 9px var(--mono); letter-spacing: .08em; }.merchant-emblem { position: absolute; z-index: 1; right: 29px; top: 78px; color: rgba(224,248,208,.86); font: 47px/.85 var(--mono); letter-spacing: -.15em; text-align: right; transform: rotate(-7deg); }.merchant-emblem b { color: var(--lime); font-family: var(--sans); font-size: 27px; letter-spacing: -.08em; }.merchant-card-copy { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; max-width: 450px; }.merchant-card-copy h3 { max-width: 430px; margin: 0; color: white; font-size: clamp(19px, 2vw, 28px); line-height: 1.25; letter-spacing: -.065em; }.merchant-card-copy p { max-width: 400px; margin: 11px 0 17px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.8; }.merchant-link { display: inline-flex; align-items: center; gap: 17px; color: var(--lime); font: 11px var(--mono); transition: color .2s, transform .2s; }.merchant-link:hover { color: white; transform: translateX(4px); }
@media (max-width: 780px) {
  .merchant-heading { display: block; }.merchant-heading-note { display: inline-block; margin-top: 19px; }.merchant-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }.merchant-card { min-height: 300px; padding: 20px; }.merchant-emblem { right: 22px; top: 65px; font-size: 38px; }.merchant-card-copy { right: 20px; bottom: 20px; left: 20px; }.merchant-card-copy h3 { font-size: 20px; }.merchant-card-copy p { margin: 9px 0 13px; font-size: 11px; }
}

/* ===== MERCHANT PAGES ===== */
.merchant-page-main, .merchant-products-main { padding: 42px 0 94px; }.merchant-page-shell, .merchant-products-shell { overflow: hidden; border: 1px solid #dfe9e3; border-radius: 6px; background: #fff; box-shadow: 0 20px 55px rgba(13,47,51,.08); }.merchant-page-intro { padding: 55px 58px 0; }.merchant-page-intro h1 { margin: 0; color: var(--ink); font-size: clamp(38px, 5vw, 62px); line-height: 1.05; letter-spacing: -.075em; }.merchant-page-intro > p:last-child { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }.merchant-directory-grid { margin: 45px 58px 58px; }.merchant-page .merchant-card { min-height: 375px; }.merchant-page .merchant-card-copy h2 { max-width: 450px; margin: 0; color: white; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.25; letter-spacing: -.065em; }.merchant-footer-bottom { border-top-color: rgba(145,233,224,.14); }.merchant-footer-bottom a { color: rgba(255,255,255,.48); }.merchant-footer-bottom a:hover { color: var(--lime); }
.merchant-page .merchant-contact-row { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; margin: 13px 0 12px; }
.merchant-page .merchant-consult-button { display: inline-flex; align-items: center; gap: 12px; min-height: 31px; padding: 6px 11px; border: 1px solid rgba(214,239,148,.62); border-radius: 4px; color: #183c46; background: var(--lime); font: 11px var(--mono); cursor: pointer; }
.merchant-page .merchant-consult-button:hover { color: white; border-color: white; background: rgba(8,56,66,.52); }
.merchant-page .merchant-contact-info { display: flex; flex-wrap: wrap; gap: 5px 11px; min-width: 0; }
.merchant-page .merchant-contact-info a { overflow-wrap: anywhere; color: rgba(255,255,255,.78); font: 9px var(--mono); }
.merchant-page .merchant-contact-info a:hover { color: var(--lime); }
.merchant-products-shell { padding-bottom: 50px; }.merchant-products-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding: 52px 58px 30px; }.merchant-products-heading h1 { margin: 0; color: var(--ink); font-size: clamp(28px, 4vw, 50px); line-height: 1.1; letter-spacing: -.07em; }.merchant-products-heading p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 13px; }.merchant-products-count { display: flex; align-items: baseline; gap: 8px; color: var(--muted); font: 11px var(--mono); }.merchant-products-count strong { color: var(--teal); font: 38px var(--sans); letter-spacing: -.08em; }.merchant-store-summary { display: flex; align-items: center; gap: 14px; margin: 0 58px; padding: 17px 20px; border: 1px solid #dce9e3; background: #f3f8f4; }.merchant-summary-mark { width: 45px; height: 45px; display: grid; place-items: center; color: var(--ink); border-radius: 50%; background: var(--lime); font: 11px var(--mono); }.merchant-store-summary strong, .merchant-store-summary small { display: block; }.merchant-store-summary strong { color: var(--ink); font-size: 14px; }.merchant-store-summary small { margin-top: 3px; color: var(--muted); font: 9px var(--mono); }.merchant-store-summary a { margin-left: auto; color: var(--teal); font: 10px var(--mono); }.merchant-product-grid { grid-template-columns: repeat(4, 1fr); margin: 26px 58px 0; }.merchant-products-page .product-info h2 { overflow: hidden; margin: 7px 0 4px; color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }.merchant-products-page .product-card { cursor: pointer; }
@media (max-width: 1100px) { .merchant-product-grid { grid-template-columns: repeat(3, 1fr); }.merchant-page-intro, .merchant-products-heading { padding-right: 35px; padding-left: 35px; }.merchant-directory-grid, .merchant-store-summary { margin-right: 35px; margin-left: 35px; }.merchant-product-grid { margin-right: 35px; margin-left: 35px; } }
@media (max-width: 780px) { .merchant-page-main, .merchant-products-main { padding: 24px 0 56px; }.merchant-page-intro { padding: 38px 20px 0; }.merchant-page-intro h1 { font-size: 42px; }.merchant-directory-grid { margin: 32px 20px 20px; }.merchant-page .merchant-card { min-height: 310px; }.merchant-page .merchant-contact-row { align-items: flex-start; gap: 8px; }.merchant-page .merchant-contact-info { width: 100%; }.merchant-page .merchant-contact-info a { font-size: 8px; }.merchant-products-heading { display: block; padding: 38px 20px 22px; }.merchant-products-count { margin-top: 18px; }.merchant-store-summary { margin: 0 20px; padding: 13px; }.merchant-store-summary strong { max-width: 210px; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }.merchant-store-summary a { font-size: 9px; }.merchant-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 20px 0; }.merchant-products-page .product-info h2 { font-size: 13px; } }
@media (max-width: 440px) { .merchant-product-grid { grid-template-columns: 1fr; }.merchant-products-heading h1 { font-size: 32px; }.merchant-store-summary { align-items: flex-start; }.merchant-summary-mark { width: 37px; height: 37px; font-size: 9px; }.merchant-store-summary a { margin-top: 9px; } }

/* Fixed navigation and full agreement presentation for the merchant application view. */
.onboarding-page { --reference-topbar-height: 38px; --reference-nav-height: 68px; }
.onboarding-page .announcement { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--reference-topbar-height); }
.onboarding-page .site-header { position: fixed; top: var(--reference-topbar-height); left: 0; right: 0; z-index: 99; min-height: var(--reference-nav-height); }
.onboarding-page > main { padding-top: calc(var(--reference-topbar-height) + var(--reference-nav-height)); }
.onboarding-page .onboarding-form-section,
.onboarding-page .progress-section { scroll-margin-top: calc(var(--reference-topbar-height) + var(--reference-nav-height) + 18px); }
.onboarding-page .agreement-box { height: 470px; max-height: 58vh; padding: 25px 30px; border-color: #d6e8e1; border-radius: 4px; background: #fbfdfc; }
.onboarding-page .agreement-box { scrollbar-color: #1aa88c #edf7f3; scrollbar-width: auto; }
.onboarding-page .agreement-box h4 { margin-bottom: 17px; color: #243c39; font-size: 17px; }
.onboarding-page .agreement-box h5 { margin: 18px 0 8px; color: #2d4844; font-size: 13px; }
.onboarding-page .agreement-box p { margin: 0 0 9px; color: #5d6f6c; font-size: 13px; line-height: 1.95; }
.onboarding-page .agreement-box:focus { outline: 2px solid rgba(16,169,137,.25); outline-offset: 2px; }
.onboarding-page .agreement-check { min-height: 72px; margin-top: 18px; padding: 0 25px; border: 1px solid #d4ebe4; border-radius: 4px; background: #f2fcf9; color: #0b806d; font-size: 14px; font-weight: 700; }
.onboarding-page .agreement-check input { width: 20px; height: 20px; }

@media (max-width: 840px) {
  .onboarding-page .announcement-inner { padding-left: 24px; padding-right: 24px; }
  .onboarding-page .agreement-box { height: 430px; max-height: 55vh; padding: 20px; }
}

@media (max-width: 580px) {
  .onboarding-page { --reference-topbar-height: 74px; --reference-nav-height: 61px; }
  .onboarding-page .announcement { height: var(--reference-topbar-height); }
  .onboarding-page .announcement-inner { min-height: var(--reference-topbar-height); padding-top: 7px; padding-bottom: 7px; }
  .onboarding-page .agreement-box { height: 390px; max-height: 52vh; padding: 17px; }
  .onboarding-page .agreement-box h4 { font-size: 15px; }
  .onboarding-page .agreement-box h5 { font-size: 12px; }
  .onboarding-page .agreement-box p { font-size: 12px; }
  .onboarding-page .agreement-check { padding: 13px 15px; font-size: 12px; }
}

/* Company information form: long, reference-style single-column enterprise dossier. */
.company-form-grid { grid-template-columns: 1fr; gap: 9px; }
.company-form-grid .form-field,
.company-form-grid .upload-field { display: grid; grid-template-columns: 190px minmax(0, 1fr); align-items: center; gap: 12px; min-height: 55px; margin: 0; padding: 9px 14px; border: 1px solid #e3eeea; border-radius: 8px; background: #fbfdfc; }
.company-form-grid .form-field > span:first-child,
.company-form-grid .upload-field > span:first-child,
.company-form-grid .form-field legend { grid-column: 1; margin: 0; color: #526c68; font-size: 11px; text-align: right; }
.company-form-grid .form-field > input,
.company-form-grid .form-field > select,
.company-form-grid .form-field > textarea,
.company-form-grid .checkbox-options,
.company-form-grid .radio-options,
.company-form-grid .upload-placeholder { grid-column: 2; }
.company-form-grid .form-field textarea { min-height: 96px; }
.company-form-grid .upload-field { min-height: 68px; }
.company-form-grid .upload-field input { grid-column: 2; }
.company-form-grid .upload-placeholder { margin: 0; }
.company-form-grid .radio-options { display: flex; gap: 28px; }
.company-form-grid .radio-options label { display: inline-flex; align-items: center; gap: 7px; color: #607a75; font-size: 12px; }
.company-form-grid .radio-options input { accent-color: var(--teal); }
.company-form-grid .validation-message { grid-column: 2; margin: -3px 0 0; }
.form-field.has-error,
.upload-field.has-error,
.category-field.has-error,
.radio-field.has-error { border-color: #e49383; background: #fff9f7; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #e49383; box-shadow: 0 0 0 3px rgba(228,147,131,.12); }
.validation-message { color: #cf6655; font-size: 11px; line-height: 1.5; }
.category-field .validation-message,
.radio-field .validation-message { grid-column: 2; margin: 0; }

@media (max-width: 780px) {
  .company-form-grid .form-field,
  .company-form-grid .upload-field { grid-template-columns: 1fr; gap: 7px; padding: 12px; }
  .company-form-grid .form-field > span:first-child,
  .company-form-grid .upload-field > span:first-child,
  .company-form-grid .form-field legend { grid-column: 1; text-align: left; }
  .company-form-grid .form-field > input,
  .company-form-grid .form-field > select,
  .company-form-grid .form-field > textarea,
  .company-form-grid .checkbox-options,
  .company-form-grid .radio-options,
  .company-form-grid .upload-placeholder { grid-column: 1; }
  .company-form-grid .validation-message { grid-column: 1; }
  .category-field .validation-message,
  .radio-field .validation-message { grid-column: 1; }
}

.onboarding-page .form-step[role="tab"] { cursor: pointer; user-select: none; }
.onboarding-page .form-step[role="tab"]:hover b { color: var(--teal); }
.onboarding-page .form-step[role="tab"]:focus-visible { outline: 2px solid rgba(16,169,137,.35); outline-offset: 5px; border-radius: 4px; }
.onboarding-page .radio-field.has-error .radio-options { border-radius: 6px; box-shadow: 0 0 0 3px rgba(228,147,131,.12); }
.onboarding-page .readonly-fee { grid-column: 2; display: flex; align-items: baseline; gap: 4px; min-height: 42px; color: #78908b; }
.onboarding-page .readonly-fee strong { color: var(--teal); font-size: 22px; }
.onboarding-page .readonly-fee small { margin-left: 7px; color: #96a9a5; font-size: 10px; }
@media (max-width: 780px) {
  .onboarding-page .readonly-fee { grid-column: 1; }
}

/* ===== MERCHANT ONBOARDING ===== */
.onboarding-page { background: var(--paper-warm); }.onboarding-page .site-header { background: rgba(248,250,247,.96); }.onboarding-hero { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 76% 16%, rgba(111,243,217,.36), transparent 25%), linear-gradient(120deg,#062a38 0%,#08716d 67%,#13aa8e 100%); }.onboarding-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: rgba(214,239,148,.45); }.onboarding-grid-mark { position: absolute; width: 760px; height: 760px; right: -210px; top: -310px; border: 1px solid rgba(210,245,218,.24); border-radius: 50%; box-shadow: 0 0 0 48px rgba(210,245,218,.055), 0 0 0 120px rgba(210,245,218,.035), 0 0 0 220px rgba(210,245,218,.02); }.onboarding-grid-mark::after { content: ''; position: absolute; inset: 19%; border: 1px dashed rgba(210,245,218,.3); border-radius: 50%; }.onboarding-hero-inner { min-height: 535px; position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 20px; }.onboarding-hero-copy { padding: 64px 0 42px; }.onboarding-hero-copy h1 { margin: 0; color: white; font-size: clamp(43px,5.8vw,76px); line-height: 1.1; letter-spacing: -.075em; }.onboarding-hero-copy h1 em { color: var(--lime); font-style: normal; }.onboarding-hero-copy > p:not(.eyebrow) { max-width: 480px; margin: 25px 0 0; color: rgba(239,255,249,.7); font-size: 14px; line-height: 2; }.onboarding-hero-actions { display: flex; gap: 22px; margin-top: 32px; }.onboarding-hero-visual { height: 430px; position: relative; }.health-orbit { position: absolute; left: 54%; top: 50%; border: 1px solid rgba(213,239,148,.42); border-radius: 50%; transform: translate(-50%,-50%) rotate(-22deg); }.orbit-main { width: 505px; height: 240px; }.orbit-small { width: 330px; height: 480px; border-color: rgba(145,233,224,.32); transform: translate(-50%,-50%) rotate(28deg); }.health-glass-card { width: 270px; height: 310px; position: absolute; z-index: 3; left: 50%; top: 50%; display: flex; flex-direction: column; padding: 25px; border: 1px solid rgba(255,255,255,.4); background: linear-gradient(145deg,rgba(239,255,231,.86),rgba(152,230,204,.18)); box-shadow: 0 28px 50px rgba(0,29,36,.23), inset 0 0 40px rgba(255,255,255,.12); backdrop-filter: blur(13px); transform: translate(-50%,-50%) rotate(7deg); }.glass-label { color: #337a72; font: 9px var(--mono); letter-spacing: .11em; }.health-glass-card strong { margin-top: auto; color: #0b3d43; font-size: 31px; line-height: 1.08; letter-spacing: -.08em; }.health-glass-card small { margin-top: 18px; color: rgba(11,61,67,.58); font: 8px var(--mono); }.health-glass-card::after { content: '✦'; position: absolute; right: 25px; top: 22px; color: var(--teal); font-size: 23px; }.health-leaf { position: absolute; z-index: 2; width: 78px; height: 165px; border-radius: 100% 0 100% 0; background: linear-gradient(45deg,#83c99a,#e2f0ad); transform-origin: bottom; }.leaf-one { left: 17%; bottom: 56px; transform: rotate(-35deg); }.leaf-two { right: 13%; top: 77px; transform: rotate(38deg) scale(.77); }.leaf-three { right: 21%; bottom: 35px; transform: rotate(8deg) scale(.52); }.health-pulse { position: absolute; z-index: 4; left: 13%; top: 42%; width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid rgba(214,239,148,.42); border-radius: 50%; background: rgba(5,49,55,.3); box-shadow: 0 0 0 18px rgba(214,239,148,.06); }.health-pulse b { width: 26px; height: 26px; border: 6px solid var(--lime); border-radius: 50%; box-shadow: 0 0 22px var(--lime); }.health-pulse i { position: absolute; border: 1px solid rgba(214,239,148,.4); border-radius: 50%; }.health-pulse i:nth-of-type(1) { inset: 16px; }.health-pulse i:nth-of-type(2) { inset: 29px; }.health-pulse i:nth-of-type(3) { inset: 42px; }.hero-float-note { position: absolute; z-index: 5; padding: 9px 12px; color: rgba(255,255,255,.83); border: 1px solid rgba(203,248,221,.3); border-radius: 2px; background: rgba(4,38,45,.35); font: 10px var(--mono); }.note-health { right: 2%; top: 65px; }.note-service { left: 8%; bottom: 43px; color: var(--lime); }.onboarding-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding-bottom: 28px; }.onboarding-stats > div { padding: 15px 18px; border: 1px solid rgba(215,247,223,.22); background: rgba(6,43,48,.2); }.onboarding-stats strong, .onboarding-stats span { display: block; }.onboarding-stats strong { color: var(--lime); font-size: 25px; letter-spacing: -.06em; }.onboarding-stats span { margin-top: 4px; color: rgba(255,255,255,.55); font: 9px var(--mono); }
.onboarding-intro { background: #f5faf6; }.onboarding-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }.intro-title h2 { margin: 0; color: var(--ink); font-size: clamp(36px,4.4vw,55px); line-height: 1.08; letter-spacing: -.07em; }.intro-title h2 em { color: var(--teal); font-style: normal; }.intro-copy > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 2; }.intro-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }.intro-pills span { padding: 8px 12px; color: var(--teal); border: 1px solid #bdded3; border-radius: 20px; background: #eaf7ef; font: 10px var(--mono); }.onboarding-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 65px; }.onboarding-benefits article { min-height: 190px; padding: 22px; border: 1px solid #dce9e3; background: #fff; transition: transform .2s, box-shadow .2s; }.onboarding-benefits article:hover { box-shadow: 0 15px 32px rgba(16,68,68,.08); transform: translateY(-4px); }.onboarding-benefits article > span { color: var(--teal); font: 10px var(--mono); }.onboarding-benefits strong { display: block; margin-top: 52px; color: var(--ink); font-size: 16px; }.onboarding-benefits p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.onboarding-process-section { background: #fff; }.process-side-note { padding-bottom: 8px; color: #9aabaa; font: 10px var(--mono); }.onboarding-process { min-height: 190px; position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; align-items: start; margin-top: 56px; padding: 0 20px; }.process-line { position: absolute; top: 27px; right: 10%; left: 10%; height: 1px; background: #badfd3; }.process-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }.process-step > span { width: 56px; height: 56px; display: grid; place-items: center; color: var(--teal); border: 1px solid #bce2d5; border-radius: 50%; background: #fff; box-shadow: 0 0 0 9px #fff, 0 7px 18px rgba(26,132,119,.12); font: 14px var(--mono); }.process-step:first-of-type > span { color: white; border-color: var(--teal); background: var(--teal); }.process-step b { margin-top: 25px; color: var(--ink); font-size: 13px; }.process-step small { max-width: 120px; margin-top: 6px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.onboarding-form-section { background: var(--paper-warm); }.form-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }.form-section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.07em; }.form-section-heading p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 13px; }.required-tip { color: var(--muted); font: 10px var(--mono); }.required-tip b, .form-field b, .category-field b { color: #e27865; }.onboarding-form { margin-top: 42px; border: 1px solid #dfeae4; border-radius: 6px; background: #fff; box-shadow: 0 18px 45px rgba(13,47,51,.06); }.form-stepper { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 24px 38px; border-bottom: 1px solid #e0e9e4; }.form-step { position: relative; display: flex; align-items: center; gap: 10px; color: #9aacaa; }.form-step::after { content: ''; position: absolute; top: 16px; right: 0; left: 40px; height: 1px; background: #dce9e3; transform: translateX(14px); }.form-step:last-child::after { display: none; }.form-step span { width: 34px; height: 34px; position: relative; z-index: 1; display: grid; place-items: center; border: 1px solid #d8e4df; border-radius: 50%; background: #fff; font: 12px var(--mono); }.form-step b { position: relative; z-index: 1; font-size: 11px; font-weight: 600; }.form-step.active, .form-step.complete { color: var(--teal); }.form-step.active span, .form-step.complete span { color: white; border-color: var(--teal); background: var(--teal); box-shadow: 0 0 0 5px #e8f7ef; }.form-step.complete::after { background: #a9d8c9; }.form-panel { display: none; padding: 40px 48px 36px; }.form-panel.active { display: block; }.panel-title > span { color: var(--teal); font: 10px var(--mono); letter-spacing: .08em; }.panel-title h3 { margin: 8px 0 0; color: var(--ink); font-size: 25px; letter-spacing: -.05em; }.panel-title p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }.agreement-box { height: 280px; overflow: auto; margin-top: 26px; padding: 22px 25px; border: 1px solid #dfe9e3; background: #f9fcfa; }.agreement-box h4 { margin: 0 0 13px; color: var(--ink); font-size: 14px; }.agreement-box p { margin: 0 0 12px; color: #6e8281; font-size: 12px; line-height: 1.9; }.agreement-check { display: flex; align-items: center; gap: 10px; margin-top: 17px; color: #557674; font-size: 12px; }.agreement-check input { width: 17px; height: 17px; accent-color: var(--teal); }.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 20px; margin-top: 28px; }.form-field { display: flex; flex-direction: column; gap: 7px; }.form-field > span, .category-field legend, .upload-field > span:first-child { color: #587271; font-size: 11px; }.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 42px; padding: 10px 12px; color: var(--ink); outline: none; border: 1px solid #d9e6df; border-radius: 3px; background: #fbfdfb; font-size: 12px; transition: border .2s, box-shadow .2s; }.form-field textarea { min-height: 100px; resize: vertical; }.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px #e5f5ee; }.full { grid-column: 1 / -1; }.category-field { margin: 0; padding: 0; border: 0; }.category-field legend { margin-bottom: 7px; }.checkbox-options { display: flex; flex-wrap: wrap; gap: 10px; }.checkbox-options label { min-width: 160px; display: flex; align-items: center; gap: 9px; padding: 11px 13px; color: #587271; border: 1px solid #d9e6df; background: #fbfdfb; font-size: 12px; }.checkbox-options input { accent-color: var(--teal); }.upload-field { min-height: 86px; position: relative; display: flex; flex-direction: column; gap: 7px; padding: 14px; border: 1px dashed #b8d9cc; border-radius: 3px; background: #f5fbf7; }.upload-field input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }.upload-placeholder { color: var(--teal) !important; font-size: 12px !important; }.upload-placeholder small { display: block; margin-top: 4px; color: #8aa09b; font-size: 10px; }.form-actions { display: flex; justify-content: center; gap: 14px; padding: 24px 48px; border-top: 1px solid #e0e9e4; }.form-button { min-width: 130px; min-height: 43px; padding: 0 20px; border: 1px solid var(--teal); border-radius: 3px; font-size: 12px; font-weight: 700; }.form-button.primary { color: white; background: var(--teal); }.form-button.primary:hover { background: var(--ink); border-color: var(--ink); }.form-button.secondary { color: #647b7a; border-color: #d4e1dc; background: white; }.form-button.secondary:hover:not(:disabled) { color: var(--teal); border-color: var(--teal); }.form-button:disabled { cursor: not-allowed; opacity: .45; }.review-summary { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 26px; }.review-summary div { display: flex; flex-direction: column; gap: 6px; padding: 13px 15px; background: #f5faf7; }.review-summary span { color: #8ba09c; font-size: 10px; }.review-summary strong { overflow: hidden; color: var(--ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }.review-notice { margin-top: 18px; padding: 11px 13px; color: #64847b; background: #edf8ef; font-size: 11px; line-height: 1.7; }.application-success { padding: 70px 48px 78px; text-align: center; }.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 23px; color: white; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 10px #e4f5ed; font-size: 29px; }.application-success h3 { margin: 0; color: var(--ink); font-size: 29px; }.application-success > p:not(.eyebrow) { max-width: 540px; margin: 14px auto 0; color: var(--muted); font-size: 13px; line-height: 1.9; }.application-success > p strong { color: var(--teal); }.application-success > div:last-child { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }.button-outline-dark { color: var(--ink); border: 1px solid #ccdcd5; background: white; }.button-outline-dark:hover { color: white; border-color: var(--ink); background: var(--ink); }.progress-section { background: #fff; }.progress-box { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 36px 44px; border: 1px solid #dfe9e3; background: #f5faf7; }.progress-box h2 { margin: 0; color: var(--ink); font-size: 29px; letter-spacing: -.06em; }.progress-box > div:first-child p:last-child { margin: 9px 0 0; color: var(--muted); font-size: 12px; }.progress-query-form { width: 420px; display: grid; grid-template-columns: 1fr auto; gap: 10px; }.progress-query-form input { min-height: 43px; padding: 10px 12px; border: 1px solid #d5e4dc; outline: none; background: white; font-size: 11px; }.progress-query-form button { min-width: 110px; }.progress-query-form p { grid-column: 1 / -1; min-height: 17px; margin: 3px 0 0; font-size: 11px; }.progress-success { color: var(--teal); }.progress-error { color: #c66c5d; }.onboarding-footer-bottom { border-top-color: rgba(145,233,224,.14); }.onboarding-footer-bottom a { color: rgba(255,255,255,.48); }.onboarding-footer-bottom a:hover { color: var(--lime); }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 900px) { .onboarding-hero-inner { grid-template-columns: 1fr; min-height: auto; }.onboarding-hero-copy { padding: 70px 0 20px; }.onboarding-hero-visual { height: 370px; margin-top: -5px; }.onboarding-stats { grid-template-columns: repeat(2,1fr); }.onboarding-intro-grid { gap: 35px; }.onboarding-benefits { grid-template-columns: repeat(2,1fr); }.progress-box { align-items: flex-start; flex-direction: column; gap: 25px; }.progress-query-form { width: 100%; } }
@media (max-width: 780px) { .onboarding-hero-copy h1 { font-size: clamp(42px,12vw,64px); }.onboarding-hero-actions { gap: 10px; }.onboarding-hero-visual { height: 310px; }.health-glass-card { width: 220px; height: 250px; padding: 20px; }.health-glass-card strong { font-size: 25px; }.orbit-main { width: 390px; height: 175px; }.orbit-small { width: 285px; height: 390px; }.health-pulse { left: 0; transform: scale(.78); }.note-health { right: 0; top: 35px; transform: scale(.85); transform-origin: right top; }.note-service { left: 0; bottom: 18px; transform: scale(.85); transform-origin: left bottom; }.onboarding-stats { gap: 8px; }.onboarding-stats > div { padding: 12px; }.onboarding-intro-grid { grid-template-columns: 1fr; gap: 30px; }.onboarding-benefits { gap: 10px; margin-top: 40px; }.onboarding-benefits article { min-height: 170px; padding: 16px; }.onboarding-benefits strong { margin-top: 40px; font-size: 14px; }.onboarding-process { grid-template-columns: 1fr; gap: 16px; padding: 0; }.process-line { top: 27px; bottom: 27px; left: 27px; width: 1px; height: auto; }.process-step { min-height: 59px; flex-direction: row; align-items: center; gap: 13px; text-align: left; }.process-step > span { width: 54px; height: 54px; flex: 0 0 auto; }.process-step b { margin: 0; }.process-step small { max-width: none; margin: 0 0 0 auto; }.form-section-heading { align-items: flex-start; flex-direction: column; gap: 17px; }.onboarding-form { margin-top: 28px; }.form-stepper { gap: 3px; padding: 16px 12px; }.form-step { justify-content: center; flex-direction: column; gap: 5px; text-align: center; }.form-step::after { top: 17px; left: 38px; transform: translateX(7px); }.form-step b { font-size: 9px; }.form-step span { width: 32px; height: 32px; }.form-panel { padding: 28px 18px 24px; }.form-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 23px; }.full { grid-column: auto; }.checkbox-options { flex-direction: column; }.checkbox-options label { min-width: 0; }.form-actions { padding: 18px; }.form-button { min-width: 110px; }.review-summary { grid-template-columns: 1fr; }.application-success { padding: 55px 20px 60px; }.progress-box { padding: 28px 20px; } }
@media (max-width: 440px) { .onboarding-hero-actions .button { padding: 0 15px; gap: 9px; font-size: 11px; }.onboarding-stats strong { font-size: 21px; }.onboarding-stats span { font-size: 8px; }.intro-pills span { font-size: 9px; }.process-step small { display: none; }.form-step b { font-size: 8px; }.form-actions { gap: 8px; }.form-button { min-width: 0; flex: 1; padding: 0 10px; }.progress-query-form { grid-template-columns: 1fr; }.progress-query-form button { width: 100%; } }

/* Final overrides: keep the application shell fixed while the agreement scrolls. */
.onboarding-page { --reference-topbar-height: 38px; --reference-nav-height: 68px; }
.onboarding-page .announcement { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--reference-topbar-height); }
.onboarding-page .site-header { position: fixed; top: var(--reference-topbar-height); left: 0; right: 0; z-index: 99; min-height: var(--reference-nav-height); background: #fff; }
.onboarding-page > main { padding-top: calc(var(--reference-topbar-height) + var(--reference-nav-height)); }
.onboarding-page .onboarding-form-section,
.onboarding-page .progress-section { scroll-margin-top: calc(var(--reference-topbar-height) + var(--reference-nav-height) + 18px); }
.onboarding-page .agreement-box { height: 470px; max-height: 58vh; padding: 25px 30px; border-color: #d6e8e1; border-radius: 4px; background: #fbfdfc; }
.onboarding-page .agreement-box h4 { margin-bottom: 17px; color: #243c39; font-size: 17px; }
.onboarding-page .agreement-box h5 { margin: 18px 0 8px; color: #2d4844; font-size: 13px; }
.onboarding-page .agreement-box p { margin: 0 0 9px; color: #5d6f6c; font-size: 13px; line-height: 1.95; }
.onboarding-page .agreement-box:focus { outline: 2px solid rgba(16,169,137,.25); outline-offset: 2px; }
.onboarding-page .agreement-check { min-height: 72px; margin-top: 18px; padding: 0 25px; border: 1px solid #d4ebe4; border-radius: 4px; background: #f2fcf9; color: #0b806d; font-size: 14px; font-weight: 700; }
.onboarding-page .agreement-check input { width: 20px; height: 20px; }
@media (max-width: 840px) {
  .onboarding-page .announcement-inner { padding-left: 24px; padding-right: 24px; }
  .onboarding-page .agreement-box { height: 430px; max-height: 55vh; padding: 20px; }
}
@media (max-width: 580px) {
  .onboarding-page { --reference-topbar-height: 74px; --reference-nav-height: 61px; }
  .onboarding-page .announcement { height: var(--reference-topbar-height); }
  .onboarding-page .announcement-inner { min-height: var(--reference-topbar-height); padding-top: 7px; padding-bottom: 7px; }
  .onboarding-page .agreement-box { height: 390px; max-height: 52vh; padding: 17px; }
  .onboarding-page .agreement-box h4 { font-size: 15px; }
  .onboarding-page .agreement-box h5 { font-size: 12px; }
  .onboarding-page .agreement-box p { font-size: 12px; }
  .onboarding-page .agreement-check { padding: 13px 15px; font-size: 12px; }
}

/* Unified fixed navigation: every storefront view uses the same platform shell. */
.global-nav-page {
  --global-announcement-height: 32px;
  --global-header-height: 82px;
}

.global-nav-page > .global-announcement {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: var(--global-announcement-height);
  color: #d7faf5;
  background: var(--ink);
  font: 11px var(--mono);
}

.global-nav-page > .global-announcement .announcement-inner {
  max-width: var(--container);
  height: var(--global-announcement-height);
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-nav-page > .global-announcement .announcement-dot {
  display: block;
}

.global-nav-page > .global-announcement .announcement-inner > a {
  color: var(--lime);
}

.global-nav-page > .global-site-header {
  position: fixed;
  top: var(--global-announcement-height);
  right: 0;
  left: 0;
  z-index: 110;
  min-height: var(--global-header-height);
  background: rgba(248, 250, 247, .97);
  border-bottom: 1px solid rgba(220, 231, 227, .9);
  box-shadow: 0 8px 24px rgba(13, 47, 51, .05);
}

.global-nav-page > .global-site-header .nav-inner {
  max-width: var(--container);
  min-height: var(--global-header-height);
  gap: 30px;
}

.global-nav-page > .global-site-header .primary-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 5px;
}

.global-nav-page > .global-site-header .primary-nav a {
  padding: 10px 11px;
  color: #5e7378;
  border-bottom: 0;
  font-size: 13px;
}

.global-nav-page > .global-site-header .primary-nav a:hover,
.global-nav-page > .global-site-header .primary-nav a.active {
  color: var(--teal);
  border-bottom-color: transparent;
}

.global-nav-page > .global-site-header .primary-nav a::after {
  display: block;
}

.global-nav-page > main {
  padding-top: calc(var(--global-announcement-height) + var(--global-header-height));
}

.global-nav-page .global-action-link {
  color: var(--ink);
}

.global-nav-page .global-action-link:hover {
  color: var(--teal);
}

.global-nav-page .mobile-menu.open {
  max-height: 520px;
}

@media (max-width: 780px) {
  .global-nav-page {
    --global-announcement-height: 30px;
    --global-header-height: 68px;
  }

  .global-nav-page > .global-announcement .announcement-inner {
    height: var(--global-announcement-height);
  }

  .global-nav-page > .global-site-header .primary-nav {
    display: none;
  }

  .global-nav-page > .global-site-header .mobile-menu {
    display: flex;
  }

  .global-nav-page > main {
    padding-top: calc(var(--global-announcement-height) + var(--global-header-height));
  }
}

@media (max-width: 580px) {
  .global-nav-page {
    --global-announcement-height: 32px;
    --global-header-height: 68px;
  }

  .global-nav-page > .global-announcement {
    height: var(--global-announcement-height);
  }

  .global-nav-page > .global-announcement .announcement-inner {
    min-height: var(--global-announcement-height);
    height: var(--global-announcement-height);
    padding-top: 0;
    padding-bottom: 0;
  }

  .global-nav-page > .global-announcement .announcement-inner > a {
    display: none;
  }
}

/* Homepage recommendations and standalone health category tabs. */
.hot-products-toolbar {
  justify-content: flex-end;
}

.hot-products-note {
  margin-right: auto;
  color: var(--muted);
  font: 11px var(--mono);
}

.category-page-main {
  padding-bottom: 94px;
  background: var(--paper-warm);
}

.category-page-shell {
  overflow: hidden;
  border: 1px solid #dfe9e3;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(13, 47, 51, .08);
}

.category-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 55px 58px 0;
}

.category-page-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.075em;
}

.category-page-heading p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.category-product-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font: 11px var(--mono);
}

.category-product-count strong {
  color: var(--teal);
  font: 700 40px var(--sans);
  letter-spacing: -.08em;
}

.category-page-tabs {
  display: flex;
  gap: 24px;
  margin: 42px 58px 0;
  border-bottom: 1px solid var(--line);
}

.category-page-tabs a {
  position: relative;
  padding: 12px 3px 14px;
  color: #71858b;
  font-size: 15px;
  font-weight: 700;
}

.category-page-tabs a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s;
}

.category-page-tabs a:hover,
.category-page-tabs a.active {
  color: var(--teal);
}

.category-page-tabs a:hover::after,
.category-page-tabs a.active::after {
  transform: scaleX(1);
}

.category-product-grid {
  margin: 30px 58px 58px;
}

.category-product-card {
  cursor: pointer;
}

.category-footer-bottom {
  border-top-color: rgba(145, 233, 224, .14);
}

.category-footer-bottom a {
  color: rgba(255, 255, 255, .48);
}

.category-footer-bottom a:hover {
  color: var(--lime);
}

@media (max-width: 1100px) {
  .category-page-heading {
    padding-right: 35px;
    padding-left: 35px;
  }

  .category-page-tabs,
  .category-product-grid {
    margin-right: 35px;
    margin-left: 35px;
  }
}

@media (max-width: 780px) {
  .hot-products-toolbar {
    display: flex;
    align-items: center;
  }

  .category-page-heading {
    display: block;
    padding: 38px 20px 0;
  }

  .category-page-heading h1 {
    font-size: 42px;
  }

  .category-product-count {
    margin-top: 18px;
  }

  .category-page-tabs {
    gap: 11px;
    margin: 32px 20px 0;
  }

  .category-page-tabs a {
    padding: 10px 2px 11px;
    font-size: 12px;
  }

  .category-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 20px 20px;
  }
}

@media (max-width: 440px) {
  .category-product-grid {
    grid-template-columns: 1fr;
  }

  .category-page-tabs {
    gap: 7px;
  }

  .category-page-tabs a {
    font-size: 11px;
  }
}

/* Information service center and the three-step publishing flow. */
.information-service-main {
  background: var(--paper-warm);
}

.information-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 78% 24%, rgba(145, 233, 224, .28), transparent 24%), linear-gradient(116deg, #062a38 0%, #08716d 62%, #14a58e 100%);
}

.information-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .22;
  background: linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.07) 40px, transparent 41px), linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.06) 40px, transparent 41px);
  background-size: 40px 40px;
}

.information-hero-inner {
  min-height: 560px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.information-hero-copy {
  padding: 62px 0;
}

.information-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -.075em;
}

.information-hero-copy h1 em {
  color: var(--lime);
  font-style: normal;
}

.information-hero-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(239, 255, 249, .72);
  font-size: 14px;
  line-height: 2;
}

.information-hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 32px;
}

.information-hero-visual {
  min-height: 390px;
  position: relative;
}

.information-orbit {
  width: 470px;
  height: 470px;
  position: absolute;
  top: 50%;
  left: 52%;
  border: 1px solid rgba(214, 239, 148, .38);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(214,239,148,.06), 0 0 0 106px rgba(145,233,224,.04);
  transform: translate(-50%, -50%) rotate(24deg);
}

.information-glass-card {
  width: 300px;
  min-height: 270px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 52%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.35);
  background: linear-gradient(145deg, rgba(244,255,235,.92), rgba(125,222,193,.2));
  box-shadow: 0 28px 60px rgba(0, 28, 37, .25), inset 0 0 40px rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.information-glass-card::after {
  content: '✦';
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--teal);
  font-size: 25px;
}

.information-glass-card small {
  color: #337a72;
  font: 9px var(--mono);
  letter-spacing: .12em;
}

.information-glass-card strong {
  margin-top: auto;
  color: #0b3d43;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.08em;
}

.information-glass-card span {
  margin-top: 18px;
  color: rgba(11, 61, 67, .6);
  font: 10px var(--mono);
}

.information-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(203,248,221,.28);
  background: rgba(4,38,45,.32);
  backdrop-filter: blur(8px);
  font: 10px var(--mono);
}

.information-float-card b {
  color: var(--lime);
  font-size: 16px;
}

.float-card-one { top: 58px; right: 8%; }
.float-card-two { right: 4%; bottom: 54px; }

.information-overview {
  padding: 0;
  background: #e6f1ec;
  border-bottom: 1px solid #d9e7e0;
}

.information-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.information-overview-grid > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 24px;
  border-right: 1px solid #d4e4dc;
}

.information-overview-grid > div:first-child {
  border-left: 1px solid #d4e4dc;
}

.information-overview-grid strong {
  color: var(--teal);
  font-size: 26px;
  letter-spacing: -.07em;
}

.information-overview-grid span {
  color: #81938f;
  font: 10px var(--mono);
}

.information-list-section.section {
  padding: 96px 0 88px;
  background: var(--paper);
}

.information-section-heading .button {
  margin-bottom: 4px;
}

.information-toolbar {
  display: flex;
  gap: 14px;
  margin-top: 42px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.information-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #8b9ea0;
  border-bottom: 1px solid #c5d5d1;
}

.information-search input {
  width: 100%;
  min-height: 36px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

.information-toolbar select {
  width: 285px;
  padding: 0 12px;
  color: #607677;
  border: 1px solid #d5e4dc;
  outline: 0;
  background: #fff;
  font-size: 12px;
}

.information-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.information-category-tab {
  padding: 8px 14px;
  color: #829498;
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  font-size: 12px;
}

.information-category-tab:hover,
.information-category-tab.active {
  color: var(--teal);
  border-color: #add6ca;
  background: #e7f4ee;
}

.information-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 27px;
}

.information-card {
  min-height: 294px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dfe9e3;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.information-card:hover {
  border-color: #beddd2;
  box-shadow: 0 18px 36px rgba(13, 47, 51, .08);
  transform: translateY(-4px);
}

.information-card-top,
.information-card-company,
.information-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.information-card-category,
.information-card-status {
  font: 10px var(--mono);
}

.information-card-category {
  color: var(--teal);
}

.information-card-status {
  color: #7a9d87;
}

.information-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.information-card > p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.information-card-company {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #edf2ef;
}

.company-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--teal-bright), var(--teal));
  font-weight: 800;
}

.information-card-company strong,
.information-card-company small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.information-card-company strong {
  max-width: 230px;
  color: var(--ink);
  font-size: 11px;
}

.information-card-company small {
  margin-top: 3px;
  color: #91a0a0;
  font: 9px var(--mono);
}

.information-card-bottom {
  align-items: end;
  margin-top: 17px;
}

.information-card-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.information-card-bottom span {
  color: #8ca29d;
  font: 9px var(--mono);
}

.information-detail-button {
  flex: 0 0 auto;
  padding: 0;
  color: var(--teal);
  border: 0;
  background: transparent;
  font-size: 11px;
}

.information-detail-button:hover {
  color: var(--ink);
}

.information-card-linked,
.information-card-research {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid #e1eee8;
  border-radius: 8px;
  background: #f7fcf9;
}

.information-card-linked > span,
.information-card-research > span {
  color: #88a29a;
  font: 9px var(--mono);
}

.information-card-linked strong {
  color: var(--ink);
  font-size: 11px;
}

.information-card-linked a {
  width: fit-content;
  color: var(--teal);
  font-size: 10px;
}

.information-card-research > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.information-card-research em {
  padding: 4px 6px;
  color: #52766e;
  border-radius: 999px;
  background: #e9f6ef;
  font-size: 9px;
  font-style: normal;
}

.information-card-actions {
  align-items: center !important;
  gap: 11px !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.information-action-button {
  padding: 7px 10px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: var(--teal);
  font-size: 10px;
}

.information-action-button:hover {
  background: var(--ink);
}

.information-empty {
  padding: 72px 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.information-rules.section {
  padding: 72px 0;
  background: var(--paper-warm);
}

.information-rules-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 38px 44px;
  border: 1px solid #dfe9e3;
  background: #fff;
}

.information-rules-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.06em;
}

.information-rules-copy p {
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.information-footer-bottom {
  border-top-color: rgba(145, 233, 224, .14);
}

.information-footer-bottom a {
  color: rgba(255,255,255,.48);
}

.information-footer-bottom a:hover {
  color: var(--lime);
}

.publish-main {
  padding-bottom: 96px;
  background: linear-gradient(140deg, #eff8f8 0%, #f8faf7 58%, #eaf5f0 100%);
}

.publish-layout {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.publish-guide {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding: 33px 29px;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(155deg, #076b83 0%, #087caf 55%, #1599cf 100%);
  box-shadow: 0 20px 50px rgba(12, 94, 127, .18);
}

.publish-guide::before,
.publish-guide::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(218, 248, 255, .18);
  border-radius: 50%;
}

.publish-guide::before { width: 390px; height: 390px; right: -225px; top: -155px; }
.publish-guide::after { width: 260px; height: 260px; left: -185px; bottom: -80px; }

.publish-back {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 13px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 20px;
  font-size: 12px;
}

.publish-kicker {
  position: relative;
  z-index: 1;
  margin: 92px 0 8px;
  color: #c0f5ff;
  font: 11px var(--mono);
  letter-spacing: .3em;
  text-align: center;
}

.publish-guide h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.08em;
  text-align: center;
}

.publish-guide > p:not(.publish-kicker) {
  position: relative;
  z-index: 1;
  margin: 15px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.publish-guide-steps {
  position: relative;
  z-index: 1;
  margin-top: 65px;
}

.publish-guide-steps::before {
  content: '';
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 18px;
  width: 1px;
  background: rgba(218,248,255,.38);
}

.publish-guide-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 90px;
}

.publish-guide-step > span {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #d7f8ff;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font: 12px var(--mono);
}

.publish-guide-step.active > span,
.publish-guide-step.complete > span {
  color: #1675a2;
  border-color: #fff;
  background: #fff;
}

.publish-guide-step b,
.publish-guide-step small {
  display: block;
}

.publish-guide-step b {
  color: #fff;
  font-size: 13px;
}

.publish-guide-step small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

.publish-guide-note {
  position: absolute;
  right: 29px;
  bottom: 28px;
  left: 29px;
  z-index: 1;
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.publish-guide-note > span {
  color: var(--lime);
}

.publish-guide-note p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  line-height: 1.7;
}

.publish-form-shell {
  min-width: 0;
  padding: 36px 42px 0;
  border: 1px solid #dfe9e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(13,47,51,.08);
}

.publish-form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 27px;
  border-bottom: 1px solid #e6eeea;
}

.publish-form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  letter-spacing: -.06em;
}

.publish-form-heading p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.publish-step-count {
  color: var(--teal);
  font: 11px var(--mono);
}

.publish-panel {
  display: none;
  padding: 31px 0 35px;
}

.publish-panel.active {
  display: block;
}

.publish-category-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.publish-category-option {
  min-height: 116px;
  position: relative;
  display: grid;
  grid-template-columns: 43px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid #dfe9e3;
  border-radius: 7px;
  background: #fbfdfc;
  text-align: left;
  transition: border .2s, background .2s, transform .2s;
}

.publish-category-option:hover,
.publish-category-option.active {
  border-color: #8acfc0;
  background: #effaf5;
  transform: translateY(-2px);
}

.publish-category-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(145deg, #17b9c4, #277bc5);
  font: 11px var(--mono);
}

.publish-category-option strong,
.publish-category-option small {
  display: block;
}

.publish-category-option strong {
  font-size: 14px;
}

.publish-category-option small {
  margin-top: 5px;
  color: #8a9e9d;
  font-size: 10px;
  line-height: 1.6;
}

.publish-category-arrow {
  color: var(--teal);
  font-size: 17px;
}

.publish-field-error,
.publish-form-error {
  min-height: 18px;
  margin: 13px 0 0;
  color: #c95e51;
  font-size: 11px;
}

.publish-field-error:empty,
.publish-form-error:empty {
  margin-top: 0;
}

.publish-panel-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #e6eeea;
}

.publish-primary-action,
.publish-secondary-action {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

button.publish-primary-action,
button.publish-secondary-action {
  font: inherit;
  cursor: pointer;
}

.publish-primary-action {
  color: #fff;
  border: 1px solid var(--teal);
  background: var(--teal);
}

.publish-primary-action:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.publish-secondary-action {
  color: #637b79;
  border: 1px solid #d4e1dc;
  background: #fff;
}

.publish-secondary-action:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.publish-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 18px;
}

.publish-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.publish-field > span {
  color: #587271;
  font-size: 11px;
}

.publish-field b {
  color: #d26759;
}

.publish-field input,
.publish-field select,
.publish-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  outline: 0;
  border: 1px solid #d9e6df;
  border-radius: 3px;
  background: #fbfdfb;
  font-size: 12px;
}

.publish-field textarea {
  min-height: 92px;
  resize: vertical;
}

.publish-field input:focus,
.publish-field select:focus,
.publish-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #e5f5ee;
}

.publish-field.publish-invalid input,
.publish-field.publish-invalid select,
.publish-field.publish-invalid textarea,
.publish-consent.publish-invalid {
  border-color: #e49383;
  background: #fff9f7;
}

.publish-field.full,
.publish-upload.full,
.publish-consent.full {
  grid-column: 1 / -1;
}

.publish-upload {
  min-height: 92px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  border: 1px dashed #b8d9cc;
  border-radius: 4px;
  background: #f5fbf7;
}

.publish-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.publish-upload strong {
  color: var(--teal);
  font-size: 12px;
}

.publish-upload small {
  color: #8aa09b;
  font-size: 10px;
}

.publish-consent {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  color: #557674;
  border: 1px solid #d4ebe4;
  border-radius: 4px;
  background: #f2fcf9;
  font-size: 11px;
}

.publish-consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--teal);
}

.publish-company-authorization {
  margin-top: 2px;
}

.publish-company-authorization[hidden] {
  display: none;
}

.publish-success-panel {
  padding: 75px 20px 95px;
  text-align: center;
}

.publish-success-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 10px #e4f5ed;
  font-size: 29px;
}

.publish-success-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
}

.publish-success-panel > p:not(.eyebrow) {
  max-width: 480px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.publish-application-id {
  display: inline-block;
  margin-top: 21px;
  padding: 11px 15px;
  color: #68827b;
  background: #f1f8f4;
  font: 11px var(--mono);
}

.publish-application-id strong {
  color: var(--teal);
}

.publish-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 27px;
}

@media (max-width: 1000px) {
  .information-hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .information-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .publish-layout {
    grid-template-columns: 265px minmax(0, 1fr);
  }

  .publish-form-shell {
    padding-right: 27px;
    padding-left: 27px;
  }
}

@media (max-width: 780px) {
  .information-hero-inner {
    display: block;
    min-height: auto;
  }

  .information-hero-copy {
    padding: 60px 0 20px;
  }

  .information-hero-copy h1 {
    font-size: clamp(42px, 12vw, 63px);
  }

  .information-hero-visual {
    min-height: 320px;
  }

  .information-orbit {
    width: 380px;
    height: 380px;
    left: 50%;
  }

  .information-glass-card {
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg) scale(.84);
  }

  .float-card-one { top: 28px; right: 0; }
  .float-card-two { right: 0; bottom: 27px; }

  .information-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .information-overview-grid > div:nth-child(3) {
    border-left: 1px solid #d4e4dc;
    border-top: 1px solid #d4e4dc;
  }

  .information-overview-grid > div:nth-child(4) {
    border-top: 1px solid #d4e4dc;
  }

  .information-section-heading {
    display: block;
  }

  .information-publish-button {
    display: inline-flex;
    margin-top: 23px;
  }

  .information-toolbar {
    display: block;
  }

  .information-toolbar select {
    width: 100%;
    min-height: 42px;
    margin-top: 14px;
  }

  .information-card-grid {
    grid-template-columns: 1fr;
  }

  .information-rules-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 28px 20px;
  }

  .publish-layout {
    display: block;
  }

  .publish-guide {
    min-height: 0;
    padding: 26px 22px 22px;
    border-radius: 14px 14px 0 0;
  }

  .publish-kicker {
    margin-top: 34px;
  }

  .publish-guide h1 {
    font-size: 34px;
  }

  .publish-guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 34px;
  }

  .publish-guide-steps::before {
    top: 19px;
    right: 16%;
    bottom: auto;
    left: 16%;
    width: auto;
    height: 1px;
  }

  .publish-guide-step {
    min-height: 68px;
    display: block;
    text-align: center;
  }

  .publish-guide-step > span {
    margin: 0 auto;
  }

  .publish-guide-step b {
    margin-top: 7px;
    font-size: 10px;
  }

  .publish-guide-step small {
    display: none;
  }

  .publish-guide-note {
    position: static;
    margin-top: 17px;
  }

  .publish-form-shell {
    padding: 27px 20px 0;
    border-radius: 0 0 14px 14px;
  }

  .publish-form-heading h2 {
    font-size: 25px;
  }

  .publish-category-options,
  .publish-form-grid {
    grid-template-columns: 1fr;
  }

  .publish-field.full,
  .publish-upload.full,
  .publish-consent.full {
    grid-column: auto;
  }

  .publish-success-panel {
    padding: 55px 10px 70px;
  }
}

@media (max-width: 440px) {
  .information-hero-actions {
    gap: 10px;
  }

  .information-hero-actions .button {
    padding: 0 15px;
    gap: 9px;
    font-size: 11px;
  }

  .information-overview-grid > div {
    padding-right: 12px;
    padding-left: 12px;
  }

  .publish-panel-actions,
  .publish-success-actions {
    gap: 8px;
  }

  .publish-primary-action,
  .publish-secondary-action {
    min-width: 0;
    flex: 1;
    padding: 0 10px;
  }
}

/* Membership benefits and recharge rules. */
.member-main {
  background: var(--paper-warm);
}

.member-hero {
  position: relative;
  overflow: hidden;
  color: #f7fffb;
  background: radial-gradient(circle at 78% 26%, rgba(24, 200, 193, .30), transparent 25%), radial-gradient(circle at 22% 100%, rgba(31, 108, 126, .45), transparent 34%), linear-gradient(120deg, #071e2c 0%, #083743 52%, #0a6868 100%);
}

.member-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background: linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.05) 40px, transparent 41px), linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.05) 40px, transparent 41px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.member-hero-inner {
  min-height: 570px;
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 32px;
}

.member-hero-copy {
  position: relative;
  z-index: 2;
  padding: 70px 0 78px;
}

.member-hero-copy h1 {
  max-width: 570px;
  margin: 0;
  color: #f7fffb;
  font-size: clamp(43px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.075em;
}

.member-hero-copy h1 em,
.member-rules-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.member-hero-copy > p:not(.eyebrow) {
  max-width: 455px;
  margin: 25px 0 0;
  color: rgba(242,255,251,.70);
  font-size: 14px;
  line-height: 2;
}

.member-hero-actions {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 34px;
}

.member-proof {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 49px;
  color: var(--lime);
  font-size: 8px;
}

.member-proof p {
  margin: 0 0 0 10px;
  color: rgba(255,255,255,.48);
  font: 10px var(--mono);
}

.member-hero-visual {
  min-height: 490px;
  position: relative;
}

.member-orbit {
  position: absolute;
  left: 55%;
  top: 50%;
  border: 1px solid rgba(153,239,224,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.member-orbit-one {
  width: 490px;
  height: 490px;
  box-shadow: 0 0 0 40px rgba(153,239,224,.04), 0 0 0 100px rgba(153,239,224,.025);
}

.member-orbit-two {
  width: 650px;
  height: 270px;
  transform: translate(-50%, -50%) rotate(-22deg);
  opacity: .58;
}

.member-glass-card {
  width: 320px;
  min-height: 290px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 55%;
  padding: 29px 30px;
  border: 1px solid rgba(186,255,237,.32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  box-shadow: 0 30px 65px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(15px);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.member-glass-card::after {
  content: '';
  width: 116px;
  height: 116px;
  position: absolute;
  right: -45px;
  bottom: -41px;
  border: 1px solid rgba(214,239,148,.55);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(214,239,148,.07), 0 0 0 30px rgba(214,239,148,.04);
}

.member-glass-card small,
.member-glass-card strong,
.member-glass-card em {
  display: block;
}

.member-glass-card small {
  color: var(--cyan);
  font: 10px var(--mono);
  letter-spacing: .16em;
}

.member-glass-card strong {
  margin-top: 40px;
  color: #f7fffb;
  font-size: 37px;
  line-height: 1.08;
  letter-spacing: -.08em;
}

.member-glass-card em {
  color: var(--lime);
  font-style: normal;
}

.member-glass-line {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 41px;
}

.member-glass-line span {
  width: 25px;
  height: 3px;
  display: block;
  background: var(--teal-bright);
}

.member-glass-line span:nth-child(2) { background: var(--lime); }
.member-glass-line span:nth-child(3) { background: rgba(255,255,255,.35); }
.member-glass-line b { margin-left: auto; color: rgba(255,255,255,.45); font: 9px var(--mono); }

.member-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 1px solid rgba(172,245,233,.29);
  border-radius: 3px;
  background: rgba(2,29,38,.39);
  box-shadow: 0 15px 28px rgba(0,0,0,.13);
  backdrop-filter: blur(8px);
}

.member-float-card b { color: var(--lime); font: 13px var(--mono); }
.member-float-card span { color: rgba(255,255,255,.80); font-size: 11px; }
.member-float-one { top: 91px; right: 7%; }
.member-float-two { right: 4%; bottom: 95px; }

.member-overview {
  padding: 0;
  background: #e6f1ec;
  border-bottom: 1px solid #d9e7e0;
}

.member-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.member-overview-grid > div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px 22px;
  border-right: 1px solid #d4e4dc;
}

.member-overview-grid > div:first-child { border-left: 1px solid #d4e4dc; }
.member-overview-grid strong { color: var(--teal); font-size: 25px; line-height: 1; letter-spacing: -.06em; }
.member-overview-grid span { margin-top: 8px; color: #80948f; font: 10px var(--mono); }

.member-plans,
.member-process,
.member-faq {
  background: var(--paper-warm);
}

.member-section-heading { align-items: end; }
.member-section-note { padding-bottom: 8px; color: #8a9b98; font: 10px var(--mono); }
.member-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 47px; }

.member-plan-card {
  min-height: 422px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 25px 22px;
  border: 1px solid #dce8e2;
  border-radius: 7px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 16px 40px rgba(13,47,51,.04);
  transition: transform .2s, border .2s, box-shadow .2s;
}

.member-plan-card:hover,
.member-plan-card.is-selected {
  border-color: #9dd5c5;
  box-shadow: 0 22px 44px rgba(13,47,51,.09);
  transform: translateY(-4px);
}

.member-plan-card.recommended { background: #f0fbf5; }
.member-plan-card.recommended::before { content: 'RECOMMENDED'; position: absolute; top: -10px; right: 18px; padding: 4px 8px; color: var(--ink); background: var(--lime); font: 9px var(--mono); letter-spacing: .08em; }
.member-plan-top { display: flex; align-items: center; justify-content: space-between; }
.member-plan-index { color: var(--teal); font: 11px var(--mono); }
.member-plan-tag { color: #84a097; font: 10px var(--mono); }
.member-plan-card h3 { margin: 31px 0 0; color: var(--ink); font-size: 25px; letter-spacing: -.055em; }
.member-plan-lead { min-height: 45px; margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.member-price { display: flex; align-items: baseline; gap: 7px; margin-top: 22px; padding-bottom: 18px; border-bottom: 1px solid #dce9e1; }
.member-price strong { color: var(--teal); font-size: 30px; letter-spacing: -.07em; }
.member-price span { color: #8ba09b; font: 10px var(--mono); }
.member-plan-card ul { display: grid; gap: 9px; margin: 20px 0 24px; padding: 0; list-style: none; }
.member-plan-card li { position: relative; padding-left: 17px; color: #5b7470; font-size: 11px; }
.member-plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.member-plan-button { width: 100%; min-height: 42px; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 0 14px; color: var(--teal); border: 1px solid #add9ca; border-radius: 3px; background: transparent; font-size: 11px; font-weight: 700; }
.member-plan-button:hover { color: #fff; border-color: var(--teal); background: var(--teal); }

.member-rights-section {
  color: #eafff9;
  background: linear-gradient(120deg, #071e2c 0%, #083743 55%, #075e61 100%);
}

.member-dark-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.member-dark-heading h2 { margin: 0; color: #f7fffb; font-size: clamp(33px, 4vw, 52px); letter-spacing: -.07em; line-height: 1.08; }
.member-dark-heading > p { max-width: 320px; margin: 0; color: rgba(234,255,249,.55); font-size: 12px; line-height: 1.9; }
.member-rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; border-top: 1px solid rgba(198,255,238,.17); border-left: 1px solid rgba(198,255,238,.17); }
.member-rights-grid article { min-height: 171px; padding: 24px 25px; border-right: 1px solid rgba(198,255,238,.17); border-bottom: 1px solid rgba(198,255,238,.17); background: rgba(255,255,255,.035); }
.member-rights-grid article:hover { background: rgba(255,255,255,.075); }
.member-rights-grid article > span { color: var(--lime); font: 10px var(--mono); }
.member-rights-grid h3 { margin: 22px 0 8px; color: #f5fffb; font-size: 16px; }
.member-rights-grid p { margin: 0; color: rgba(234,255,249,.55); font-size: 11px; line-height: 1.8; }

.member-rules { background: #edf5f1; }
.member-rules-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 80px; }
.member-rules-copy { padding-top: 20px; }
.member-rules-copy h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.07em; }
.member-rules-copy > p:not(.eyebrow) { max-width: 385px; margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.95; }
.member-rules-copy .text-link { display: inline-block; margin-top: 25px; }
.member-recharge-card { padding: 27px 28px 23px; border: 1px solid #d4e6dd; border-radius: 7px; background: rgba(255,255,255,.90); box-shadow: 0 21px 53px rgba(13,47,51,.07); }
.member-recharge-card-top { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #e2ece7; }
.member-recharge-card-top span { color: #8aa09a; font: 10px var(--mono); }
.member-recharge-card-top b { color: var(--teal); font-size: 16px; }
.member-select-field { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; color: #58726e; font-size: 11px; }
.member-select-field select { width: 100%; min-height: 44px; padding: 0 12px; color: var(--ink); border: 1px solid #d8e5df; border-radius: 3px; outline: 0; background: #fbfdfb; font-size: 12px; }
.member-select-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px #e5f5ee; }
.member-recharge-price { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 20px; margin-top: 24px; padding: 18px 16px; background: #eef9f4; }
.member-recharge-price small { color: #75908a; font: 10px var(--mono); }
.member-recharge-price strong { color: var(--teal); font-size: 29px; letter-spacing: -.07em; }
.member-recharge-price span { grid-column: 1 / -1; color: #94a9a2; font: 10px var(--mono); }
.member-rule-list { display: grid; gap: 14px; margin: 22px 0 21px; padding: 0; list-style: none; }
.member-rule-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.member-rule-list li > span { color: var(--teal); font: 10px var(--mono); }
.member-rule-list p { margin: 0; color: #5e7772; font-size: 11px; line-height: 1.75; }
.member-recharge-button { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; color: #fff; border: 1px solid var(--teal); border-radius: 3px; background: var(--teal); font-size: 12px; font-weight: 700; }
.member-recharge-button:hover { border-color: var(--ink); background: var(--ink); }
.member-recharge-note { margin: 13px 0 0; color: #9aaba5; font-size: 10px; line-height: 1.7; }

.member-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; border-top: 1px solid #d7e5de; border-left: 1px solid #d7e5de; }
.member-process-grid article { min-height: 170px; padding: 23px 25px; border-right: 1px solid #d7e5de; border-bottom: 1px solid #d7e5de; background: rgba(255,255,255,.56); }
.member-process-grid article > span { color: var(--teal); font: 10px var(--mono); }
.member-process-grid h3 { margin: 26px 0 8px; color: var(--ink); font-size: 16px; }
.member-process-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.member-faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 85px; }
.member-faq-grid h2 { margin: 0; color: var(--ink); font-size: 43px; letter-spacing: -.07em; }
.member-faq-grid > div:first-child > p:last-child { max-width: 220px; margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.member-faq-list { border-top: 1px solid #d7e5de; }
.member-faq-list details { border-bottom: 1px solid #d7e5de; }
.member-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0; color: var(--ink); cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.member-faq-list summary::-webkit-details-marker { display: none; }
.member-faq-list summary span { color: var(--teal); font: 22px/1 var(--mono); font-weight: 400; transition: transform .2s; }
.member-faq-list details[open] summary span { transform: rotate(45deg); }
.member-faq-list details p { max-width: 680px; margin: -3px 0 19px; color: var(--muted); font-size: 12px; line-height: 1.9; }

@media (max-width: 1120px) and (min-width: 781px) {
  .global-nav-page > .global-site-header .nav-inner { gap: 14px; }
  .global-nav-page > .global-site-header .primary-nav { gap: 0; }
  .global-nav-page > .global-site-header .primary-nav a { padding-right: 6px; padding-left: 6px; font-size: 11px; }
  .global-nav-page > .global-site-header .nav-actions { gap: 4px; }
}

@media (max-width: 1000px) {
  .member-hero-inner { grid-template-columns: 1fr 1fr; }
  .member-plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
  .member-plan-card { padding-right: 18px; padding-left: 18px; }
  .member-rules-grid { gap: 38px; }
  .member-faq-grid { gap: 45px; }
}

@media (max-width: 780px) {
  .member-hero-inner { display: block; min-height: auto; }
  .member-hero-copy { padding: 61px 0 21px; }
  .member-hero-copy h1 { font-size: clamp(42px, 12vw, 63px); }
  .member-hero-visual { min-height: 335px; }
  .member-orbit-one { width: 370px; height: 370px; left: 50%; }
  .member-orbit-two { left: 50%; width: 500px; }
  .member-glass-card { left: 50%; transform: translate(-50%, -50%) rotate(-6deg) scale(.84); }
  .member-float-one { top: 27px; right: 0; }
  .member-float-two { right: 0; bottom: 30px; }
  .member-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .member-overview-grid > div:nth-child(3) { border-left: 1px solid #d4e4dc; border-top: 1px solid #d4e4dc; }
  .member-overview-grid > div:nth-child(4) { border-top: 1px solid #d4e4dc; }
  .member-section-heading { display: block; }
  .member-section-note { display: block; margin-top: 17px; padding-bottom: 0; }
  .member-plan-grid { grid-template-columns: 1fr; gap: 13px; }
  .member-plan-card { min-height: auto; padding: 21px 20px; }
  .member-plan-lead { min-height: 0; }
  .member-plan-card ul { margin-bottom: 21px; }
  .member-dark-heading { display: block; }
  .member-dark-heading > p { margin-top: 19px; }
  .member-rights-grid { grid-template-columns: repeat(2, 1fr); }
  .member-rights-grid article { min-height: 160px; padding: 20px 17px; }
  .member-rules-grid { grid-template-columns: 1fr; gap: 38px; }
  .member-rules-copy { padding-top: 0; }
  .member-process-grid { grid-template-columns: 1fr; }
  .member-process-grid article { min-height: 138px; }
  .member-faq-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 440px) {
  .member-hero-actions { gap: 10px; }
  .member-hero-actions .button { padding-right: 15px; padding-left: 15px; gap: 9px; font-size: 11px; }
  .member-hero-visual { min-height: 300px; }
  .member-glass-card { transform: translate(-50%, -50%) rotate(-6deg) scale(.72); }
  .member-float-card { transform: scale(.88); transform-origin: right center; }
  .member-rights-grid { grid-template-columns: 1fr; }
  .member-recharge-card { padding-right: 18px; padding-left: 18px; }
  .member-recharge-price strong { font-size: 25px; }
}

/* About portal and contact center. */
.about-main {
  min-height: 860px;
  padding: 20px 0 78px;
  background: radial-gradient(circle at 8% 23%, rgba(98,188,245,.28), transparent 28%), radial-gradient(circle at 95% 57%, rgba(255,255,255,.88), transparent 34%), #eaf4ff;
}

.about-portal-head {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 29px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 19px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 17px 38px rgba(37,110,169,.10);
}

.about-portal-head > div { display: flex; align-items: baseline; gap: 17px; }
.about-portal-kicker { color: #0d81c3; font: 11px var(--mono); letter-spacing: .18em; }
.about-portal-head strong { color: var(--ink); font-size: 18px; letter-spacing: -.04em; }
.about-home-button { min-height: 42px; display: inline-flex; align-items: center; padding: 0 22px; color: #fff; border-radius: 23px; background: #0d7fc0; box-shadow: 0 10px 20px rgba(13,127,192,.20); font-size: 12px; font-weight: 800; }
.about-home-button:hover { background: var(--ink); }

.about-shell {
  min-height: 780px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  overflow: hidden;
  margin-top: 24px;
  border-radius: 27px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(37,110,169,.12);
}

.about-sidebar {
  position: relative;
  padding: 42px 24px 30px;
  color: #e9f7ff;
  background: linear-gradient(165deg, #1189c4 0%, #0d75b5 48%, #0869a7 100%);
}

.about-sidebar::before { content: ''; position: absolute; width: 210px; height: 210px; top: -100px; right: -85px; border: 1px solid rgba(220,250,255,.20); border-radius: 50%; box-shadow: 0 0 0 24px rgba(220,250,255,.04), 0 0 0 65px rgba(220,250,255,.025); }
.about-sidebar-title { position: relative; margin: 0 0 26px; color: rgba(232,249,255,.72); text-align: center; font: 11px var(--mono); letter-spacing: .14em; }
.about-side-nav { position: relative; display: grid; gap: 10px; }
.about-side-nav button { min-height: 60px; display: flex; align-items: center; gap: 13px; padding: 0 20px; color: rgba(233,247,255,.84); border: 0; border-radius: 15px; background: transparent; text-align: left; font-size: 15px; font-weight: 700; transition: background .2s, color .2s, transform .2s; }
.about-side-nav button:hover { color: #fff; background: rgba(255,255,255,.12); transform: translateX(2px); }
.about-side-nav button.active { color: #0874b4; background: #fff; box-shadow: 0 12px 23px rgba(3,58,105,.13); }
.about-side-nav button span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 9px; color: #dff6ff; background: rgba(255,255,255,.12); font: 14px var(--mono); }
.about-side-nav button.active span { color: #0d7fc0; background: #dcecff; }
.about-sidebar-contact { position: absolute; right: 24px; bottom: 27px; left: 24px; padding: 18px 16px; border: 1px solid rgba(216,247,255,.17); border-radius: 13px; background: rgba(4,63,111,.15); }
.about-sidebar-contact small, .about-sidebar-contact span { display: block; color: rgba(232,249,255,.62); font: 10px var(--mono); }
.about-sidebar-contact strong { display: block; margin: 6px 0 5px; color: #fff; font-size: 16px; }

.about-content { min-width: 0; padding: 46px 49px 60px; background: rgba(255,255,255,.91); }
.about-content-heading { padding: 0 0 28px; border-bottom: 1px solid #dce8f2; text-align: center; }
.about-blue-eyebrow { justify-content: center; margin-bottom: 15px; color: #0d81c3; }
.about-content-heading h1 { margin: 0; color: #071b37; font-size: clamp(31px, 3vw, 47px); letter-spacing: -.075em; line-height: 1.15; }
.about-content-heading > p:last-child { margin: 13px auto 0; color: #587599; font-size: 13px; }
.about-view { display: none; }
.about-view.active { display: block; }
.about-main-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin: 29px 0 31px; }
.about-main-tabs button, .about-main-tabs a { min-height: 43px; display: inline-flex; align-items: center; padding: 0 21px; color: #627d9d; border: 0; border-radius: 24px; background: #f1f5f9; font-size: 12px; cursor: pointer; }
.about-main-tabs button:hover, .about-main-tabs button.active, .about-main-tabs a:hover { color: #fff; background: #0d7fc0; box-shadow: 0 10px 21px rgba(13,127,192,.16); }
.about-main-panel { display: none; }
.about-main-panel.active { display: block; }
.about-intro-card, .about-review-card, .about-subpage-card { padding: 31px 43px; border: 1px solid #dcebf4; border-radius: 22px; background: #fff; box-shadow: 0 12px 32px rgba(40,113,164,.045); }
.about-intro-card p { margin: 0 0 17px; color: #3e5877; font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif; font-size: 15px; line-height: 2.15; }
.about-intro-card p:last-child { margin-bottom: 0; }
.about-fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 18px; }
.about-fact-grid article { min-height: 155px; padding: 19px 18px; border: 1px solid #e0edf4; border-radius: 13px; background: #f8fbfe; }
.about-fact-grid span, .about-review-steps span { color: #0d7fc0; font: 10px var(--mono); }
.about-fact-grid h3 { margin: 19px 0 7px; color: #0d3156; font-size: 15px; }
.about-fact-grid p { margin: 0; color: #7187a0; font-size: 11px; line-height: 1.75; }
.about-scope-block { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 28px; margin-top: 18px; padding: 24px 25px; border-radius: 14px; background: #eaf5fd; }
.about-mini-label { margin: 0; color: #0d81c3; font: 10px var(--mono); letter-spacing: .15em; }
.about-scope-block h2, .about-review-card h2, .about-subpage-card h2 { margin: 8px 0 0; color: #0d3156; font-size: 25px; letter-spacing: -.05em; }
.about-scope-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.about-scope-tags span { padding: 9px 13px; color: #3a6c93; border: 1px solid #c9e0ef; border-radius: 18px; background: rgba(255,255,255,.66); font-size: 11px; }

.about-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.about-contact-grid article { min-height: 174px; padding: 19px; border: 1px solid #dcebf4; border-radius: 14px; background: #f8fbfe; }
.about-contact-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; border-radius: 9px; background: #0d7fc0; font: 16px var(--mono); }
.about-contact-grid small { display: block; margin-top: 16px; color: #7690aa; font: 10px var(--mono); }
.about-contact-grid strong { display: block; margin-top: 6px; color: #0d3156; font-size: 16px; overflow-wrap: anywhere; }
.about-contact-grid p { margin: 7px 0 0; color: #7890a8; font-size: 11px; line-height: 1.65; }
.about-contact-form { margin-top: 18px; padding: 25px 27px; border: 1px solid #dcebf4; border-radius: 16px; background: #fff; }
.about-form-heading h2 { margin: 6px 0 0; color: #0d3156; font-size: 22px; }
.about-form-heading p:last-child { margin: 7px 0 0; color: #7890a8; font-size: 11px; }
.about-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.about-form-grid label { display: flex; flex-direction: column; gap: 7px; color: #577391; font-size: 11px; }
.about-form-grid .full { grid-column: 1 / -1; }
.about-form-grid input, .about-form-grid select, .about-form-grid textarea { width: 100%; min-height: 40px; padding: 9px 11px; color: #173b5d; border: 1px solid #d8e7f0; border-radius: 4px; outline: 0; background: #fbfdff; font-size: 11px; }
.about-form-grid textarea { min-height: 84px; resize: vertical; }
.about-form-grid input:focus, .about-form-grid select:focus, .about-form-grid textarea:focus { border-color: #0d7fc0; box-shadow: 0 0 0 3px #e6f3fb; }
.about-form-actions { display: flex; align-items: center; gap: 17px; margin-top: 18px; }
.about-submit { min-height: 41px; display: inline-flex; align-items: center; gap: 15px; padding: 0 18px; color: #fff; border: 1px solid #0d7fc0; border-radius: 4px; background: #0d7fc0; font-size: 11px; font-weight: 700; }
.about-submit:hover { background: #092c49; }
.about-form-actions > span { color: #9aabba; font: 10px var(--mono); }

.about-complaint-card { padding: 31px 43px; border: 1px solid #dcebf4; border-radius: 22px; background: #fff; box-shadow: 0 12px 32px rgba(40,113,164,.045); }
.about-complaint-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin-top: 22px; }
.about-complaint-form label { display: flex; flex-direction: column; gap: 7px; color: #577391; font-size: 11px; }
.about-complaint-form input, .about-complaint-form select, .about-complaint-form textarea { width: 100%; min-height: 40px; padding: 9px 11px; color: #173b5d; border: 1px solid #d8e7f0; border-radius: 4px; outline: 0; background: #fbfdfd; font-size: 11px; }
.about-complaint-form textarea { min-height: 118px; resize: vertical; }
.about-complaint-form input:focus, .about-complaint-form select:focus, .about-complaint-form textarea:focus { border-color: #0d7fc0; box-shadow: 0 0 0 3px #e6f3fb; }
.about-complaint-form input[type="file"] { padding: 8px 11px; }
.about-complaint-full { grid-column: 1 / -1; }
.about-complaint-consent { flex-direction: row !important; align-items: center; gap: 9px !important; }
.about-complaint-consent input { width: 17px; min-height: 17px; accent-color: #0d7fc0; }
.about-complaint-consent span { color: #577391; }
.about-complaint-error { grid-column: 1 / -1; min-height: 17px; margin: 0; color: #c95e51; font-size: 11px; }
.about-complaint-error.success { color: #138a71; }
.about-complaint-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 17px; margin-top: 2px; }
.about-complaint-actions > span { color: #9aabba; font: 10px var(--mono); }

@media (max-width: 780px) {
  .about-complaint-card { padding: 22px 17px; border-radius: 15px; }
  .about-complaint-form { grid-template-columns: 1fr; }
  .about-complaint-full { grid-column: auto; }
  .about-complaint-actions { align-items: flex-start; flex-direction: column; gap: 11px; }
}

.about-review-card > p:not(.about-mini-label) { max-width: 750px; margin: 18px 0 0; color: #5d7691; font-size: 13px; line-height: 1.95; }
.about-review-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 29px; border-top: 1px solid #dcebf4; border-left: 1px solid #dcebf4; }
.about-review-steps div { min-height: 125px; padding: 20px; border-right: 1px solid #dcebf4; border-bottom: 1px solid #dcebf4; background: #f8fbfe; }
.about-review-steps strong, .about-review-steps small { display: block; }
.about-review-steps strong { margin-top: 19px; color: #0d3156; font-size: 14px; }
.about-review-steps small { margin-top: 5px; color: #8298ae; font-size: 10px; }
.about-review-actions { display: flex; gap: 20px; margin-top: 25px; }
.about-review-actions a { color: #0d7fc0; font: 11px var(--mono); }
.about-review-actions a:hover { color: #092c49; }

.about-subpage-card { min-height: 430px; }
.about-subpage-card > h2 { font-size: 32px; }
.about-subpage-card > article { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid #e0edf4; }
.about-subpage-card > article:first-of-type { margin-top: 28px; border-top: 1px solid #e0edf4; }
.about-subpage-card > article > span { color: #0d7fc0; font: 11px var(--mono); }
.about-subpage-card article h3 { margin: 0; color: #0d3156; font-size: 15px; }
.about-subpage-card article p { margin: 8px 0 0; color: #7187a0; font-size: 12px; line-height: 1.85; }
.about-help-list { margin-top: 28px; border-top: 1px solid #e0edf4; }
.about-help-list details { border-bottom: 1px solid #e0edf4; }
.about-help-list summary { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; color: #0d3156; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.about-help-list summary::-webkit-details-marker { display: none; }
.about-help-list summary span { color: #0d7fc0; font: 20px/1 var(--mono); transition: transform .2s; }
.about-help-list details[open] summary span { transform: rotate(45deg); }
.about-help-list details p { margin: -2px 0 17px; color: #7187a0; font-size: 12px; line-height: 1.8; }
.about-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 29px; }
.about-link-grid a { min-height: 150px; display: flex; flex-direction: column; padding: 19px; border: 1px solid #dcebf4; border-radius: 13px; background: #f8fbfe; }
.about-link-grid a:hover { border-color: #8dc8e6; transform: translateY(-3px); }
.about-link-grid span { color: #0d7fc0; font: 10px var(--mono); }
.about-link-grid strong { margin-top: 28px; color: #0d3156; font-size: 14px; }
.about-link-grid small { margin-top: 7px; color: #8095aa; font-size: 10px; }
.about-map-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 29px; border-top: 1px solid #dcebf4; border-left: 1px solid #dcebf4; }
.about-map-grid a { min-height: 77px; display: flex; flex-direction: column; justify-content: center; padding: 0 18px; color: #0d3156; border-right: 1px solid #dcebf4; border-bottom: 1px solid #dcebf4; font-size: 13px; font-weight: 700; }
.about-map-grid a:hover { color: #0d7fc0; background: #f3f9fd; }
.about-map-grid span { margin-top: 4px; color: #8aa0b4; font-size: 10px; font-weight: 400; }

@media (max-width: 1000px) {
  .about-content { padding-right: 30px; padding-left: 30px; }
  .about-intro-card, .about-review-card, .about-subpage-card { padding-right: 27px; padding-left: 27px; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .about-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .about-main { padding-top: 15px; }
  .about-portal-head { min-height: 65px; padding-right: 18px; padding-left: 18px; }
  .about-portal-head > div { display: block; }
  .about-portal-head strong { display: block; margin-top: 4px; font-size: 15px; }
  .about-home-button { min-height: 36px; padding: 0 15px; font-size: 11px; }
  .about-shell { display: block; margin-top: 15px; border-radius: 20px; }
  .about-sidebar { padding: 25px 17px 20px; }
  .about-sidebar-title { margin-bottom: 16px; }
  .about-side-nav { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5px; }
  .about-side-nav button { min-height: 62px; display: block; padding: 7px 3px; text-align: center; font-size: 10px; }
  .about-side-nav button span { width: 27px; height: 27px; margin: 0 auto 4px; font-size: 11px; }
  .about-sidebar-contact { display: none; }
  .about-content { padding: 31px 20px 40px; }
  .about-content-heading h1 { font-size: clamp(26px, 7vw, 38px); }
  .about-content-heading > p:last-child { font-size: 11px; line-height: 1.8; }
  .about-main-tabs { gap: 7px; margin-top: 22px; }
  .about-main-tabs button, .about-main-tabs a { min-height: 38px; padding: 0 11px; font-size: 10px; }
  .about-intro-card, .about-review-card, .about-subpage-card { padding: 22px 17px; border-radius: 15px; }
  .about-intro-card p { font-size: 13px; line-height: 2; }
  .about-fact-grid, .about-review-steps { grid-template-columns: 1fr; }
  .about-fact-grid article { min-height: 0; }
  .about-scope-block { grid-template-columns: 1fr; gap: 18px; padding: 20px 17px; }
  .about-form-grid { grid-template-columns: 1fr; }
  .about-form-grid .full { grid-column: auto; }
  .about-contact-form { padding: 21px 17px; }
  .about-form-actions { display: block; }
  .about-form-actions > span { display: block; margin-top: 11px; }
  .about-review-actions { display: grid; gap: 13px; }
  .about-subpage-card > article { grid-template-columns: 1fr; gap: 8px; }
  .about-map-grid { grid-template-columns: 1fr; }
}

/* Product-to-merchant online consultation. */
.consultation-overlay {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 28, 37, .52);
  backdrop-filter: blur(5px);
}

.consultation-overlay[hidden] { display: none; }
.consultation-dialog { width: min(100%, 510px); position: relative; padding: 30px 31px 24px; border: 1px solid #d6ebe5; border-radius: 9px; background: #fff; box-shadow: 0 28px 75px rgba(0,0,0,.22); }
.consultation-close { width: 32px; height: 32px; position: absolute; top: 16px; right: 17px; color: #7f9694; border: 0; border-radius: 50%; background: #f2f8f5; font-size: 23px; line-height: 1; }
.consultation-close:hover { color: #fff; background: var(--teal); }
.consultation-dialog h2 { margin: 0; color: var(--ink); font-size: 26px; letter-spacing: -.06em; }
.consultation-store-line, .consultation-product-line { margin: 11px 0 0; color: #718889; font-size: 11px; }
.consultation-product-line { margin-top: 4px; }
.consultation-store-line strong { color: var(--teal); }
.consultation-product-line span { color: var(--ink); font-weight: 700; }
.consultation-status { display: inline-flex; align-items: center; gap: 8px; margin: 12px 0 0; padding: 8px 10px; border: 1px solid #dcebe5; border-radius: 4px; font-size: 10px; line-height: 1.4; }
.consultation-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(20, 123, 102, .12); }
.consultation-status.is-online { color: #147b66; border-color: #b9e8d5; background: #edfbf4; }
.consultation-status.is-offline { color: #956b2a; border-color: #f0d89b; background: #fff8e9; }
.consultation-status.is-offline::before { box-shadow: 0 0 0 3px rgba(149, 107, 42, .12); }
.consultation-dialog form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 23px; }
.consultation-dialog label { display: flex; flex-direction: column; gap: 6px; color: #597371; font-size: 11px; }
.consultation-dialog label.full { grid-column: 1 / -1; }
  .consultation-dialog input, .consultation-dialog textarea { width: 100%; min-height: 41px; padding: 9px 11px; color: var(--ink); outline: 0; border: 1px solid #d9e7e2; border-radius: 3px; background: #fbfdfb; font-size: 12px; }
.consultation-dialog textarea { min-height: 88px; resize: vertical; }
.consultation-dialog input:focus, .consultation-dialog textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px #e5f5ee; }
.consultation-submit { min-height: 43px; display: flex; align-items: center; justify-content: space-between; grid-column: 1 / -1; padding: 0 15px; color: #fff; border: 1px solid var(--teal); border-radius: 3px; background: var(--teal); font-size: 12px; font-weight: 700; }
.consultation-submit:hover { border-color: var(--ink); background: var(--ink); }
.consultation-note { margin: 13px 0 0; color: #97aaa5; font: 10px var(--mono); line-height: 1.7; }

.publish-third-party-fields {
  padding: 16px;
  border: 1px solid #c6e3d8;
  border-radius: 5px;
  background: #f0fbf6;
}

.publish-third-party-fields[hidden] { display: none; }
.publish-third-party-heading { display: flex; flex-wrap: wrap; align-items: baseline; gap: 11px; }
.publish-third-party-heading strong { color: var(--teal); font-size: 13px; }
.publish-third-party-heading span { color: #7a9790; font-size: 10px; }
.publish-third-party-grid { margin-top: 15px; }

.information-detail-main { min-height: 760px; padding: 47px 0 92px; background: linear-gradient(145deg, #eef8f5 0%, #f8fbfa 48%, #eef5f1 100%); }
.information-detail-back { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font: 11px var(--mono); }
.information-detail-back:hover { color: var(--ink); }
.information-detail-card { margin-top: 22px; padding: 39px 48px; border: 1px solid #d8e9e1; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(14,67,60,.06); }
.information-detail-label { display: flex; justify-content: space-between; gap: 14px; color: var(--teal); font: 10px var(--mono); }
.information-detail-label span:last-child { color: #7d9a8f; }
.information-detail-card h1 { max-width: 860px; margin: 18px 0 0; color: var(--ink); font-size: clamp(28px, 4vw, 46px); line-height: 1.22; }
.information-detail-summary { max-width: 800px; margin: 18px 0 0; color: #6d8380; font-size: 15px; line-height: 1.9; }
.information-detail-meta { display: flex; flex-wrap: wrap; gap: 11px 28px; margin-top: 23px; padding-top: 16px; border-top: 1px solid #e1eee8; color: #8aa09b; font: 10px var(--mono); }
.information-detail-body { max-width: 880px; margin-top: 31px; padding-top: 26px; border-top: 1px solid #e1eee8; }
.information-detail-body p { margin: 0 0 18px; color: #435f5d; font-size: 14px; line-height: 2.05; white-space: pre-wrap; }
.information-detail-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.information-detail-tags span { padding: 7px 10px; color: #72928a; border: 1px solid #d7e8df; border-radius: 999px; background: #f7fcf9; font: 10px var(--mono); }
.information-publisher-card { display: flex; align-items: center; gap: 16px; margin-top: 34px; padding: 18px 20px; border: 1px solid #d8e9e1; border-radius: 11px; background: #f5fbf8; }
.information-publisher-avatar { width: 45px; height: 45px; display: grid; flex: 0 0 auto; place-items: center; color: #fff; border-radius: 12px; background: var(--teal); font-size: 20px; font-weight: 700; }
.information-publisher-card h2 { margin: 5px 0 6px; color: var(--ink); font-size: 17px; }
.information-publisher-card p:last-child { margin: 0; color: #718984; font-size: 11px; line-height: 1.8; }
.information-publisher-card a { color: var(--teal); }
.information-detail-action-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding: 16px 18px; border: 1px solid #cbe8dd; border-radius: 11px; background: #f3fbf7; }
.information-detail-action-row > div { display: grid; gap: 5px; }
.information-detail-action-row strong { color: var(--ink); font-size: 13px; }
.information-detail-action-row span { color: #718984; font-size: 11px; }
.information-related-product { display: grid; grid-template-columns: 108px minmax(0, 1fr); align-items: center; gap: 18px; margin-top: 28px; padding: 17px; border: 1px solid #d8e9e1; border-radius: 11px; background: #fbfefd; }
.information-related-product-image { height: 108px; overflow: hidden; border-radius: 8px; background: #eff8f4; }
.information-related-product-image img { width: 100%; height: 100%; object-fit: cover; }
.information-related-product h2, .information-research-panel h2 { margin: 5px 0 8px; color: var(--ink); font-size: 18px; }
.information-related-product p:not(.about-mini-label) { margin: 0 0 13px; color: #718984; font-size: 11px; line-height: 1.75; }
.information-research-panel { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--teal); background: #f5fbf8; }
.information-research-panel ul { display: grid; gap: 9px; margin: 13px 0 0; padding: 0; list-style: none; }
.information-research-panel li { color: #536e69; font-size: 12px; }
.information-research-panel li::before { display: inline-block; width: 18px; color: var(--teal); content: '·'; font-size: 21px; vertical-align: -2px; }
.information-detail-loading, .information-detail-empty { margin-top: 22px; padding: 70px 30px; border: 1px solid #d8e9e1; border-radius: 18px; background: #fff; color: #708783; text-align: center; }
.information-detail-empty h1 { margin: 0; color: var(--ink); font-size: 28px; }
.information-detail-empty p { margin: 14px 0 25px; }

.information-action-overlay { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; background: rgba(7, 31, 35, .46); transition: opacity .2s, visibility .2s; }
.information-action-overlay.open { visibility: visible; opacity: 1; }
.information-action-modal { position: relative; width: min(100%, 520px); max-height: min(760px, calc(100vh - 40px)); overflow: auto; padding: 30px; border: 1px solid #d8e9e1; border-radius: 16px; background: #fff; box-shadow: 0 25px 70px rgba(6, 45, 48, .2); }
.information-action-close { position: absolute; top: 13px; right: 16px; width: 30px; height: 30px; color: #718984; border: 0; border-radius: 50%; background: #f0f7f3; font-size: 22px; line-height: 1; }
.information-action-heading h2 { margin: 6px 0 5px; color: var(--ink); font-size: 24px; }
.information-action-heading > p:last-child { margin: 0; color: #718984; font-size: 12px; }
.information-action-note { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; padding: 11px 13px; border-radius: 7px; background: #f4fbf7; color: #7d9890; font-size: 10px; }
.information-action-note strong { color: var(--teal); font: 11px var(--mono); }
.information-action-form { display: grid; gap: 13px; margin-top: 18px; }
.information-action-form label { display: grid; gap: 6px; color: #54716d; font-size: 11px; }
.information-action-form input, .information-action-form textarea { width: 100%; padding: 11px 12px; color: var(--ink); border: 1px solid #d8e7e0; border-radius: 5px; outline: 0; background: #fcfefd; font-size: 12px; }
.information-action-form textarea { resize: vertical; }
.information-action-form input:focus, .information-action-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px #e6f5ef; }
.information-action-error { min-height: 17px; margin: 0; color: #c95e51; font-size: 11px; }
.information-action-footer { display: flex; align-items: center; justify-content: space-between; gap: 13px; }
.information-action-footer > span { color: #94a7a1; font-size: 10px; line-height: 1.6; }
.information-action-success { padding: 35px 10px 10px; text-align: center; }
.information-action-success > span { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 13px; color: #fff; border-radius: 50%; background: var(--teal); font-size: 25px; }
.information-action-success h3 { margin: 0; color: var(--ink); font-size: 20px; }
.information-action-success p { margin: 10px 0 22px; color: #718984; font-size: 12px; line-height: 1.8; }
.checkout-form-grid > label { position: relative; }
.checkout-form-grid > label.checkout-field-invalid > input,
.checkout-form-grid > label.checkout-field-invalid > select,
.checkout-form-grid > label.checkout-field-invalid > textarea { border-color: #d66e61; background: #fff9f7; box-shadow: 0 0 0 3px rgba(214, 110, 97, .09); }
.checkout-field-error { display: block; margin-top: 5px; color: #bf5d51; font-size: 10px; line-height: 1.5; }
.publish-context-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .65fr); align-items: end; gap: 13px; padding: 13px 14px; border: 1px solid #dbece4; border-radius: 8px; background: #f7fcf9; }
.publish-context-fields[hidden] { display: none; }
.publish-context-fields p { margin: 0; color: #7b9690; font-size: 10px; line-height: 1.7; }
.publish-context-fields .publish-field.full { grid-column: 1 / -1; }

.license-extra-fields { margin-top: 22px; padding-top: 21px; border-top: 1px solid #d9e8e0; }
.license-extra-fields[hidden] { display: none; }
.license-extra-fields h2 { margin: 0 0 13px; color: var(--ink); font-size: 17px; }
.license-extra-fields dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid #dce9e4; border-left: 1px solid #dce9e4; }
.license-extra-fields dl > div { display: grid; grid-template-columns: minmax(100px, .5fr) 1fr; min-height: 43px; border-right: 1px solid #dce9e4; border-bottom: 1px solid #dce9e4; }
.license-extra-fields dl > div:last-child { grid-column: 1 / -1; }
.license-extra-fields dt, .license-extra-fields dd { display: flex; align-items: center; margin: 0; padding: 9px 11px; font-size: 11px; line-height: 1.7; }
.license-extra-fields dt { color: #5d7c78; background: #f1f8f5; }
.license-extra-fields dd { color: #304c4a; }

@media (max-width: 680px) {
  .license-extra-fields dl { grid-template-columns: 1fr; }
  .license-extra-fields dl > div, .license-extra-fields dl > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .information-detail-main { padding-top: 30px; }
  .information-detail-card { padding: 25px 18px; border-radius: 13px; }
  .information-detail-label { align-items: flex-start; flex-direction: column; }
  .information-detail-card h1 { font-size: 29px; }
  .information-detail-summary { font-size: 13px; }
  .information-detail-body p { font-size: 13px; }
  .information-detail-action-row { align-items: flex-start; flex-direction: column; }
  .information-related-product { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; padding: 12px; }
  .information-related-product-image { height: 82px; }
  .information-related-product h2 { font-size: 15px; }
  .information-action-modal { padding: 24px 18px; }
  .information-action-footer { align-items: stretch; flex-direction: column; }
  .publish-context-fields { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .consultation-overlay { padding: 13px; }
  .consultation-dialog { padding: 25px 19px 19px; }
  .consultation-dialog form { grid-template-columns: 1fr; }
  .consultation-dialog label.full, .consultation-submit { grid-column: auto; }
}

@media (max-width: 440px) {
  .about-portal-kicker { font-size: 9px; }
  .about-portal-head strong { font-size: 13px; }
  .about-home-button { padding: 0 12px; }
  .about-side-nav button { font-size: 9px; }
  .about-main-tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
  .about-main-tabs button, .about-main-tabs a { justify-content: center; padding: 0 5px; text-align: center; }
}

/* Shopping cart: table/list, selection and merchant-aware checkout summary. */
.cart-main { min-height: 760px; padding: 34px 0 86px; background: var(--paper-warm); }
.cart-shell { margin-top: 18px; padding: 29px; border: 1px solid #dcebe5; border-radius: 7px; background: #fff; box-shadow: 0 16px 38px rgba(7,52,53,.06); }
.cart-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 0 3px 27px; border-bottom: 1px solid #e3efeb; }
.cart-heading h1 { margin: 7px 0 7px; color: var(--ink); font-size: clamp(29px, 4vw, 42px); letter-spacing: -.08em; }
.cart-heading p:last-child { margin: 0; color: #78918e; font-size: 12px; }
.cart-heading-count { padding-bottom: 5px; color: #78918e; font-size: 12px; white-space: nowrap; }
.cart-heading-count strong { color: var(--teal); font-size: 22px; }
.cart-table { overflow-x: auto; margin-top: 22px; border: 1px solid #e5efec; border-radius: 5px; }
.cart-table-head, .cart-row { min-width: 860px; display: grid; grid-template-columns: 54px minmax(330px, 1fr) 113px 136px 125px 84px; align-items: center; }
.cart-table-head { min-height: 49px; padding: 0 20px; color: #728b88; background: #f8fbfa; font-size: 11px; }
.cart-table-head > span:not(.cart-head-product) { text-align: center; }
.cart-head-product { text-align: left; }
.cart-select-box { display: inline-flex; align-items: center; gap: 10px; color: #526f6c; white-space: nowrap; cursor: pointer; }
.cart-select-box input, .cart-row-select input { width: 18px; height: 18px; margin: 0; accent-color: var(--teal); cursor: pointer; }
.cart-row { min-height: 132px; padding: 18px 20px; border-top: 1px solid #edf3f1; background: #fff; transition: background .2s; }
.cart-row:hover, .cart-row.is-selected { background: #fcfffe; }
.cart-row-select { align-self: center; }
.cart-item-main { min-width: 0; display: flex; align-items: center; gap: 16px; }
.cart-item-visual { width: 82px; height: 82px; flex: 0 0 82px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(5,87,83,.12); border-radius: 5px; color: rgba(255,255,255,.88); background: linear-gradient(145deg, #0faaa2, #07646a); }
.cart-item-visual span { font: 8px var(--mono); letter-spacing: .1em; opacity: .75; }
.cart-item-visual b { margin-top: 5px; color: #fff; font-size: 21px; letter-spacing: -.08em; }
.cart-item-visual.visual-medical { background: linear-gradient(145deg, #2181ba, #0c3e71); }
.cart-item-visual.visual-care { background: linear-gradient(145deg, #3b9d7d, #135e62); }
.cart-item-visual.visual-supplement { background: linear-gradient(145deg, #c78431, #704126); }
.cart-item-info { min-width: 0; }
.cart-item-info p { margin: 0 0 7px; color: var(--teal); font: 10px var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-info h2 { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.55; }
.cart-item-info small { display: block; margin-top: 6px; color: #8b9e9a; font-size: 10px; }
.cart-unit-price, .cart-item-total { text-align: center; font-size: 12px; }
.cart-unit-price { color: #718b87; }
.cart-unit-price del { display: block; margin-bottom: 4px; color: #b1bfbc; font-size: 10px; }
.cart-unit-price strong { color: var(--ink); font-weight: 700; }
.cart-item-total { color: var(--teal); }
.cart-quantity { width: 106px; min-height: 34px; display: grid; grid-template-columns: 32px 1fr 32px; align-items: center; margin: 0 auto; border: 1px solid #d9e7e3; border-radius: 3px; overflow: hidden; background: #fff; }
.cart-quantity button { width: 32px; height: 32px; color: #54736e; border: 0; background: #f8fbfa; font-size: 16px; }
.cart-quantity button:hover { color: #fff; background: var(--teal); }
.cart-quantity b { color: var(--ink); border-right: 1px solid #e0ebe8; border-left: 1px solid #e0ebe8; text-align: center; font-size: 12px; line-height: 32px; }
.cart-item-actions { display: grid; justify-items: center; gap: 9px; }
.cart-item-actions button, .cart-list-footer button, .cart-action-bar button { padding: 0; color: #6b8581; border: 0; background: transparent; font-size: 11px; cursor: pointer; }
.cart-item-actions button:hover, .cart-list-footer button:hover, .cart-action-bar button:hover { color: var(--teal); }
.cart-item-actions .cart-remove { color: #a86b68; }
.cart-action-bar { min-height: 64px; display: flex; align-items: center; gap: 20px; padding: 0 21px; border: 1px solid #dcebe5; border-top: 0; background: #fbfdfc; }
.cart-action-bar > span:not(.cart-action-spacer) { color: #66817c; font-size: 11px; white-space: nowrap; }
.cart-action-bar > span strong { color: var(--teal); }
.cart-action-spacer { flex: 1; }
.cart-action-total { font-size: 17px; }
.cart-action-bar .cart-submit-compact { min-width: 100px; min-height: 39px; padding: 0 22px; color: #fff; border: 1px solid var(--teal); border-radius: 3px; background: var(--teal); font-weight: 700; }
.cart-action-bar .cart-submit-compact:hover { color: #fff; background: var(--ink); }
.cart-action-bar button:disabled, .cart-list-footer button:disabled, .cart-submit:disabled { opacity: .42; cursor: not-allowed; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 18px; margin-top: 21px; }
.cart-service-note, .cart-summary { padding: 23px 24px; border: 1px solid #dfede9; border-radius: 5px; background: #f8fcfa; }
.cart-service-note h2, .cart-summary h2 { margin: 8px 0 11px; color: var(--ink); font-size: 19px; letter-spacing: -.05em; }
.cart-service-note > p:not(.about-mini-label) { max-width: 640px; margin: 0; color: #718985; font-size: 11px; line-height: 1.85; }
.cart-service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.cart-service-tags span { padding: 7px 10px; color: #277e73; border: 1px solid #cfe7df; border-radius: 20px; background: #fff; font-size: 10px; }
.cart-summary { background: #fff; }
.cart-summary-row, .cart-summary-total { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #78908d; font-size: 11px; }
.cart-summary-row { padding: 8px 0; }
.cart-summary-row strong { color: var(--ink); }
.cart-summary-divider { height: 1px; margin: 14px 0 13px; background: #e3efeb; }
.cart-summary-total { color: var(--ink); font-weight: 700; }
.cart-summary-total strong { color: var(--teal); font-size: 23px; }
.cart-summary-note { margin: 15px 0 0; color: #9aaeaa; font: 10px/1.7 var(--mono); }
.cart-list-footer { display: flex; justify-content: space-between; gap: 18px; padding: 17px 4px 0; color: #9aaeaa; font-size: 10px; }
.cart-empty { padding: 75px 20px; text-align: center; }
.cart-empty > span { color: #76bdb2; font-size: 31px; }
.cart-empty h2 { margin: 13px 0 7px; color: var(--ink); font-size: 20px; }
.cart-empty p { margin: 0 auto 19px; color: #8ba19e; font-size: 11px; }
.cart-continue { color: var(--teal); font-size: 11px; font-weight: 700; }
.cart-continue span { margin-left: 8px; }

@media (max-width: 880px) {
  .cart-shell { padding: 22px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { order: -1; }
}

@media (max-width: 620px) {
  .cart-main { padding-top: 22px; }
  .cart-shell { margin-top: 12px; padding: 16px; border-radius: 5px; }
  .cart-heading { display: block; padding-bottom: 20px; }
  .cart-heading h1 { font-size: 31px; }
  .cart-heading-count { display: block; margin-top: 14px; }
  .cart-table { overflow: visible; border: 0; }
  .cart-table-head { display: none; }
  .cart-row { min-width: 0; grid-template-columns: 25px minmax(0, 1fr) auto; gap: 10px; align-items: start; padding: 17px 0; }
  .cart-row-select { padding-top: 4px; }
  .cart-item-main { align-items: flex-start; gap: 10px; }
  .cart-item-visual { width: 60px; height: 60px; flex-basis: 60px; }
  .cart-item-visual b { font-size: 17px; }
  .cart-item-info h2 { font-size: 12px; }
  .cart-unit-price { grid-column: 2; margin-top: 10px; text-align: left; }
  .cart-unit-price del { display: inline; margin-right: 6px; }
  .cart-quantity { grid-column: 2; margin: 0; }
  .cart-item-total { grid-column: 3; grid-row: 2; align-self: center; }
  .cart-item-actions { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .cart-action-bar { flex-wrap: wrap; gap: 13px; padding: 15px 0; border-right: 0; border-left: 0; }
  .cart-action-spacer { display: none; }
  .cart-action-bar > span:nth-last-of-type(2) { margin-left: auto; }
  .cart-action-bar .cart-submit-compact { min-width: 74px; padding: 0 13px; }
  .cart-list-footer { display: block; line-height: 1.8; }
  .cart-list-footer span { display: block; margin-top: 6px; }
}

/* Detailed company footer inspired by the supplied corporate information layout. */
.site-footer-detailed { margin-top: 0; color: #a8b7d0; background: #090f1b; }
.detailed-footer-main { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr) minmax(180px, .78fr); gap: 68px; padding-top: 64px; padding-bottom: 56px; }
.detailed-footer-brand-link { display: inline-flex; align-items: center; max-width: 100%; }
.detailed-footer-brand-link .brand-mark { flex: 0 0 auto; background: linear-gradient(145deg, #84d59d, #1c9dd0); box-shadow: none; }
.detailed-footer-brand-link .brand-copy { min-width: 0; }
.detailed-footer-brand-link .brand-copy strong { color: #f7fbff; font-size: 21px; letter-spacing: -.055em; white-space: normal; }
.detailed-footer-brand-link .brand-copy small { color: #35c4d3; }
.detailed-footer-brand > p { max-width: 490px; margin: 25px 0 0; color: #a8b7d0; font-size: 14px; line-height: 1.9; }
.detailed-footer-main h3 { margin: 3px 0 23px; color: #f7fbff; font-size: 17px; letter-spacing: -.035em; }
.detailed-footer-contact { min-width: 0; }
.detailed-footer-contact a { display: flex; align-items: flex-start; gap: 11px; margin: 0 0 17px; color: #a8b7d0; font-size: 14px; line-height: 1.6; }
.detailed-footer-contact a:hover, .detailed-footer-links a:hover { color: #27d4bd; }
.detailed-footer-icon { width: 22px; flex: 0 0 22px; color: #00d3b1; font-size: 22px; line-height: 1.1; text-align: center; }
.detailed-footer-contact-note { margin: 5px 0 0 33px; color: #71839d; font-size: 12px; line-height: 1.6; }
.detailed-footer-links { min-width: 0; }
.detailed-footer-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 22px; }
.detailed-footer-links a { color: #a8b7d0; font-size: 14px; transition: color .2s; }
.detailed-footer-disclaimer { padding: 20px 21px; border-radius: 8px; color: #a9b9d0; background: #050a14; font-size: 12px; line-height: 1.9; }
.detailed-footer-disclaimer strong { margin-right: 7px; color: #00d3b1; }
.detailed-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 39px; padding-top: 22px; padding-bottom: 29px; color: #70839e; border-top: 1px solid #1e2a40; font-size: 12px; }
.detailed-footer-bottom a { color: #a8b7d0; text-decoration: underline; text-underline-offset: 4px; }
.detailed-footer-bottom i { margin: 0 8px; color: #40516a; font-style: normal; }
.detailed-footer-bottom a:hover { color: #00d3b1; }

@media (max-width: 880px) {
  .detailed-footer-main { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .detailed-footer-brand { grid-column: 1 / -1; }
  .detailed-footer-brand > p { max-width: 650px; }
}

@media (max-width: 580px) {
  .detailed-footer-main { grid-template-columns: 1fr; gap: 32px; padding-top: 47px; padding-bottom: 39px; }
  .detailed-footer-brand-link .brand-copy strong { font-size: 17px; }
  .detailed-footer-brand > p { margin-top: 18px; font-size: 12px; }
  .detailed-footer-main h3 { margin-bottom: 17px; font-size: 16px; }
  .detailed-footer-contact a, .detailed-footer-links a { font-size: 12px; }
  .detailed-footer-contact-note { margin-left: 33px; font-size: 11px; }
  .detailed-footer-disclaimer { padding: 16px; font-size: 11px; }
  .detailed-footer-link-grid { gap: 11px 16px; }
  .detailed-footer-bottom { display: block; margin-top: 27px; padding-top: 18px; padding-bottom: 23px; font-size: 10px; line-height: 2; }
  .detailed-footer-bottom > span + span { display: block; margin-top: 4px; }
  .detailed-footer-bottom a { display: inline; margin-top: 4px; }
}

/* Merchant qualification and deposit status markers. */
.merchant-credentials, .merchant-summary-credentials, .store-credentials { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.merchant-credentials { margin: 0 0 13px; }
.merchant-credentials a, .merchant-credentials span, .merchant-summary-credentials a, .merchant-summary-credentials span, .store-credentials a, .store-credentials span { display: inline-flex; align-items: center; gap: 5px; }
.merchant-credentials a { color: #e4f6d0; font: 10px var(--mono); }
.merchant-credentials a:hover { color: #fff; }
.merchant-deposit-badge { color: #d7e4d6; font: 10px var(--mono); }
.credential-icon { width: 19px; height: 19px; display: inline-grid; place-items: center; border-radius: 5px; font-size: 11px; line-height: 1; }
.credential-license { color: #fff; border: 1px solid currentColor; background: rgba(255,255,255,.11); }
.credential-deposit { color: #0b6d5c; border: 1px solid #8ed5bf; border-radius: 50%; background: #dff8ed; font-weight: 800; }
.merchant-summary-credentials { grid-column: 1 / -1; margin-top: 12px; padding-top: 12px; border-top: 1px solid #e3ece8; }
.merchant-store-summary { flex-wrap: wrap; }
.merchant-summary-credentials { width: 100%; order: 3; }
.merchant-summary-credentials a { margin-left: 0 !important; }
.merchant-summary-credentials a, .merchant-summary-credentials .merchant-deposit-badge { color: #317970; font-size: 10px; }
.merchant-summary-credentials .credential-license { color: #287c73; border-color: #a5d4c8; background: #effaf6; }
.merchant-summary-switch { margin-left: auto !important; }
.merchant-summary-contact { width: 100%; order: 4; display: flex; flex-wrap: wrap; align-items: center; gap: 9px 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #e3ece8; }
.merchant-summary-service { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 31px; padding: 6px 11px; color: #14796f; border: 1px solid #a6d9cd; border-radius: 4px; background: #f4fcf9; font: 10px var(--mono); cursor: pointer; }
.merchant-summary-service:hover { color: #fff; border-color: var(--teal); background: var(--teal); }
.merchant-summary-contact a { margin-left: 0 !important; color: #317970; font: 10px var(--mono); overflow-wrap: anywhere; }
.merchant-summary-contact a:hover { color: var(--ink); }
.store-credentials { margin-top: 9px; padding-top: 8px; border-top: 1px solid #e6eeea; }
.store-credentials .merchant-license-link, .store-credentials .merchant-deposit-badge { color: #4e7774; font-size: 9px; }
.store-credentials .credential-icon { width: 16px; height: 16px; font-size: 9px; }
.store-credentials .credential-license { color: #468a81; border-color: #b9d7cf; background: #f5fbf8; }
.store-credentials .credential-deposit { color: #16826c; border-color: #a6dac9; background: #eaf9f2; }
.merchant-card-copy h2 { max-width: 430px; margin: 0; color: #fff; font-size: clamp(19px, 2vw, 28px); line-height: 1.25; letter-spacing: -.065em; }

@media (max-width: 780px) {
  .merchant-credentials { gap: 6px; margin-bottom: 10px; }
  .merchant-credentials a, .merchant-credentials .merchant-deposit-badge { font-size: 9px; }
  .merchant-summary-credentials { margin-top: 10px; }
  .merchant-summary-contact { align-items: flex-start; gap: 8px 12px; }
  .merchant-summary-contact a { font-size: 9px; }
}

@media (max-width: 440px) {
  .merchant-summary-contact { align-items: stretch; flex-direction: column; }
  .merchant-summary-service { justify-content: center; }
}

/* Merchant business-license detail page. */
.license-main { min-height: 770px; padding: 38px 0 90px; background: var(--paper-warm); }
.license-shell { margin-top: 18px; padding: 30px; border: 1px solid #dcebe5; border-radius: 7px; background: #fff; box-shadow: 0 18px 45px rgba(13,47,51,.07); }
.license-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; padding: 0 3px 25px; border-bottom: 1px solid #e2ece7; }
.license-heading h1 { margin: 8px 0 7px; color: var(--ink); font-size: clamp(30px, 4vw, 45px); letter-spacing: -.08em; }
.license-heading p:last-child { margin: 0; color: #78918e; font-size: 12px; }
.license-heading-mark { color: #70b5a8; font: 11px/1.5 var(--mono); letter-spacing: .16em; text-align: right; }
.license-heading-mark b { color: var(--teal); font: 700 14px var(--sans); letter-spacing: -.04em; }
.license-status-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.license-status { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #d8ebe3; border-radius: 4px; color: #4d7870; background: #f5fbf8; font-size: 11px; }
.license-status i { width: 17px; height: 17px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--teal); font-size: 10px; font-style: normal; }
.license-status.deposit i { background: #52a87c; }
.license-status.online i { color: var(--teal); background: #dff4eb; font-size: 8px; }
.license-layout { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 22px; margin-top: 22px; }
.license-paper { position: relative; min-height: 455px; overflow: hidden; padding: 29px 32px 22px; border: 1px solid #d6e4db; border-radius: 4px; background: linear-gradient(145deg, #fffefa, #f5fbf7); }
.license-paper::before, .license-paper::after { content: ''; position: absolute; border: 1px solid rgba(21,151,130,.14); border-radius: 50%; pointer-events: none; }
.license-paper::before { width: 300px; height: 300px; right: -110px; top: -118px; }
.license-paper::after { width: 420px; height: 420px; right: -168px; top: -180px; }
.license-paper-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 17px; border-bottom: 2px solid #d8a36d; color: #7c8a82; font-size: 10px; }
.license-paper-top strong { color: #a96334; font-size: 27px; letter-spacing: .18em; }
.license-paper-top em { color: #699b87; font: 10px var(--mono); font-style: normal; }
.license-paper-seal { width: 69px; height: 69px; position: absolute; z-index: 1; top: 84px; right: 55px; display: grid; place-items: center; color: #b4754e; border: 3px solid rgba(180,117,78,.55); border-radius: 50%; font: 20px/1.05 serif; transform: rotate(-12deg); }
.license-paper-seal small { font-size: 10px; }
.license-fields { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 35px 0 0; padding-right: 135px; }
.license-fields div { min-height: 65px; padding: 11px 12px; border-bottom: 1px dashed #cbded2; }
.license-fields div:nth-child(odd) { border-right: 1px dashed #cbded2; }
.license-fields dt { color: #778e83; font-size: 10px; }
.license-fields dd { margin: 7px 0 0; color: #243d36; font-size: 13px; font-weight: 700; line-height: 1.45; }
.license-paper-note { position: relative; z-index: 1; margin-top: 22px; padding: 12px 14px; color: #72897f; border: 1px dashed #a9c8b8; background: rgba(238,249,241,.82); font-size: 10px; line-height: 1.7; }
.license-paper-note strong { color: #be7545; }
.license-paper-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 15px; margin-top: 19px; color: #93a39b; font: 10px var(--mono); }
.license-paper-footer b { color: #4c7c6d; }
.license-aside { padding: 25px 21px; border: 1px solid #dcebe5; border-radius: 5px; background: #f7fcf9; }
.license-aside-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; border-radius: 8px; background: var(--teal); font-size: 25px; }
.license-aside h2 { overflow: hidden; margin: 8px 0 9px; color: var(--ink); font-size: 19px; letter-spacing: -.06em; text-overflow: ellipsis; }
.license-aside > p:not(.about-mini-label) { margin: 0; color: #758c87; font-size: 11px; line-height: 1.8; }
.license-aside-list { margin-top: 22px; border-top: 1px solid #dcebe5; }
.license-aside-list div { display: flex; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid #dcebe5; color: #7f9790; font-size: 10px; }
.license-aside-list strong { color: var(--teal); font-size: 11px; }
.license-aside .button { width: 100%; justify-content: center; margin-top: 24px; }
.license-paper-image { min-height: 0; padding: 21px; }
.license-paper-image::before, .license-paper-image::after { display: none; }
.license-image-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; color: #76908a; font-size: 11px; }
.license-image-heading strong { color: var(--ink); font-size: 16px; }
.license-image-main { width: 100%; height: auto; display: block; border: 1px solid #d8e4dc; background: #fff; }
.license-certificate-view { margin: 23px 0 0; padding: 22px; border: 1px solid #dcebe5; border-radius: 5px; background: #f5faf7; }
.license-certificate-view figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 17px; color: #76908a; font-size: 11px; }
.license-certificate-view figcaption strong { color: var(--ink); font-size: 16px; }
.license-certificate-view img { width: 100%; height: auto; display: block; border: 1px solid #d8e4dc; background: #fff; }

@media (max-width: 780px) {
  .license-main { padding: 24px 0 60px; }
  .license-shell { margin-top: 12px; padding: 18px; }
  .license-heading { align-items: flex-start; flex-direction: column; padding-bottom: 20px; }
  .license-heading-mark { text-align: left; }
  .license-status-row { margin-top: 17px; }
  .license-layout { grid-template-columns: 1fr; }
  .license-paper { min-height: 0; padding: 21px 16px 17px; }
  .license-paper-top { align-items: flex-start; flex-direction: column; gap: 7px; }
  .license-paper-top strong { font-size: 22px; }
  .license-paper-seal { top: 104px; right: 26px; transform: scale(.75) rotate(-12deg); }
  .license-fields { grid-template-columns: 1fr; padding-right: 0; margin-top: 25px; }
  .license-fields div:nth-child(odd) { border-right: 0; }
  .license-fields dd { font-size: 12px; }
  .license-aside { padding: 20px 17px; }
  .license-certificate-view { padding: 14px; }
  .license-certificate-view figcaption { align-items: flex-start; flex-direction: column; gap: 5px; margin-bottom: 12px; }
}

/* Product-specific detail treatment for the home pulse oximeter. */
.oximeter-detail-banner { color: #fff; background: radial-gradient(circle at 78% 28%, rgba(60,210,255,.42), transparent 22%), radial-gradient(circle at 54% 88%, rgba(0,202,241,.24), transparent 35%), linear-gradient(145deg, #071b3c 0%, #0a3e76 56%, #087d9a 100%); }
.oximeter-detail-banner::before { width: 410px; height: 410px; right: -105px; top: 74px; border: 1px solid rgba(93,226,255,.55); box-shadow: 0 0 0 25px rgba(43,207,245,.11), 0 0 0 67px rgba(43,207,245,.06), 0 0 0 116px rgba(43,207,245,.035); }
.oximeter-detail-banner::after { width: 560px; height: 2px; right: -55px; bottom: 74px; background: linear-gradient(90deg, transparent, rgba(42,224,255,.65), transparent); transform: rotate(-17deg); }
.oxygen-banner-brand { position: absolute; z-index: 4; top: 23px; right: 29px; display: flex; align-items: baseline; gap: 8px; }
.oxygen-banner-brand strong { color: #fff; font-size: 24px; letter-spacing: .04em; }
.oxygen-banner-brand span { color: rgba(255,255,255,.76); font-size: 10px; }
.oxygen-banner-copy { position: absolute; z-index: 3; top: 74px; left: 28px; }
.oxygen-banner-copy small { display: block; margin-bottom: 10px; color: #74efff; font: 10px var(--mono); letter-spacing: .08em; }
.oxygen-banner-copy strong { display: block; color: #fff; font-size: clamp(27px, 3vw, 42px); line-height: 1.1; letter-spacing: -.08em; text-shadow: 0 5px 18px rgba(0,15,54,.25); }
.oxygen-banner-copy em { color: #31e7ff; font-style: normal; }
.oxygen-banner-pill { position: absolute; z-index: 3; top: 184px; left: 28px; padding: 9px 18px; color: #dffcff; border-radius: 999px; background: linear-gradient(90deg, #08d3e7, #087dcc); font-size: 10px; box-shadow: 0 9px 22px rgba(0,34,88,.25); }
.oxygen-banner-ring { position: absolute; z-index: 1; border: 1px solid rgba(34,226,255,.5); border-radius: 50%; transform: rotate(-17deg); }
.oxygen-ring-one { width: 300px; height: 123px; right: 36px; bottom: 50px; box-shadow: 0 0 0 11px rgba(31,218,251,.08), 0 0 0 30px rgba(31,218,251,.035); }
.oxygen-ring-two { width: 370px; height: 160px; right: 3px; bottom: 29px; border-color: rgba(104,235,255,.25); }
.oxygen-banner-metric { position: absolute; z-index: 3; display: grid; gap: 3px; color: #3ae9ff; font: 10px var(--mono); }
.oxygen-banner-metric b { font-size: 17px; letter-spacing: .02em; }
.oxygen-banner-metric span { color: rgba(220,252,255,.67); font-size: 8px; }
.oxygen-metric-left { left: 30px; bottom: 47px; }
.oxygen-metric-right { right: 30px; bottom: 105px; text-align: right; }
.detail-art.oximeter-detail-banner .detail-oximeter { z-index: 4; top: 151px; right: 131px; transform: rotate(12deg) scale(1.42); box-shadow: 19px 28px 28px rgba(0,24,65,.36), 0 0 30px rgba(96,237,255,.18); }
.detail-oximeter { border-color: #e8fbff; background: linear-gradient(145deg, #f9ffff 0%, #cee5ee 48%, #83a8bf 100%); }
.detail-oximeter::before { border-color: rgba(29,81,110,.28); }
.detail-oximeter .oximeter-screen { display: grid; gap: 2px; padding: 8px 7px; color: #9feeff; background: #102c42; }
.detail-oximeter .oximeter-screen small { display: block; color: #98e9f6; font: 6px var(--mono); }
.detail-oximeter .oximeter-screen b { margin: 0; color: #2bdbff; font-size: 27px; }
.detail-oximeter .oximeter-screen em { display: block; color: #74eaff; font: 20px/1 var(--mono); font-style: normal; }
.detail-quick-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.detail-quick-points span { padding: 7px 10px; color: #477874; border: 1px solid #d6ebe3; border-radius: 999px; background: #f3faf6; font-size: 10px; }
.detail-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.detail-feature-grid article { min-height: 112px; padding: 16px; border: 1px solid #d8e9e3; background: #f5faf7; }
.detail-feature-grid strong { color: var(--teal); font-size: 16px; }
.detail-feature-grid p { margin-top: 11px; color: #718587; font-size: 11px; line-height: 1.75; }
.detail-usage-box { display: flex; align-items: baseline; gap: 13px; margin-top: 14px; padding: 12px 14px; color: #718587; background: #f4f8f5; font-size: 11px; line-height: 1.7; }
.detail-usage-box strong { flex: 0 0 auto; color: var(--ink); font-size: 12px; }
.detail-spec-table { overflow-x: auto; border-top: 1px solid #dfe9e3; border-left: 1px solid #dfe9e3; }
.detail-spec-row { display: grid; grid-template-columns: 16% 34% 16% 34%; min-width: 680px; }
.detail-spec-row > span, .detail-spec-row > strong { min-height: 44px; display: flex; align-items: center; padding: 9px 12px; border-right: 1px solid #dfe9e3; border-bottom: 1px solid #dfe9e3; font-size: 10px; line-height: 1.55; }
.detail-spec-row > span { color: #78908b; background: #f4f8f5; }
.detail-spec-row > strong { color: var(--ink); background: #fff; font-size: 11px; font-weight: 500; }
.detail-spec-row-full { grid-template-columns: 16% 84%; }

@media (max-width: 780px) {
  .oxygen-banner-brand { top: 18px; right: 18px; }
  .oxygen-banner-brand strong { font-size: 19px; }
  .oxygen-banner-copy { top: 61px; left: 18px; }
  .oxygen-banner-copy strong { font-size: 29px; }
  .oxygen-banner-pill { top: 149px; left: 18px; padding: 7px 11px; font-size: 8px; }
  .detail-art.oximeter-detail-banner .detail-oximeter { top: 135px; right: 72px; transform: rotate(12deg) scale(.94); }
  .oxygen-metric-left { left: 18px; bottom: 28px; }
  .oxygen-metric-right { right: 18px; bottom: 82px; }
  .oxygen-ring-one { right: 18px; bottom: 31px; }
  .oxygen-ring-two { right: -16px; bottom: 14px; }
  .detail-feature-grid { grid-template-columns: 1fr; }
  .detail-usage-box { align-items: flex-start; flex-direction: column; gap: 4px; }
}

/* Product-specific detail treatment for the home blood pressure monitor. */
.blood-pressure-detail-banner { color: #0a3455; background: radial-gradient(circle at 77% 16%, rgba(255,255,255,.95), transparent 18%), radial-gradient(circle at 58% 87%, rgba(86,207,240,.32), transparent 34%), linear-gradient(145deg, #e7f4fa 0%, #acd7e9 58%, #6bb3d0 100%); }
.blood-pressure-detail-banner::before { width: 395px; height: 395px; right: -92px; top: 42px; border: 1px solid rgba(255,255,255,.9); box-shadow: 0 0 0 25px rgba(255,255,255,.18), 0 0 0 64px rgba(35,154,197,.12), 0 0 0 105px rgba(35,154,197,.07); }
.blood-pressure-detail-banner::after { width: 520px; height: 1px; right: -32px; bottom: 74px; background: rgba(255,255,255,.85); transform: rotate(-17deg); }
.pressure-banner-brand { position: absolute; z-index: 4; top: 23px; right: 29px; display: flex; align-items: baseline; gap: 8px; }
.pressure-banner-brand strong { color: #083b66; font-size: 24px; letter-spacing: .04em; }
.pressure-banner-brand span { color: #2d6280; font-size: 10px; }
.pressure-banner-copy { position: absolute; z-index: 3; top: 72px; left: 28px; }
.pressure-banner-copy small { display: block; margin-bottom: 10px; color: #28739e; font: 10px var(--mono); letter-spacing: .08em; }
.pressure-banner-copy strong { display: block; color: #0a385a; font-size: clamp(27px, 3vw, 42px); line-height: 1.1; letter-spacing: -.08em; }
.pressure-banner-copy em { color: #087fb6; font-style: normal; }
.pressure-banner-pill { position: absolute; z-index: 3; top: 181px; left: 28px; padding: 9px 17px; color: #effbff; border-radius: 999px; background: linear-gradient(90deg, #2aa8d5, #0a6eb5); font-size: 10px; box-shadow: 0 9px 22px rgba(28,111,153,.2); }
.pressure-banner-ring { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.82); border-radius: 50%; transform: rotate(-17deg); }
.pressure-ring-one { width: 318px; height: 136px; right: 32px; bottom: 53px; box-shadow: 0 0 0 12px rgba(255,255,255,.12), 0 0 0 32px rgba(16,139,190,.08); }
.pressure-ring-two { width: 392px; height: 173px; right: -3px; bottom: 27px; border-color: rgba(255,255,255,.48); }
.pressure-banner-metric { position: absolute; z-index: 3; display: grid; gap: 3px; color: #0a6a9c; font: 10px var(--mono); }
.pressure-banner-metric b { font-size: 16px; letter-spacing: .02em; }
.pressure-banner-metric span { color: #4f7d95; font-size: 8px; }
.pressure-metric-left { left: 29px; bottom: 47px; }
.pressure-metric-right { right: 27px; bottom: 104px; text-align: right; }
.pressure-banner-memory { position: absolute; z-index: 3; right: 47px; top: 70px; display: grid; place-items: center; width: 64px; height: 64px; color: #fff; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(41,165,205,.5); box-shadow: 0 0 0 7px rgba(255,255,255,.2); }
.pressure-banner-memory b { font-size: 22px; line-height: 1; }
.pressure-banner-memory span { margin-top: 3px; font-size: 8px; }
.pressure-banner-cert { position: absolute; z-index: 3; left: 29px; bottom: 107px; display: grid; gap: 4px; color: #2377a3; font-size: 9px; }
.pressure-banner-cert b { font-size: 13px; letter-spacing: .04em; }
.pressure-banner-cert span { color: #5c8093; font-size: 8px; }
.detail-art.blood-pressure-detail-banner .detail-pressure { z-index: 4; top: 145px; right: 111px; transform: rotate(-7deg) scale(1.38); box-shadow: 18px 27px 28px rgba(34,91,124,.27), 0 0 30px rgba(255,255,255,.5); }
.detail-pressure { border-color: #f8ffff; background: linear-gradient(145deg, #fff 0%, #e8f4f7 54%, #c4d9e1 100%); }
.detail-pressure .pressure-screen { display: grid; gap: 2px; color: #0c5e79; background: #c9e3e8; }
.detail-pressure .pressure-screen small { color: #24718a; font-size: 6px; }
.detail-pressure .pressure-screen b { color: #0d3f58; font-size: 24px; }
.detail-pressure .pressure-screen em { color: #0d3f58; }
.detail-pressure .pressure-screen span { display: block; margin-top: 2px; color: #2d6d80; font: 7px var(--mono); }
.detail-pressure .pressure-button { background: #3d70bb; box-shadow: 0 0 0 3px rgba(61,112,187,.15); }

@media (max-width: 780px) {
  .pressure-banner-brand { top: 18px; right: 18px; }
  .pressure-banner-brand strong { font-size: 19px; }
  .pressure-banner-copy { top: 60px; left: 18px; }
  .pressure-banner-copy strong { font-size: 29px; }
  .pressure-banner-pill { top: 146px; left: 18px; padding: 7px 11px; font-size: 8px; }
  .pressure-banner-memory { top: 45px; right: 24px; width: 52px; height: 52px; }
  .pressure-banner-memory b { font-size: 18px; }
  .pressure-banner-cert { bottom: 83px; left: 18px; }
  .detail-art.blood-pressure-detail-banner .detail-pressure { top: 133px; right: 59px; transform: rotate(-7deg) scale(.94); }
  .pressure-metric-left { left: 18px; bottom: 28px; }
  .pressure-metric-right { right: 18px; bottom: 78px; }
  .pressure-ring-one { right: 13px; bottom: 31px; }
  .pressure-ring-two { right: -19px; bottom: 12px; }
}

/* Product-specific detail treatment for the infrared forehead thermometer. */
.infrared-detail-banner { color: #fff; background: radial-gradient(circle at 82% 18%, rgba(102,235,165,.34), transparent 23%), radial-gradient(circle at 43% 94%, rgba(31,187,129,.28), transparent 35%), linear-gradient(145deg, #062e2b 0%, #075d51 57%, #169a73 100%); }
.infrared-detail-banner::before { width: 410px; height: 410px; right: -104px; top: 50px; border: 1px solid rgba(142,255,207,.54); box-shadow: 0 0 0 23px rgba(72,234,164,.1), 0 0 0 61px rgba(72,234,164,.055), 0 0 0 110px rgba(72,234,164,.035); }
.infrared-detail-banner::after { width: 535px; height: 1px; right: -49px; bottom: 67px; background: rgba(111,246,191,.62); transform: rotate(-17deg); }
.infrared-banner-brand { position: absolute; z-index: 4; top: 23px; right: 29px; display: flex; align-items: baseline; gap: 8px; }
.infrared-banner-brand strong { color: #ecfff3; font-size: 24px; letter-spacing: .04em; }
.infrared-banner-brand span { color: #b6ead0; font-size: 10px; }
.infrared-banner-copy { position: absolute; z-index: 3; top: 72px; left: 28px; }
.infrared-banner-copy small { display: block; margin-bottom: 10px; color: #91f0c3; font: 10px var(--mono); letter-spacing: .08em; }
.infrared-banner-copy strong { display: block; color: #fff; font-size: clamp(27px, 3vw, 42px); line-height: 1.1; letter-spacing: -.08em; text-shadow: 0 5px 18px rgba(0,25,22,.24); }
.infrared-banner-copy em { color: #a9ffd0; font-style: normal; }
.infrared-banner-pill { position: absolute; z-index: 3; top: 181px; left: 28px; padding: 9px 17px; color: #eafff2; border-radius: 999px; background: linear-gradient(90deg, #11b987, #147ca0); font-size: 10px; box-shadow: 0 9px 22px rgba(0,42,31,.25); }
.infrared-banner-ring { position: absolute; z-index: 1; border: 1px solid rgba(117,255,199,.62); border-radius: 50%; transform: rotate(-17deg); }
.infrared-ring-one { width: 300px; height: 126px; right: 35px; bottom: 49px; box-shadow: 0 0 0 12px rgba(107,255,194,.09), 0 0 0 32px rgba(107,255,194,.035); }
.infrared-ring-two { width: 372px; height: 160px; right: 2px; bottom: 25px; border-color: rgba(181,255,220,.28); }
.infrared-banner-metric { position: absolute; z-index: 3; display: grid; gap: 3px; color: #9affca; font: 10px var(--mono); }
.infrared-banner-metric b { font-size: 17px; letter-spacing: .02em; }
.infrared-banner-metric span { color: rgba(221,255,237,.7); font-size: 8px; }
.infrared-metric-left { left: 29px; bottom: 47px; }
.infrared-metric-right { right: 28px; bottom: 104px; text-align: right; }
.infrared-banner-memory { position: absolute; z-index: 3; right: 42px; top: 70px; display: grid; place-items: center; width: 71px; height: 71px; color: #edfff4; border: 1px solid rgba(176,255,219,.6); border-radius: 50%; background: rgba(12,163,117,.44); box-shadow: 0 0 0 7px rgba(162,255,216,.13); font-size: 10px; text-align: center; }
.infrared-banner-memory::first-line { color: #fff; font-size: 12px; }
.infrared-banner-memory span { display: block; margin-top: 3px; color: #baffd8; font-size: 8px; }
.detail-art.infrared-detail-banner .detail-thermometer { z-index: 4; top: 137px; right: 118px; transform: rotate(15deg) scale(1.42); filter: drop-shadow(18px 25px 10px rgba(0,38,29,.28)); }
.detail-thermometer .thermometer-head { border-color: #f4fff9; background: linear-gradient(145deg, #fff, #d6e9df 70%, #92bfae); }
.detail-thermometer .thermometer-body { width: 57px; height: 113px; left: 27px; top: 46px; padding: 0; border: 4px solid #f6fff9; border-radius: 27px; background: linear-gradient(90deg, #fff, #d8ebe2); box-shadow: 13px 24px 23px rgba(0,54,38,.2); }
.detail-thermometer .thermo-screen { position: absolute; left: 7px; top: 20px; width: 35px; height: 47px; display: grid; place-items: center; color: #063b2c; border-radius: 8px; background: #51e86f; box-shadow: inset 0 0 10px rgba(0,75,49,.15); }
.detail-thermometer .thermo-screen small { color: #0d543a; font: 5px var(--mono); }
.detail-thermometer .thermo-screen b { font: 11px var(--mono); }
.detail-thermometer .thermo-screen em { color: #0d543a; font: 7px var(--mono); font-style: normal; }
.detail-thermometer .thermo-button { width: 13px; height: 13px; position: absolute; left: 18px; bottom: 11px; border: 1px solid #709b8a; border-radius: 50%; background: #eefbf4; }

@media (max-width: 780px) {
  .infrared-banner-brand { top: 18px; right: 18px; }
  .infrared-banner-brand strong { font-size: 19px; }
  .infrared-banner-copy { top: 60px; left: 18px; }
  .infrared-banner-copy strong { font-size: 29px; }
  .infrared-banner-pill { top: 146px; left: 18px; padding: 7px 11px; font-size: 8px; }
  .infrared-banner-memory { top: 46px; right: 20px; width: 57px; height: 57px; }
  .detail-art.infrared-detail-banner .detail-thermometer { top: 128px; right: 62px; transform: rotate(15deg) scale(.95); }
  .infrared-metric-left { left: 18px; bottom: 28px; }
  .infrared-metric-right { right: 18px; bottom: 78px; }
  .infrared-ring-one { right: 16px; bottom: 31px; }
  .infrared-ring-two { right: -18px; bottom: 12px; }
}

/* Product-specific detail treatment for the smart health ring. */
.art-smart-ring { background: radial-gradient(circle at 72% 24%, rgba(75,155,255,.3), transparent 24%), radial-gradient(circle at 44% 88%, rgba(76,137,255,.18), transparent 33%), linear-gradient(145deg, #050910 0%, #10192b 58%, #162f59 100%); }
.art-smart-ring::before { width: 300px; height: 300px; right: -76px; top: -93px; border: 1px solid rgba(113,179,255,.5); box-shadow: 0 0 0 20px rgba(65,142,255,.09), 0 0 0 52px rgba(65,142,255,.05); }
.art-smart-ring::after { width: 260px; height: 1px; right: -22px; bottom: 77px; background: rgba(110,179,255,.45); transform: rotate(-23deg); }
.smart-ring-visual { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; transform: rotate(-18deg); }
.card-smart-ring { width: 132px; height: 132px; top: 46px; right: 58px; border: 21px solid #e9edf1; background: #111b29; box-shadow: 18px 23px 22px rgba(0,0,0,.32), inset 0 0 0 4px #4d5a69; }
.smart-ring-visual::before { content: ''; position: absolute; inset: 9px; border: 3px solid #718091; border-radius: 50%; background: radial-gradient(circle at 34% 25%, #65758a, #101827 47%, #080d15 72%); box-shadow: inset 0 0 16px rgba(133,185,246,.34); }
.smart-ring-visual::after { content: ''; position: absolute; width: 25px; height: 11px; right: -9px; top: 43px; border: 2px solid #495c70; border-radius: 6px; background: #0e1b2c; box-shadow: 0 0 0 3px rgba(80,162,255,.16); }
.smart-ring-visual i, .smart-ring-visual b, .smart-ring-visual span { position: absolute; z-index: 2; width: 16px; height: 16px; border: 2px solid #45637e; border-radius: 5px; background: #08101d; box-shadow: 0 0 12px rgba(44,193,255,.36); }
.smart-ring-visual i { top: 22px; right: 32px; }
.smart-ring-visual b { bottom: 23px; left: 35px; }
.smart-ring-visual span { width: 8px; height: 8px; left: 39px; top: 33px; border: 0; border-radius: 50%; background: #45e6a0; box-shadow: 0 0 12px #45e6a0; }
.ring-banner-brand { position: absolute; z-index: 4; top: 23px; right: 29px; display: flex; align-items: baseline; gap: 8px; }
.ring-banner-brand strong { color: #fff; font-size: 24px; letter-spacing: .05em; }
.ring-banner-brand span { color: #91b6dc; font: 8px var(--mono); letter-spacing: .08em; }
.ring-banner-copy { position: absolute; z-index: 3; top: 66px; left: 28px; }
.ring-banner-copy small { display: block; margin-bottom: 10px; color: #8cbcff; font: 10px var(--mono); letter-spacing: .08em; }
.ring-banner-copy strong { display: block; color: #fff; font-size: clamp(27px, 3vw, 42px); line-height: 1.1; letter-spacing: -.08em; text-shadow: 0 5px 18px rgba(0,0,0,.34); }
.ring-banner-copy em { color: #72bdff; font-style: normal; }
.ring-banner-pill { position: absolute; z-index: 3; top: 177px; left: 28px; padding: 9px 17px; color: #eff7ff; border-radius: 999px; background: linear-gradient(90deg, #3187e1, #254a99); font-size: 10px; box-shadow: 0 9px 22px rgba(0,15,53,.3); }
.ring-banner-ring { position: absolute; z-index: 1; border: 1px solid rgba(98,174,255,.55); border-radius: 50%; transform: rotate(-18deg); }
.ring-orbit-one { width: 305px; height: 132px; right: 33px; bottom: 50px; box-shadow: 0 0 0 12px rgba(64,143,255,.09), 0 0 0 33px rgba(64,143,255,.04); }
.ring-orbit-two { width: 377px; height: 167px; right: -4px; bottom: 24px; border-color: rgba(119,191,255,.26); }
.ring-banner-metric { position: absolute; z-index: 3; display: grid; gap: 3px; color: #7fc4ff; font: 10px var(--mono); }
.ring-banner-metric b { font-size: 18px; letter-spacing: .02em; }
.ring-banner-metric span { color: rgba(211,234,255,.68); font-size: 8px; }
.ring-metric-left { left: 29px; bottom: 47px; }
.ring-metric-right { right: 28px; bottom: 103px; text-align: right; }
.ring-banner-memory { position: absolute; z-index: 3; right: 46px; top: 69px; display: grid; place-items: center; width: 68px; height: 68px; color: #a6ffd8; border: 1px solid rgba(100,231,181,.55); border-radius: 50%; background: rgba(22,113,112,.45); box-shadow: 0 0 0 7px rgba(83,220,178,.09); font: 700 12px var(--mono); text-align: center; }
.ring-banner-memory span { display: block; margin-top: 3px; color: #b9d7f4; font: 8px var(--sans); }
.detail-art .detail-smart-ring { z-index: 4; width: 178px; height: 178px; top: 151px; right: 106px; border-width: 28px; transform: rotate(-18deg) scale(1.25); box-shadow: 22px 31px 30px rgba(0,0,0,.37), inset 0 0 0 5px #556475, 0 0 32px rgba(74,160,255,.22); }
.detail-art .detail-smart-ring::after { width: 34px; height: 15px; right: -14px; top: 58px; }

@media (max-width: 780px) {
  .ring-banner-brand { top: 18px; right: 18px; }
  .ring-banner-brand strong { font-size: 19px; }
  .ring-banner-copy { top: 59px; left: 18px; }
  .ring-banner-copy strong { font-size: 29px; }
  .ring-banner-pill { top: 143px; left: 18px; padding: 7px 11px; font-size: 8px; }
  .ring-banner-memory { top: 45px; right: 19px; width: 57px; height: 57px; }
  .detail-art .detail-smart-ring { top: 138px; right: 58px; transform: rotate(-18deg) scale(.9); }
  .ring-metric-left { left: 18px; bottom: 28px; }
  .ring-metric-right { right: 18px; bottom: 78px; }
  .ring-orbit-one { right: 13px; bottom: 30px; }
  .ring-orbit-two { right: -19px; bottom: 11px; }
}

/* Store-provided product artwork. */
.product-photo { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.photo-product-card .product-tag, .photo-product-card .art-copy { z-index: 3; }
.photo-product-card .product-tag { color: #efffff; border-color: rgba(170,246,255,.42); background: rgba(4,37,77,.68); }
.photo-product-card .art-copy { text-shadow: 0 2px 12px rgba(0,22,53,.7); }
.detail-photo { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.detail-gallery-brand { position: absolute; z-index: 8; top: 16px; right: 16px; max-width: 210px; padding: 7px 11px; color: #fff; border: 1px solid rgba(255,255,255,.46); border-radius: 999px; background: rgba(6,47,53,.72); box-shadow: 0 7px 18px rgba(0,0,0,.16); font-size: 11px; font-weight: 700; letter-spacing: .02em; text-align: center; }
.detail-art.oximeter-photo-banner { background: #082b59; }
.detail-art.oximeter-photo-banner .detail-photo { object-fit: contain; }
.detail-art.blood-pressure-photo-banner { background: #d9edf6; }
.detail-art.blood-pressure-photo-banner .detail-photo { object-fit: contain; }
.detail-art.infrared-photo-banner { background: #0f3f37; }
.detail-art.infrared-photo-banner .detail-photo { object-fit: contain; }
.detail-content { scroll-margin-top: 112px; }
.detail-art.smart-ring-photo-banner { background: #070c16; }
.detail-art.smart-ring-photo-banner .detail-photo { object-fit: contain; }
.thumb.photo-thumb { background-repeat: no-repeat; background-position: center; background-size: cover; }
.photo-cart-visual { position: relative; overflow: hidden; background: #082b59; }
.photo-cart-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.photo-cart-visual span, .photo-cart-visual b { position: relative; z-index: 1; text-shadow: 0 1px 8px rgba(0,0,0,.65); }

/* Homepage service promise cards now cover the complete health-commerce journey. */
.services-section .service-grid { grid-template-columns: repeat(4, 1fr); }
.services-section .service-card { min-height: 248px; }

@media (max-width: 1100px) {
  .services-section .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .services-section .service-grid { grid-template-columns: 1fr; }
}

/* Lightweight real-time merchant chat window. */
.consultation-dialog {
  width: min(100%, 600px);
  padding: 23px 24px 18px;
}
.consultation-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-right: 35px; }
.consultation-header .eyebrow { margin-bottom: 8px; }
.consultation-avatar,
.consultation-message-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), #55bba4);
  font-size: 10px;
  font-weight: 700;
}
.consultation-avatar { width: 42px; height: 42px; flex: 0 0 auto; margin-top: 10px; box-shadow: 0 7px 16px rgba(17,137,113,.2); }
.consultation-status { max-width: 100%; }
.consultation-messages {
  max-height: 250px;
  overflow-y: auto;
  margin-top: 15px;
  padding: 15px 12px 13px;
  border: 1px solid #e3eee9;
  border-radius: 6px;
  background: #f5f8f7;
  scrollbar-color: #b7d8cc #eff5f2;
}
.consultation-message-row { display: flex; align-items: flex-end; gap: 8px; margin-top: 12px; }
.consultation-message-row:first-child { margin-top: 0; }
.consultation-message-row.user { flex-direction: row-reverse; }
.consultation-message-avatar { width: 25px; height: 25px; flex: 0 0 auto; color: #fff; background: #8ea9a2; font-size: 9px; }
.consultation-message-row.agent .consultation-message-avatar { background: var(--teal); }
.consultation-message-bubble { max-width: 78%; padding: 9px 11px; border: 1px solid #e1ebe7; border-radius: 10px 10px 10px 3px; background: #fff; }
.consultation-message-row.user .consultation-message-bubble { border-color: #c3e9db; border-radius: 10px 10px 3px 10px; background: #e6f8f0; }
.consultation-message-bubble strong { display: block; margin-bottom: 4px; color: #75908a; font-size: 9px; font-weight: 500; }
.consultation-message-bubble p { margin: 0; color: var(--ink); font-size: 11px; line-height: 1.65; white-space: pre-wrap; word-break: break-word; }
.consultation-quick { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.consultation-quick button { padding: 6px 9px; color: #5c7a75; border: 1px solid #d6e7e1; border-radius: 999px; background: #fff; font-size: 10px; }
.consultation-quick button:hover { color: var(--teal); border-color: var(--teal); background: #eefaf5; }
.consultation-dialog .consultation-form { display: block; margin-top: 11px; }
.consultation-composer { display: flex; align-items: flex-end; gap: 8px; padding: 8px; border: 1px solid #d7e6e1; border-radius: 5px; background: #fbfdfc; }
.consultation-composer textarea { min-height: 38px; max-height: 96px; flex: 1; padding: 8px 3px; border: 0; background: transparent; resize: vertical; }
.consultation-composer textarea:focus { box-shadow: none; }
.consultation-composer .consultation-submit { min-height: 34px; display: inline-flex; justify-content: center; gap: 7px; grid-column: auto; padding: 0 14px; border-radius: 4px; }
.consultation-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.consultation-contact-fields label { gap: 4px; color: #8a9f9b; font-size: 9px; }
.consultation-contact-fields input { min-height: 33px; padding: 7px 9px; font-size: 10px; }

@media (max-width: 520px) {
  .consultation-dialog { padding: 21px 15px 15px; }
  .consultation-header { gap: 10px; padding-right: 25px; }
  .consultation-messages { max-height: 260px; padding-right: 8px; padding-left: 8px; }
  .consultation-message-bubble { max-width: 84%; }
  .consultation-contact-fields { grid-template-columns: 1fr; }
}

/* Product detail: merchant identity sits above the artwork, while intro/specs flow as one page. */
.detail-page .detail-gallery {
  display: flex;
  flex-direction: column;
}
.detail-page .store-card {
  position: static;
  z-index: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, .95fr) minmax(150px, .75fr);
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #dfeae4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20,65,67,.08);
}
.detail-page .store-identity,
.detail-page .store-metrics,
.detail-page .store-card-actions { min-width: 0; }
.detail-page .store-eyebrow {
  margin: 0 0 6px;
  color: #8ea29f;
  font: 10px var(--mono);
  text-align: left;
}
.detail-page .store-identity > strong {
  display: block;
  overflow: hidden;
  padding-right: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-page .store-identity > small {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: #78908e;
  font-size: 10px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-page .store-meta {
  margin: 6px 0 0;
  color: #748988;
  font-size: 10px;
  line-height: 1.7;
}
.detail-page .store-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  border-top: 0;
}
.detail-page .store-stats span {
  color: #849795;
  font-size: 9px;
  text-align: center;
}
.detail-page .store-stats strong {
  display: block;
  color: var(--teal);
  font-size: 14px;
}
.detail-page .store-stats i { color: var(--teal); font-size: 8px; font-style: normal; }
.detail-page .store-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid #e6eeea;
}
.detail-page .store-credentials .merchant-license-link,
.detail-page .store-credentials .merchant-deposit-badge {
  color: #4e7774;
  font-size: 9px;
}
.detail-page .store-credentials .credential-icon { width: 16px; height: 16px; font-size: 9px; }
.detail-page .store-card-actions { min-width: 0; }
.detail-page .store-contact {
  display: block;
  width: 100%;
  margin: 0 0 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  text-align: left;
}
.detail-page .store-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 0;
}
.detail-page .store-actions button { min-height: 30px; font-size: 10px; }
.detail-page .detail-art { order: 2; }
.detail-page .detail-thumbs { order: 3; }
.detail-page .detail-content { scroll-margin-top: 112px; }

@media (max-width: 920px) and (min-width: 781px) {
  .detail-page .store-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(130px, .9fr) minmax(130px, .8fr);
    gap: 10px;
    padding: 12px;
  }
  .detail-page .store-identity > strong { font-size: 12px; }
  .detail-page .store-actions { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .detail-page .store-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .detail-page .store-card-actions { min-width: 0; }
  .detail-page .store-contact { margin-bottom: 7px; }
  .detail-page .detail-art { order: initial; }
  .detail-page .detail-thumbs { order: initial; }
}

/* Simple customer-service chat layout, matching the reference conversation window. */
.consultation-dialog {
  width: min(100%, 1040px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #eef1f5;
}
.consultation-chat-titlebar {
  min-height: 63px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-bottom: 1px solid #dfe4e8;
  background: #fff;
}
.consultation-chat-titlebar h2 { margin: 0; color: #263b52; font-size: 20px; letter-spacing: -.04em; }
.consultation-chat-titlebar .consultation-store-line { margin: 0; color: #7c8b99; font-size: 11px; }
.consultation-chat-titlebar .consultation-store-line strong { color: #406fa3; font-weight: 500; }
.consultation-chat-titlebar .consultation-status { margin: 0; padding: 5px 8px; font-size: 9px; }
.consultation-chat-titlebar .consultation-close { top: 15px; right: 17px; }
.consultation-chat-layout { min-height: 610px; display: grid; grid-template-columns: minmax(0, 1fr) 282px; }
.consultation-chat-main { min-width: 0; display: flex; flex-direction: column; }
.consultation-chat-main .consultation-messages {
  height: 430px;
  max-height: none;
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 25px 34px;
  border: 0;
  border-radius: 0;
  background: #eef1f5;
}
.consultation-chat-main .consultation-message-row { margin-top: 17px; }
.consultation-chat-main .consultation-message-row:first-child { margin-top: 0; }
.consultation-chat-main .consultation-message-avatar { width: 38px; height: 38px; font-size: 10px; }
.consultation-chat-main .consultation-message-bubble { max-width: min(72%, 430px); padding: 13px 16px; border-color: #e0e5eb; border-radius: 4px 10px 10px 10px; }
.consultation-chat-main .consultation-message-row.user .consultation-message-bubble { border-radius: 10px 4px 10px 10px; background: #e4effc; }
.consultation-chat-main .consultation-message-bubble strong { margin-bottom: 7px; color: #71869e; font-size: 10px; }
.consultation-chat-main .consultation-message-bubble p { color: #304b6c; font-size: 12px; line-height: 1.65; }
.consultation-form { margin: 0 !important; padding: 0 25px 17px; border-top: 1px solid #d8dfe6; background: #f4f6f8; }
.consultation-toolbar { display: flex; align-items: center; gap: 20px; min-height: 41px; color: #182b3e; }
.consultation-toolbar span { font-size: 19px; line-height: 1; }
.consultation-toolbar em { margin-left: auto; color: #7e8d9e; font-size: 11px; font-style: normal; }
.consultation-composer { display: flex; align-items: flex-end; gap: 11px; padding: 0; border: 0; background: transparent; }
.consultation-composer textarea { width: 100%; min-height: 56px; max-height: 110px; padding: 5px 6px; color: #334d69; border: 0; outline: 0; background: transparent; font-size: 12px; line-height: 1.7; resize: vertical; }
.consultation-composer textarea::placeholder { color: #a4b0bc; }
.consultation-composer .consultation-submit { min-width: 84px; min-height: 32px; flex: 0 0 auto; color: #fff; border: 0; border-radius: 18px; background: #3e82f3; font-size: 11px; }
.consultation-composer .consultation-submit:hover { background: #2068d7; }
.consultation-chat-main .consultation-note { margin: 0; padding-top: 7px; color: #9ba8b3; font-size: 9px; line-height: 1.5; }
.consultation-store-panel { display: flex; align-items: center; flex-direction: column; padding: 28px 20px; border-left: 1px solid #e0e5e9; background: #fff; text-align: center; }
.consultation-store-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 13px; color: #fff; border-radius: 14px; background: linear-gradient(145deg, #0fa59d, #086b75); font-size: 22px; font-weight: 700; }
.consultation-store-panel strong { max-width: 220px; color: #1d2f44; font-size: 15px; line-height: 1.5; }
.consultation-store-panel a { margin-top: 15px; padding: 7px 14px; color: #3e82f3; border: 1px solid #3e82f3; border-radius: 3px; font-size: 10px; }
.consultation-store-panel a:hover { color: #fff; background: #3e82f3; }

@media (max-width: 700px) {
  .consultation-chat-titlebar { align-items: flex-start; flex-direction: column; gap: 3px; padding: 14px 52px 13px 17px; }
  .consultation-chat-titlebar .consultation-status { margin-top: 3px; }
  .consultation-chat-layout { min-height: 0; grid-template-columns: 1fr; }
  .consultation-chat-main .consultation-messages { height: 360px; padding: 18px 15px; }
  .consultation-form { padding-right: 14px; padding-left: 14px; }
  .consultation-store-panel { min-height: 145px; padding: 18px; border-top: 1px solid #e0e5e9; border-left: 0; }
  .consultation-store-mark { width: 42px; height: 42px; margin-bottom: 7px; font-size: 16px; }
  .consultation-store-panel a { margin-top: 8px; }
}

/* Product detail store card: clear three-column hierarchy above the product artwork. */
.detail-page .store-card {
  grid-template-columns: minmax(230px, 1.35fr) minmax(210px, 1fr) minmax(170px, .78fr);
  gap: 22px;
  min-height: 126px;
  padding: 17px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(20, 65, 67, .07);
}
.detail-page .store-identity { display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.detail-page .store-eyebrow { margin: 0 0 8px; color: #90a5a0; font-size: 10px; letter-spacing: .04em; }
.detail-page .store-identity > strong { overflow: visible; color: var(--ink); font-size: 16px; line-height: 1.35; text-overflow: clip; white-space: normal; }
.detail-page .store-identity > small { max-width: 100%; overflow: visible; margin-top: 7px; color: #78908e; font-size: 10px; line-height: 1.65; text-overflow: clip; white-space: normal; }
.detail-page .store-metrics { padding-left: 20px; border-left: 1px solid #e2ece8; }
.detail-page .store-metrics-label { margin: 0 0 8px; color: #8da29e; font-size: 10px; }
.detail-page .store-stats { gap: 18px; }
.detail-page .store-stats span { color: #829795; font-size: 10px; line-height: 1.3; }
.detail-page .store-stats strong { margin-top: 3px; font-size: 16px; }
.detail-page .store-credentials { gap: 10px; margin-top: 10px; padding-top: 9px; }
.detail-page .store-credentials .merchant-license-link, .detail-page .store-credentials .merchant-deposit-badge { font-size: 10px; }
.detail-page .store-card-actions { display: grid; gap: 9px; align-content: center; justify-items: stretch; padding-left: 20px; border-left: 1px solid #e2ece8; }
.detail-page .store-contact { position: relative; display: flex; width: 100%; min-height: 38px; align-items: center; justify-content: space-between; gap: 8px; margin: 0; padding: 7px 10px; color: var(--teal); border: 1px solid #b9ddd1; border-radius: 5px; background: #f5fcf9; font-size: 11px; text-align: left; }
.detail-page .store-contact span { color: var(--teal); font-weight: 700; }
.detail-page .store-contact small { display: block; overflow: hidden; color: #78918c; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.detail-page .store-contact b { color: var(--teal); font-size: 14px; font-weight: 400; }
.detail-page .store-contact:hover { border-color: var(--teal); background: #eaf8f2; }
.detail-page .store-actions { gap: 0; }
.detail-page .store-actions button { min-height: 38px; color: #fff; border-color: var(--teal); border-radius: 5px; background: var(--teal); font-size: 11px; font-weight: 700; }
.detail-page .store-actions button:hover { border-color: var(--ink); background: var(--ink); }

@media (max-width: 920px) and (min-width: 781px) {
  .detail-page .store-card { grid-template-columns: minmax(200px, 1.15fr) minmax(180px, 1fr) minmax(145px, .8fr); gap: 13px; padding: 14px; }
  .detail-page .store-metrics, .detail-page .store-card-actions { padding-left: 13px; }
  .detail-page .store-identity > strong { font-size: 14px; }
  .detail-page .store-contact small { display: none; }
}

@media (max-width: 780px) {
  .detail-page .store-card { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .detail-page .store-metrics, .detail-page .store-card-actions { padding-top: 13px; padding-left: 0; border-top: 1px solid #e2ece8; border-left: 0; }
  .detail-page .store-stats { gap: 10px; }
  .detail-page .store-card-actions { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .detail-page .store-actions { display: block; }
  .detail-page .store-contact { min-height: 36px; }
  .detail-page .store-contact small { display: none; }
  .detail-page .store-actions button { min-height: 36px; }
}

/* Store information card: horizontal desktop layout, stacked mobile layout. */
.detail-page .store-card {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr) minmax(235px, .42fr);
  gap: 26px;
  min-height: 0;
  margin-bottom: 16px;
  padding: 18px 22px;
}
.detail-page .store-main { display: grid; min-width: 0; grid-template-columns: minmax(205px, .75fr) minmax(0, 1.25fr); gap: 24px; align-items: center; }
.detail-page .store-identity { min-width: 0; }
.detail-page .store-identity > strong { display: block; overflow-wrap: anywhere; font-size: 18px; line-height: 1.3; }
.detail-page .store-identity > small { display: block; overflow-wrap: anywhere; margin-top: 7px; font-size: 10px; line-height: 1.55; }
.detail-page .store-info-row { display: flex; min-width: 0; align-items: flex-end; gap: 20px; }
.detail-page .store-metrics { min-width: 0; padding: 0; border: 0; }
.detail-page .store-metrics-label { margin: 0 0 7px; }
.detail-page .store-stats { display: flex; gap: 22px; margin: 0; padding: 0; border: 0; }
.detail-page .store-stats span { min-width: 38px; font-size: 10px; text-align: left; }
.detail-page .store-stats strong { margin-top: 3px; font-size: 16px; }
.detail-page .store-credentials { display: flex; flex: 0 0 auto; gap: 9px; margin: 0; padding: 0 0 1px; border: 0; align-items: center; }
.detail-page .store-credentials .merchant-license-link, .detail-page .store-credentials .merchant-deposit-badge { white-space: nowrap; }
.detail-page .store-card-actions { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) minmax(106px, .72fr); gap: 10px; align-items: center; padding: 0 0 0 26px; border-left: 1px solid #e2ece8; }
.detail-page .store-contact { min-width: 0; min-height: 40px; margin: 0; }
.detail-page .store-contact small { max-width: 130px; }
.detail-page .store-actions { min-width: 0; }
.detail-page .store-actions button { width: 100%; min-height: 40px; }

@media (max-width: 1080px) and (min-width: 781px) {
  .detail-page .store-card { grid-template-columns: minmax(0, 1fr) minmax(205px, .48fr); gap: 16px; padding: 16px; }
  .detail-page .store-main { grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr); gap: 15px; }
  .detail-page .store-info-row { gap: 12px; }
  .detail-page .store-stats { gap: 11px; }
  .detail-page .store-credentials { gap: 6px; }
  .detail-page .store-credentials .merchant-license-link, .detail-page .store-credentials .merchant-deposit-badge { font-size: 9px; }
  .detail-page .store-card-actions { padding-left: 16px; }
  .detail-page .store-contact small { display: none; }
}

@media (max-width: 780px) {
  .detail-page .store-card { grid-template-columns: 1fr; gap: 15px; margin-bottom: 13px; padding: 16px; }
  .detail-page .store-main { grid-template-columns: 1fr; gap: 13px; }
  .detail-page .store-info-row { flex-wrap: wrap; gap: 12px 18px; align-items: center; padding-top: 13px; border-top: 1px solid #e2ece8; }
  .detail-page .store-metrics { flex: 1 1 250px; }
  .detail-page .store-stats { gap: 18px; }
  .detail-page .store-card-actions { grid-template-columns: minmax(0, 1fr) minmax(120px, .8fr); gap: 10px; padding: 13px 0 0; border-top: 1px solid #e2ece8; border-left: 0; }
  .detail-page .store-contact small { display: none; }
  .detail-page .store-contact, .detail-page .store-actions button { min-height: 38px; }
}

@media (max-width: 430px) {
  .detail-page .store-identity > strong { font-size: 16px; }
  .detail-page .store-info-row { align-items: flex-start; }
  .detail-page .store-metrics { width: 100%; }
  .detail-page .store-stats { justify-content: space-between; gap: 8px; }
  .detail-page .store-credentials { width: 100%; justify-content: flex-start; }
  .detail-page .store-card-actions { grid-template-columns: 1fr; }
}

/* Final store-card hierarchy: three inline identity items, company, ratings, then stacked actions. */
.detail-page .store-main { display: grid; grid-template-columns: 1fr; gap: 11px; align-content: center; }
.detail-page .store-identity { display: block; }
.detail-page .store-title-row { display: flex; min-width: 0; align-items: center; flex-wrap: wrap; gap: 9px 14px; }
.detail-page .store-title-row > strong { min-width: 0; flex: 1 1 auto; overflow-wrap: anywhere; font-size: 18px; line-height: 1.3; }
.detail-page .store-title-credentials,
.detail-page .store-title-credentials .store-credentials { display: contents; }
.detail-page .store-title-row .merchant-license-link,
.detail-page .store-title-row .merchant-deposit-badge { flex: 0 0 auto; white-space: nowrap; }
.detail-page .store-identity > small { display: block; margin-top: 6px; color: #78908e; font-size: 10px; line-height: 1.55; }
.detail-page .store-info-row { display: block; padding-top: 10px; border-top: 1px solid #e2ece8; }
.detail-page .store-metrics { display: flex; min-width: 0; align-items: center; gap: 20px; }
.detail-page .store-metrics-label { flex: 0 0 auto; margin: 0; color: #8da29e; font-size: 10px; }
.detail-page .store-stats { display: flex; flex: 1 1 auto; justify-content: flex-start; gap: 25px; }
.detail-page .store-stats span { min-width: 58px; color: #829795; font-size: 10px; text-align: left; }
.detail-page .store-stats strong { display: inline-block; margin: 0 0 0 5px; color: var(--teal); font-size: 15px; }
.detail-page .store-stats i { display: none; }
.detail-page .store-card-actions { grid-template-columns: 1fr; grid-template-rows: repeat(2, minmax(38px, auto)); align-content: center; }
.detail-page .store-card-actions > .enter-store { width: 100%; min-height: 40px; color: #fff; border: 1px solid var(--teal); border-radius: 5px; background: var(--teal); font-size: 11px; font-weight: 700; }
.detail-page .store-card-actions > .enter-store:hover { border-color: var(--ink); background: var(--ink); }

@media (max-width: 1080px) and (min-width: 781px) {
  .detail-page .store-title-row > strong { font-size: 16px; }
  .detail-page .store-metrics { gap: 12px; }
  .detail-page .store-stats { gap: 13px; }
  .detail-page .store-stats span { min-width: 50px; }
  .detail-page .store-stats strong { font-size: 14px; }
}

@media (max-width: 780px) {
  .detail-page .store-main { gap: 12px; }
  .detail-page .store-title-row { align-items: flex-start; gap: 8px 12px; }
  .detail-page .store-title-row > strong { flex: 1 1 210px; }
  .detail-page .store-info-row { padding-top: 12px; }
  .detail-page .store-metrics { display: block; }
  .detail-page .store-stats { margin-top: 8px; justify-content: space-between; gap: 8px; }
  .detail-page .store-stats span { min-width: 0; flex: 1 1 0; }
  .detail-page .store-card-actions > .enter-store { min-height: 38px; }
}

@media (max-width: 430px) {
  .detail-page .store-title-row > strong { flex-basis: 100%; }
  .detail-page .store-title-row .merchant-license-link,
  .detail-page .store-title-row .merchant-deposit-badge { font-size: 9px; }
  .detail-page .store-stats { gap: 5px; }
  .detail-page .store-stats span { font-size: 9px; }
  .detail-page .store-stats strong { margin-left: 2px; font-size: 13px; }
}

/* Compact product-detail actions and one-line qualification badges. */
.detail-page .store-title-row { flex-wrap: nowrap; }
.detail-page .store-title-row > strong { flex: 1 1 auto; }
.detail-page .store-title-row .merchant-license-link,
.detail-page .store-title-row .merchant-deposit-badge { flex: 0 0 auto; }
.detail-page .store-card { grid-template-columns: minmax(0, 1fr) 120px; }
.detail-page .store-card-actions { width: 120px; max-width: 120px; justify-self: end; }
.detail-page .store-contact,
.detail-page .store-card-actions > .enter-store { min-height: 36px; }
.detail-page .store-contact small { display: none; }

@media (max-width: 1080px) and (min-width: 781px) {
  .detail-page .store-card { grid-template-columns: minmax(0, 1fr) 120px; }
  .detail-page .store-card-actions { width: 120px; max-width: 120px; }
}

@media (max-width: 780px) {
  .detail-page .store-title-row { flex-wrap: wrap; }
  .detail-page .store-card { grid-template-columns: 1fr; }
  .detail-page .store-card-actions { width: 120px; max-width: 120px; justify-self: end; }
}

/* ---- 扫码支付弹窗 ---- */
.payment-overlay { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; background: rgba(8, 45, 58, .75); backdrop-filter: blur(4px); }
.payment-overlay[hidden] { display: none; }
.payment-modal { width: 400px; max-width: 92vw; background: #fff; border-radius: 12px; box-shadow: 0 30px 70px rgba(8, 45, 58, .35); overflow: hidden; animation: paymentSlideUp .3s ease-out; }
@keyframes paymentSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.payment-modal-header { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: #f7faf9; border-bottom: 1px solid #e7f0ec; }
.payment-modal-header h2 { margin: 0; color: var(--ink); font-size: 18px; letter-spacing: -.04em; }
.payment-modal-header p { margin: 0 0 0 auto; color: var(--teal); font-size: 12px; font-weight: 600; }
.payment-close { margin-left: 8px; width: 30px; height: 30px; border: 1px solid #dce8e4; border-radius: 6px; background: #fff; color: #7a9790; font-size: 14px; cursor: pointer; display: grid; place-items: center; transition: all .2s; }
.payment-close:hover { background: #eaf3ef; color: var(--ink); }
.payment-qr-body { padding: 24px 28px 28px; text-align: center; }
.payment-qr-amount { margin-bottom: 16px; }
.payment-qr-amount span { display: block; color: #829590; font-size: 11px; margin-bottom: 4px; }
.payment-qr-amount strong { color: var(--teal); font-size: 28px; letter-spacing: -.04em; }
.payment-qr-code { width: 200px; height: 200px; margin: 0 auto 18px; padding: 6px; border: 2px solid #e2ece8; border-radius: 12px; background: #fff; }
.payment-qr-code svg { width: 100%; height: 100%; display: block; }
.payment-qr-code img { width: 100%; height: 100%; display: block; border-radius: 8px; }
.payment-qr-loading { display: grid; place-items: center; width: 100%; height: 100%; color: #9aa9a5; font-size: 12px; }
.payment-qr-tips { margin-bottom: 20px; }
.payment-qr-tips p { margin: 0 0 6px; color: #5c7570; font-size: 12px; }
.payment-qr-subtip { color: #9aa9a5 !important; font-size: 10px !important; }
.payment-confirm-btn { width: 100%; justify-content: center; margin-bottom: 8px; }
#payment-cancel { width: 100%; justify-content: center; background: 0; border: 0; padding: 8px; color: #9aa9a5; font-size: 12px; cursor: pointer; }
#payment-cancel:hover { color: var(--ink); }
@media (max-width: 780px) { .payment-modal { width: 92vw; } .payment-qr-body { padding: 20px 16px 24px; } }
