/* Dream Taken · mini-program storefront port (rpx→rem) */
.sf-page {
  --void: #fafaf8;
  --void-soft: #ffffff;
  --cream: #1a1a1a;
  --gold: #c9a962;
  --gold-light: #d4b978;
  --gold-dim: rgba(201, 169, 98, 0.65);
  --violet: #c9a962;
  --text-1: rgba(26, 26, 26, 0.92);
  --text-2: rgba(26, 26, 26, 0.52);
  --text-3: rgba(26, 26, 26, 0.36);
  --muted: rgba(26, 26, 26, 0.45);
  --line: rgba(0, 0, 0, 0.07);
  --line-strong: rgba(0, 0, 0, 0.12);
  --card-bg: #ffffff;
  --card-flat: #ffffff;
  --btn-gold-bg: #1a1a1a;
  --btn-gold-text: #fafaf8;
  --btn-ghost-bg: #ffffff;
  --bar-bg: #fafaf8;
  --bar-border: rgba(0, 0, 0, 0.06);
  --pad-x: 1.375rem;
  --radius: 0.375rem;
  --radius-lg: 0.625rem;
}

html[data-theme="dark"] .sf-page {
  --void: #050505;
  --void-soft: #0c0b0a;
  --cream: #f0e0bc;
  --gold: #d4b87a;
  --gold-light: #e8d4a8;
  --gold-dim: rgba(212, 184, 122, 0.55);
  --violet: #b8a0e8;
  --text-1: rgba(240, 224, 188, 0.94);
  --text-2: rgba(232, 212, 168, 0.58);
  --text-3: rgba(232, 212, 168, 0.32);
  --muted: rgba(232, 212, 168, 0.55);
  --line: rgba(198, 167, 106, 0.14);
  --line-strong: rgba(198, 167, 106, 0.28);
  --card-bg: linear-gradient(165deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  --card-flat: rgba(12, 11, 10, 0.6);
  --btn-gold-bg: #e8d4a8;
  --btn-gold-text: #050505;
  --btn-ghost-bg: rgba(255, 255, 255, 0.04);
  --bar-bg: #050505;
  --bar-border: rgba(198, 167, 106, 0.14);
}

.sf-shell {
  margin: 0 auto;
  max-width: 48rem;
  padding: calc(var(--header-h) + 0.85rem) 1.25rem 0;
  position: relative;
  z-index: 2;
}

.sf-page .body {
  padding: 0;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  position: relative;
  z-index: 2;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.btn {
  align-items: center;
  appearance: none;
  border: 0;
  border-radius: 99rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.14em;
  line-height: 1.4;
  min-height: 2.5rem;
  padding: 0.68rem 1.25rem;
  text-decoration: none;
}

.btn__label { display: block; text-align: center; white-space: nowrap; }
.btn--gold { background: var(--btn-gold-bg); color: var(--btn-gold-text); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
}
html[data-theme="light"] .sf-page .btn--outline { color: #1a1a1a; }
.btn-row { display: flex; gap: 0.625rem; }
.btn-row .btn { flex: 1; }


/* ---- build.wxss ---- */


.build__scroll { min-height: 0; }

.build__body {
  padding-bottom: calc(4.625rem + env(safe-area-inset-bottom));
}

/* ===== 电影感 Hero ===== */
.build__hero {
  border-radius: 0 0 1.25rem 1.25rem;
  margin: 0 calc(-1 * var(--pad-x));
  min-height: 22.5rem;
  overflow: hidden;
  position: relative;
}

.build__hero-veil {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.92) 72%, var(--void) 100%);
  inset: 0;
  position: absolute;
  z-index: 3;
}

html[data-theme="light"] .build__hero-veil {
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.1) 0%, rgba(250, 250, 248, 0.88) 72%, var(--void) 100%);
}

.build__hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(212, 184, 122, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(201, 169, 98, 0.2) 0%, transparent 50%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.build__hero-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.build__collage {
  height: 10rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0.5rem;
  z-index: 1;
}

.build__collage-item {
  border-radius: 0.625rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: absolute;
}

.build__collage-item img {
  height: 100%;
  width: 100%;
}

.build__collage-shade {
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.5) 100%);
  inset: 0;
  position: absolute;
}

.build__collage-item--0 {
  height: 6.875rem;
  left: 6%;
  top: 1rem;
  transform: rotate(-5deg);
  width: 5.25rem;
  z-index: 1;
}

.build__collage-item--1 {
  height: 8.125rem;
  left: 50%;
  margin-left: -3.4375rem;
  top: 0.25rem;
  transform: rotate(1deg);
  width: 6.875rem;
  z-index: 2;
}

.build__collage-item--2 {
  height: 6.5625rem;
  right: 5%;
  top: 1.25rem;
  transform: rotate(4deg);
  width: 5.25rem;
  z-index: 1;
}

.build__hero-copy {
  padding: 9.375rem var(--pad-x) 1.5rem;
  position: relative;
  z-index: 6;
}

.build__hero-copy::before {
  background: linear-gradient(180deg, transparent 0%, var(--void) 28%);
  content: '';
  inset: 7.5rem 0 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.build__hero-eyebrow {
  color: var(--gold-light);
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

.build__hero-title {
  margin-top: 0.625rem;
}

.build__hero-line {
  color: var(--cream);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.build__hero-line--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #f0e0bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.build__hero-sub {
  color: var(--text-2);
  display: block;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 0.625rem;
  max-width: 17.5rem;
}

.build__hero-stats {
  display: flex;
  gap: 0;
  margin-top: 1.125rem;
}

.build__hero-stat {
  flex: 1;
  position: relative;
}

.build__hero-stat + .build__hero-stat::before {
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.35), transparent);
  bottom: 0.25rem;
  content: '';
  left: 0;
  position: absolute;
  top: 0.25rem;
  width: 1px;
}

.build__hero-stat-val {
  align-items: baseline;
  color: var(--cream);
  display: flex;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.build__hero-stat-unit {
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 1px;
}

.build__hero-stat-label {
  color: var(--text-3);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.25rem;
}

.build__hero-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.125rem;
}

.build__hero-cta .btn {
  flex: 1;
  padding: 0.75rem 0.625rem;
}

/* ===== Design DNA ===== */
.build__dna {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.build__dna-card {
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.875rem 0.875rem 0.875rem 1rem;
  position: relative;
}

.build__dna-card::before {
  background: linear-gradient(180deg, var(--gold-light) 0%, transparent 100%);
  border-radius: 0.75rem 0 0 0.75rem;
  bottom: 0.625rem;
  content: '';
  left: 0;
  position: absolute;
  top: 0.625rem;
  width: 0.125rem;
}

.build__dna-num {
  color: var(--gold-dim);
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.build__dna-title {
  color: var(--cream);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}

.build__dna-desc {
  color: var(--text-2);
  display: block;
  font-size: 0.75rem;
  line-height: 1.65;
  margin-top: 0.3125rem;
}

/* ===== 案例 · 编辑式 ===== */
.build__featured {
  border-radius: 0.875rem;
  height: 15rem;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
}

.build__featured-cover {
  height: 100%;
  width: 100%;
}

.build__featured-shade {
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.94) 100%);
  inset: 0;
  position: absolute;
}

.build__featured-badge {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(124, 182, 157, 0.45);
  border-radius: 31.2188rem;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.25rem;
  height: auto;
  left: 0.625rem;
  line-height: 1.2;
  max-width: calc(100% - 1.25rem);
  padding: 0.25rem 0.5625rem;
  position: absolute;
  top: 0.625rem;
  white-space: nowrap;
  width: auto;
  z-index: 4;
}

.build__featured-badge-icon {
  color: #7cb69d;
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
}

.build__featured-badge-text {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.build__featured-info {
  bottom: 0;
  left: 0;
  padding: 1rem 0.875rem;
  position: absolute;
  right: 0;
}

.build__featured-industry {
  color: var(--eyebrow-violet);
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.build__featured-name {
  color: var(--cream);
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.build__featured-tagline {
  color: var(--text-2);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.build__featured-proof {
  color: var(--gold-light);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.375rem;
}

.build__cases-scroll {
  margin: 0.75rem calc(-1 * var(--pad-x)) 0;
  width: calc(100% + 2 * var(--pad-x));
}

.build__cases-list {
  display: flex;
  gap: 0.5rem;
  padding: 0 var(--pad-x) 0.125rem;
}

.build__case {
  border-radius: 0.625rem;
  flex-shrink: 0;
  height: 10rem;
  overflow: hidden;
  position: relative;
  width: 6.875rem;
}

.build__case-cover {
  height: 100%;
  width: 100%;
}

.build__case-verify {
  background: rgba(0, 0, 0, 0.58);
  border-radius: 31.2188rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.5rem;
  font-weight: 600;
  left: 0.375rem;
  padding: 0.125rem 0.375rem;
  position: absolute;
  top: 0.375rem;
  white-space: nowrap;
  z-index: 2;
}

.build__case-shade {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82) 100%);
  inset: 0;
  position: absolute;
}

.build__case-info {
  bottom: 0;
  left: 0;
  padding: 0.625rem 0.5rem;
  position: absolute;
  right: 0;
}

.build__case-industry {
  color: var(--eyebrow-violet);
  display: block;
  font-size: 0.5625rem;
}

.build__case-name {
  color: var(--cream);
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.125rem;
}

.build__case-tagline {
  color: var(--text-2);
  display: block;
  font-size: 0.5625rem;
  margin-top: 0.125rem;
}

/* ===== 选设计师 ===== */
.build__experts-head {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
}

.build__experts-sec {
  flex: 1;
  min-width: 0;
}

.build__experts-lead {
  display: block;
  margin-top: 0.375rem;
}

.build__experts-badge {
  align-items: center;
  background: rgba(212, 184, 122, 0.1);
  border: 1px solid rgba(212, 184, 122, 0.28);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0.375rem 0.5rem;
}

.build__experts-badge text:first-child {
  color: var(--gold-light);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
}

.build__experts-badge-sub {
  color: var(--text-3);
  font-size: 0.5625rem;
  margin-top: 0.125rem;
}

/* Spotlight */
.build__spotlight {
  background: linear-gradient(165deg, rgba(212, 184, 122, 0.12) 0%, rgba(184, 160, 232, 0.06) 50%, var(--card-flat) 100%);
  border: 1px solid rgba(212, 184, 122, 0.32);
  border-radius: 0.875rem;
  margin-top: 0.875rem;
  overflow: hidden;
  padding: 0.875rem;
  position: relative;
}

.build__spotlight-glow {
  background: radial-gradient(circle at 80% 0%, rgba(212, 184, 122, 0.2) 0%, transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.build__spotlight-top {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  position: relative;
}

.build__spotlight-label {
  color: var(--gold-light);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.build__spotlight-tag {
  background: var(--tag-gold-bg);
  border: 1px solid var(--tag-gold-border);
  border-radius: 0.25rem;
  color: var(--gold-light);
  font-size: 0.5625rem;
  padding: 0.125rem 0.375rem;
}

.build__spotlight-body {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  margin-top: 0.75rem;
  position: relative;
}

.build__spotlight-ava-wrap {
  flex-shrink: 0;
}

.build__spotlight-ava {
  border: 1px solid rgba(212, 184, 122, 0.35);
  border-radius: 0.625rem;
  height: 3.5rem;
  overflow: hidden;
  width: 3.5rem;
}

.build__spotlight-ava img {
  height: 100%;
  width: 100%;
}

.build__spotlight-ava--txt {
  align-items: center;
  background: var(--card-flat);
  color: var(--gold-light);
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
}

.build__spotlight-main {
  flex: 1;
  min-width: 0;
}

.build__spotlight-name {
  color: var(--cream);
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
}

.build__spotlight-title {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.1875rem;
}

.build__spotlight-hook {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text-1);
  display: -webkit-box;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 0.375rem;
  overflow: hidden;
}

.build__spotlight-foot {
  align-items: baseline;
  color: var(--text-3);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.625rem;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.build__spotlight-price {
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 700;
}

.build__spotlight-portfolio {
  display: flex;
  gap: 0.3125rem;
  margin-top: 0.75rem;
  position: relative;
}

.build__spotlight-portfolio img {
  border-radius: 0.375rem;
  flex: 1;
  height: 3.75rem;
  min-width: 0;
}

.build__spotlight-cta {
  align-items: center;
  border-top: 1px solid rgba(212, 184, 122, 0.18);
  color: var(--gold-light);
  display: flex;
  font-size: 0.8125rem;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  position: relative;
}

.build__spotlight-arrow {
  font-size: 1rem;
}

/* 设计师卡片 */
.build__designers {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.build__designer-card {
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0.75rem;
  transition: border-color 0.2s;
}

.build__designer-card:active {
  border-color: rgba(212, 184, 122, 0.35);
}

.build__designer-card-head {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
}

.build__designer-ava {
  border-radius: 0.5625rem;
  flex-shrink: 0;
  height: 3rem;
  overflow: hidden;
  width: 3rem;
}

.build__designer-ava img {
  height: 100%;
  width: 100%;
}

.build__designer-ava--txt {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
}

html[data-theme="light"] .build__designer-ava--txt {
  background: #f2f2f0;
  color: var(--text-2);
}

.build__designer-meta {
  flex: 1;
  min-width: 0;
}

.build__designer-name-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.build__designer-name {
  color: var(--cream);
  font-size: 0.9375rem;
  font-weight: 700;
}

.build__designer-tag {
  background: var(--tag-gold-bg);
  border: 1px solid var(--tag-gold-border);
  border-radius: 0.25rem;
  color: var(--gold-light);
  font-size: 0.5625rem;
  padding: 1px 0.3125rem;
}

.build__designer-title {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.1875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.build__designer-foot {
  align-items: baseline;
  color: var(--text-3);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.625rem;
  gap: 0.4375rem;
  margin-top: 0.3125rem;
}

.build__designer-price {
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 700;
}

.build__designer-portfolio {
  margin: 0.625rem -0.25rem 0;
  width: calc(100% + 0.5rem);
}

.build__designer-portfolio-inner {
  display: flex;
  gap: 0.3125rem;
  padding: 0 0.25rem;
}

.build__designer-thumb {
  border-radius: 0.375rem;
  flex-shrink: 0;
  height: 4.375rem;
  overflow: hidden;
  width: 5.625rem;
}

.build__designer-thumb img {
  height: 100%;
  width: 100%;
}

.build__designer-card-cta {
  align-items: center;
  color: var(--gold-light);
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 0.625rem;
  padding-top: 0.5rem;
}

.build__experts-empty {
  color: var(--text-3);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  text-align: center;
}

.build__experts-empty-btn {
  margin: 0.75rem auto 0;
  max-width: 10rem;
}

/* ===== 哲学 ===== */
.build__manifesto {
  margin-top: 1.5rem;
  padding: 1rem 0.875rem;
}

.build__manifesto .h3 {
  display: block;
  margin-top: 0.375rem;
}

.build__manifesto-quote {
  color: var(--text-2);
  display: block;
  font-size: 0.8125rem;
  line-height: 1.75;
  margin-top: 0.625rem;
}

.build__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.875rem;
}

.build__pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
}

.build__pillar-icon {
  color: var(--gold-light);
  display: block;
  font-size: 0.8125rem;
}

.build__pillar-label {
  color: var(--cream);
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.build__pillar-desc {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
  margin-top: 0.1875rem;
}

/* ===== 时间线 ===== */
.build__timeline {
  margin-top: 0.5rem;
  padding-left: 0.25rem;
  position: relative;
}

.build__timeline-line {
  background: linear-gradient(180deg, var(--gold-light) 0%, rgba(212, 184, 122, 0.15) 100%);
  bottom: 0.75rem;
  left: 0.5625rem;
  position: absolute;
  top: 0.75rem;
  width: 1px;
}

.build__step {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  position: relative;
}

.build__step:last-child {
  margin-bottom: 0;
}

.build__step-dot {
  background: var(--void);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
  height: 0.625rem;
  margin-top: 0.875rem;
  width: 0.625rem;
  z-index: 1;
}

.build__step-card {
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: 1;
  padding: 0.75rem;
}

.build__step-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.build__step-num {
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
}

.build__step-days {
  color: var(--text-3);
  font-size: 0.625rem;
}

.build__step-title {
  color: var(--cream);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.build__step-desc {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  margin-top: 0.1875rem;
}

/* ===== 交付模式 ===== */
.build__roles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.build__role {
  align-items: flex-start;
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
}

.build__role-icon {
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.build__role-body {
  flex: 1;
  min-width: 0;
}

.build__role-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.build__role-title {
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 600;
}

.build__role-tag {
  background: var(--tag-gold-bg);
  border: 1px solid var(--tag-gold-border);
  border-radius: 0.25rem;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 0.5625rem;
  padding: 1px 0.3125rem;
  white-space: nowrap;
}

.build__role-desc {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* ===== 兜底联系 ===== */
.build__fallback {
  margin-top: 1.25rem;
  padding: 0.875rem;
}

.build__fallback-row {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.build__fallback-mark {
  flex-shrink: 0;
  height: 2.25rem;
  width: 2.25rem;
}

.build__fallback-title {
  color: var(--cream);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.build__fallback-hint {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.build__fallback-btn {
  margin-top: 0.75rem;
  width: 100%;
}

.build__spacer {
  height: 5rem;
}

/* ===== 三步条 ===== */
.build__steps {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.75rem 0.875rem;
}

.build__step-pill {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0.45;
}

.build__step-pill--on,
.build__step-pill--done {
  opacity: 1;
}

.build__step-pill-num {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-2);
  display: flex;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 1.375rem;
  justify-content: center;
  width: 1.375rem;
}

.build__step-pill--on .build__step-pill-num {
  background: rgba(212, 184, 122, 0.16);
  border-color: rgba(212, 184, 122, 0.45);
  color: var(--gold-light);
}

.build__step-pill--done .build__step-pill-num {
  background: rgba(76, 175, 80, 0.14);
  border-color: rgba(76, 175, 80, 0.35);
  color: #81c784;
}

.build__step-pill-label {
  color: var(--text-3);
  font-size: 0.625rem;
  text-align: center;
}

.build__step-pill--on .build__step-pill-label,
.build__step-pill--done .build__step-pill-label {
  color: var(--text-1);
}

.build__step-connector {
  background: var(--line);
  flex-shrink: 0;
  height: 1px;
  margin: 0 0.25rem;
  margin-bottom: 0.875rem;
  width: 1.25rem;
}

.build__spotlight--selected {
  border-color: rgba(212, 184, 122, 0.65);
  box-shadow: 0 0.5rem 1.5rem rgba(201, 169, 98, 0.18);
}

.build__spotlight-check {
  background: rgba(212, 184, 122, 0.18);
  border-radius: 0.25rem;
  color: var(--gold-light);
  font-size: 0.5625rem;
  font-weight: 700;
  margin-left: auto;
  padding: 0.125rem 0.375rem;
}

.build__spotlight-portfolio-scroll {
  margin-top: 0.75rem;
  width: 100%;
}

.build__designer-card--selected {
  border-color: rgba(212, 184, 122, 0.55);
  box-shadow: 0 0.375rem 1.125rem rgba(201, 169, 98, 0.12);
}

.build__designer-card-arrow {
  color: var(--text-3);
  font-size: 0.6875rem;
  font-weight: 500;
}

.build__tier-lock {
  background: rgba(212, 184, 122, 0.08);
  border: 1px dashed rgba(212, 184, 122, 0.35);
  border-radius: 0.5rem;
  color: var(--gold-light);
  font-size: 0.6875rem;
  margin-bottom: 0.625rem;
  padding: 0.5625rem 0.75rem;
  text-align: center;
}

.build__tier-card--dim {
  opacity: 0.72;
}

.build__tier-card--selected {
  border-color: rgba(212, 184, 122, 0.6);
  box-shadow: 0 0.375rem 1.25rem rgba(201, 169, 98, 0.14);
}

.build__tier-check {
  background: rgba(212, 184, 122, 0.16);
  border-radius: 0.25rem;
  color: var(--gold-light);
  float: right;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
}

.build__tier-card--custom {
  border-style: dashed;
  opacity: 1;
}

.build__tier-tag--custom {
  background: rgba(201, 169, 98, 0.12);
  color: #c9a962;
}

.build__tier-summary--custom {
  margin-top: 0.375rem;
}

.build__tier-cta--custom {
  border-top: 1px solid var(--line);
  color: #c9a962;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
}

.build__bar--ready {
  border-top-color: rgba(212, 184, 122, 0.35);
  box-shadow: 0 -0.25rem 1rem rgba(201, 169, 98, 0.1);
}

/* ===== 底部栏 ===== */
.build__bar {
  align-items: center;
  background: var(--bar-bg);
  border-top: 1px solid var(--bar-border);
  bottom: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  left: 0;
  padding: 0.4375rem var(--pad-x) calc(0.4375rem + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 50;
}

.build__bar-label {
  color: var(--cream);
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
}

.build__bar-hint {
  color: var(--text-3);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.125rem;
}

.build__bar-actions {
  display: flex;
  gap: 0.375rem;
}

.build__bar-btn {
  min-width: 4.25rem;
  padding: 0.5625rem 0.75rem;
}

/* ===== Light theme · 可读性 ===== */
html[data-theme="light"] .build .build__hero-copy::before {
  background: linear-gradient(180deg, transparent 0%, var(--void) 32%);
}

html[data-theme="light"] .build .build__featured-badge {
  background: rgba(26, 26, 26, 0.72);
  border-color: rgba(124, 182, 157, 0.55);
}

html[data-theme="light"] .build .build__hero-veil {
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0.15) 0%,
    rgba(250, 250, 248, 0.82) 55%,
    var(--void) 100%
  );
}

html[data-theme="light"] .build .build__hero-mesh {
  opacity: 0.55;
}

html[data-theme="light"] .build .build__hero-eyebrow {
  color: #7a6528;
  opacity: 1;
}

html[data-theme="light"] .build .build__hero-line {
  color: #1a1a1a;
}

html[data-theme="light"] .build .build__hero-line--gold {
  background: linear-gradient(135deg, #8a7340 0%, #c9a962 48%, #6b5624 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .build .build__hero-sub {
  color: rgba(26, 26, 26, 0.72);
}

html[data-theme="light"] .build .build__hero-stat-val {
  color: #1a1a1a;
}

html[data-theme="light"] .build .build__hero-stat-label {
  color: rgba(26, 26, 26, 0.58);
}

html[data-theme="light"] .build .build__collage-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.16);
}

html[data-theme="light"] .build .build__collage-shade {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

html[data-theme="light"] .build .build__experts-badge {
  background: rgba(26, 26, 26, 0.05);
  border-color: rgba(26, 26, 26, 0.12);
}

html[data-theme="light"] .build .build__experts-badge text:first-child {
  color: #1a1a1a;
}

html[data-theme="light"] .build .build__experts-badge-sub {
  color: rgba(26, 26, 26, 0.52);
}

html[data-theme="light"] .build .build__experts-lead {
  color: rgba(26, 26, 26, 0.62);
}

html[data-theme="light"] .build .build__dna-num {
  color: #8a7340;
}

html[data-theme="light"] .build .build__dna-title {
  color: #1a1a1a;
}

html[data-theme="light"] .build .build__case-industry,
html[data-theme="light"] .build .build__featured-industry {
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .build .build__case-name,
html[data-theme="light"] .build .build__case-tagline,
html[data-theme="light"] .build .build__featured-name,
html[data-theme="light"] .build .build__featured-tagline {
  color: #fff;
  text-shadow: 0 1px 0.375rem rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .build .build__featured-proof {
  color: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .build .build__spotlight {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.08) 0%, #fff 100%);
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .build .build__spotlight-label,
html[data-theme="light"] .build .build__spotlight-price,
html[data-theme="light"] .build .build__designer-price {
  color: #8a7340;
}

html[data-theme="light"] .build .build__spotlight-hook {
  color: rgba(26, 26, 26, 0.78);
}

html[data-theme="light"] .build .build__spotlight-foot {
  color: rgba(26, 26, 26, 0.48);
}

html[data-theme="light"] .build .build__dna-desc,
html[data-theme="light"] .build .build__manifesto-quote,
html[data-theme="light"] .build .build__pillar-desc {
  color: rgba(26, 26, 26, 0.62);
}

html[data-theme="light"] .build .build__role-tag {
  background: rgba(26, 26, 26, 0.07);
  border-color: rgba(26, 26, 26, 0.14);
  color: #5c4d28;
  font-weight: 600;
}

/* ===== 官方团队 + 三档 ===== */
.build__official-lead {
  margin-top: 0.25rem;
}

.build__official {
  background: var(--card-flat);
  border: 1px solid var(--line-strong);
  border-radius: 0.875rem;
  overflow: hidden;
  padding: 0.875rem;
  position: relative;
}

.build__official-glow {
  background: radial-gradient(circle at 20% 0%, rgba(201, 169, 98, 0.18), transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.build__official-top {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
  position: relative;
}

.build__official-badge {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 36%, var(--line));
  border-radius: 31.2188rem;
  color: var(--gold-light);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.1875rem 0.5rem;
}

.build__official-entity {
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  border-radius: 31.2188rem;
  color: var(--gold-light);
  font-size: 0.5625rem;
  padding: 0.1875rem 0.4375rem;
}

.build__official-body {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  position: relative;
}

.build__official-ava-wrap--company .build__official-ava,
.build__official-ava--company {
  border: 1px solid color-mix(in srgb, var(--gold) 42%, var(--line));
  border-radius: 0.5625rem;
}

.build__official-ava {
  height: 3.5rem;
  overflow: hidden;
  width: 3.5rem;
}

.build__official-ava img {
  height: 100%;
  width: 100%;
}

.build__official-ava--txt {
  align-items: center;
  background: rgba(0, 0, 0, 0.06);
  color: var(--gold-light);
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
}

.build__official-main {
  flex: 1;
  min-width: 0;
}

.build__official-name {
  color: var(--cream);
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
}

.build__official-lead-name {
  color: var(--gold-light);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.1875rem;
}

.build__official-title {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.25rem;
}

.build__official-hook {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text-2);
  display: -webkit-box;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.3125rem;
  overflow: hidden;
}

.build__official-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.4375rem;
}

.build__official-stats text {
  color: var(--text-3);
  font-size: 0.625rem;
}

.build__official-portfolio {
  display: grid;
  gap: 0.3125rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.625rem;
  position: relative;
}

.build__official-portfolio img {
  border-radius: 0.375rem;
  height: 3.75rem;
  width: 100%;
}

.build__official-cta {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  font-size: 0.8125rem;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 0.625rem;
  padding-top: 0.5625rem;
  position: relative;
}

.build__official-arrow {
  font-size: 1rem;
}

.build__official-fallback {
  padding: 1rem;
}

.build__tier-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.build__tier-card {
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.875rem;
}

.build__tier-card--hot {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  box-shadow: 0 0.375rem 1.25rem rgba(201, 169, 98, 0.12);
}

.build__tier-head {
  margin-bottom: 0.5rem;
}

.build__tier-tag {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border-radius: 31.2188rem;
  color: var(--gold-light);
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  padding: 0.125rem 0.375rem;
}

.build__tier-name {
  color: var(--cream);
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
}

.build__tier-price {
  align-items: baseline;
  display: flex;
  gap: 0.1875rem;
  margin-top: 0.3125rem;
}

.build__tier-price-val {
  color: var(--gold-light);
  font-size: 1.25rem;
  font-weight: 800;
}

.build__tier-price-unit {
  color: var(--text-3);
  font-size: 0.6875rem;
}

.build__tier-summary {
  color: var(--text-2);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.3125rem;
}

.build__tier-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.build__tier-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 31.2188rem;
  color: var(--text-2);
  font-size: 0.625rem;
  padding: 0.1875rem 0.4375rem;
}

.build__tier-bonus {
  color: var(--gold);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.4375rem;
}

.build__tier-cta {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  font-size: 0.8125rem;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 0.5625rem;
  padding-top: 0.5rem;
}

.build__butler {
  margin-top: 0.25rem;
  padding: 0.75rem 0.875rem;
}

.build__butler-row {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.build__butler-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.build__butler-text {
  flex: 1;
  min-width: 0;
}

.build__butler-title {
  color: var(--cream);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.build__butler-hint {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.1875rem;
}

.build__butler-go {
  color: var(--gold);
  font-size: 1rem;
}

html[data-theme="light"] .build .build__step-days {
  color: #8a7340;
  font-weight: 600;
}

/* ===== 全包承诺 ===== */
.build__promise {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 0.875rem;
}

.build__promise-icon {
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.build__promise-title {
  color: var(--cream);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.build__promise-sub {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* ===== 套餐卡片 ===== */
.build__pkg-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.build__pkg {
  background: var(--card-flat);
  border: 1px solid var(--line);
  border-radius: 0.875rem;
  overflow: hidden;
  padding: 0.875rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.build__pkg--hot {
  border-color: color-mix(in srgb, var(--gold) 42%, var(--line));
  box-shadow: 0 0.5rem 1.5rem rgba(201, 169, 98, 0.1);
}

.build__pkg--selected {
  border-color: rgba(212, 184, 122, 0.55);
  box-shadow: 0 0.625rem 1.75rem rgba(201, 169, 98, 0.16);
}

.build__pkg--custom {
  border-style: dashed;
  opacity: 0.92;
}

.build__pkg-head {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
}

.build__pkg-head-left {
  flex: 1;
  min-width: 0;
}

.build__pkg-tag {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border-radius: 31.2188rem;
  color: var(--gold-light);
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  padding: 0.125rem 0.4375rem;
}

.build__pkg-tag--custom {
  background: rgba(201, 169, 98, 0.14);
  color: #c9a962;
}

.build__pkg-mood {
  color: var(--eyebrow-violet);
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build__pkg-name {
  color: var(--cream);
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0.1875rem;
}

.build__pkg-aesthetic {
  color: var(--text-2);
  display: block;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 0.3125rem;
}

.build__pkg-price-col {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.build__pkg-price {
  color: var(--gold-light);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}

.build__pkg-price-unit {
  color: var(--text-3);
  font-size: 0.625rem;
  margin-top: 0.125rem;
}

.build__pkg-supervisor {
  align-items: center;
  background: rgba(212, 184, 122, 0.08);
  border-radius: 0.375rem;
  color: var(--text-2);
  display: flex;
  font-size: 0.6875rem;
  gap: 0.3125rem;
  margin-top: 0.625rem;
  padding: 0.4375rem 0.5625rem;
}

.build__pkg-supervisor-icon {
  color: var(--gold-light);
}

.build__pkg-hero-case {
  border-radius: 0.625rem;
  height: 11.25rem;
  margin-top: 0.75rem;
  overflow: hidden;
  position: relative;
}

.build__pkg-hero-case img {
  height: 100%;
  width: 100%;
}

.build__pkg-hero-shade {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
  inset: 0;
  position: absolute;
}

.build__pkg-hero-info {
  bottom: 0;
  left: 0;
  padding: 0.75rem;
  position: absolute;
  right: 0;
}

.build__pkg-hero-label {
  color: var(--cream);
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.build__pkg-hero-desc {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.1875rem;
}

.build__pkg-hero-by {
  color: var(--gold-light);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.3125rem;
}

.build__pkg-gallery {
  margin-top: 0.75rem;
}

.build__pkg-gallery-head {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.build__pkg-gallery-title {
  color: var(--cream);
  font-size: 0.8125rem;
  font-weight: 700;
}

.build__pkg-gallery-count {
  color: var(--text-3);
  font-size: 0.625rem;
}

.build__pkg-gallery-scroll {
  width: 100%;
}

.build__pkg-gallery-track {
  display: flex;
  gap: 0.4375rem;
  padding-bottom: 0.125rem;
}

.build__pkg-case {
  border-radius: 0.5rem;
  flex-shrink: 0;
  height: 6.25rem;
  overflow: hidden;
  position: relative;
  width: 8.75rem;
}

.build__pkg-case--lead {
  width: 10rem;
}

.build__pkg-case img {
  height: 100%;
  width: 100%;
}

.build__pkg-case-shade {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
  inset: 0;
  position: absolute;
}

.build__pkg-case-cap {
  bottom: 0;
  left: 0;
  padding: 0.4375rem;
  position: absolute;
  right: 0;
}

.build__pkg-case-label {
  color: var(--cream);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
}

.build__pkg-case-by {
  color: var(--text-3);
  display: block;
  font-size: 0.5625rem;
  margin-top: 0.125rem;
}

.build__pkg-designers {
  margin-top: 0.875rem;
}

.build__pkg-designers-label {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  margin-bottom: 0.4375rem;
}

.build__pkg-designer-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.build__pkg-designer {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.5625rem;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.5625rem;
}

.build__pkg-designer--on {
  background: rgba(212, 184, 122, 0.1);
  border-color: rgba(212, 184, 122, 0.45);
}

.build__pkg-designer-ava {
  border-radius: 0.4375rem;
  flex-shrink: 0;
  height: 2.5rem;
  overflow: hidden;
  width: 2.5rem;
}

.build__pkg-designer-ava img {
  height: 100%;
  width: 100%;
}

.build__pkg-designer-ava text {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.build__pkg-designer-meta {
  flex: 1;
  min-width: 0;
}

.build__pkg-designer-name {
  color: var(--cream);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.build__pkg-designer-title {
  color: var(--text-3);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.125rem;
}

.build__pkg-designer-stat {
  color: var(--text-2);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.1875rem;
}

.build__pkg-designer-check {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}

.build__pkg-deliver {
  margin-top: 0.75rem;
}

.build__pkg-deliver-label {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  margin-bottom: 0.375rem;
}

.build__pkg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.build__pkg-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 31.2188rem;
  color: var(--text-1);
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
}

.build__pkg-bonus {
  color: var(--gold-light);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.4375rem;
}

.build__pkg-scope-toggle {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.625rem;
}

.build__pkg-scope-toggle-label {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.build__pkg-scope-toggle-icon {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 300;
}

.build__pkg-scope {
  margin-top: 0.5rem;
}

.build__pkg-scope-group {
  margin-bottom: 0.5rem;
}

.build__pkg-scope-group-name {
  color: var(--cream);
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
}

.build__pkg-scope-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.build__pkg-scope-item {
  color: var(--text-2);
  font-size: 0.625rem;
  line-height: 1.45;
}

.build__pkg-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--gold-light);
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding: 0.6875rem 0.75rem;
}

.build__pkg-cta--ready {
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.22) 0%, rgba(184, 149, 106, 0.12) 100%);
  border-color: rgba(212, 184, 122, 0.45);
}

.build__pkg-cta--custom {
  border-color: rgba(201, 169, 98, 0.35);
  color: #c9a962;
  margin-top: 0.5rem;
}


/* ---- build-storefront.wxss ---- */
/* ===== 建站门面 · Storefront v2 ===== */
/* 仅为悬浮底栏留空：栏高约 3.75rem + wrap 0.5rem + safe-area（只算一次） */
.build--storefront .build__body {
  padding-bottom: calc(4.625rem + env(safe-area-inset-bottom));
}

.build--storefront .build__spacer {
  height: 0;
}

/* Hero */
.sf-hero {
  background: linear-gradient(165deg, #12100e 0%, #0a0908 100%);
  border: 1px solid rgba(232, 213, 168, 0.14);
  border-radius: 0.875rem;
  margin-top: 0.5rem;
  overflow: hidden;
  padding: 1.25rem 1rem 1.125rem;
  position: relative;
}

html[data-theme="light"] .build--storefront .sf-hero {
  background: linear-gradient(165deg, #fffefb 0%, #f5f2eb 100%);
  border-color: rgba(180, 150, 90, 0.22);
}

.sf-hero__glow {
  background: radial-gradient(circle at 90% 0%, rgba(201, 169, 98, 0.22) 0%, transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.sf-hero__brand {
  color: #c9a962;
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
}

.sf-hero__title {
  color: #faf6ef;
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.375rem;
  position: relative;
}

html[data-theme="light"] .build--storefront .sf-hero__title {
  color: #1a1510;
}

.sf-hero__sub {
  color: rgba(250, 246, 239, 0.62);
  display: block;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 0.4375rem;
  position: relative;
}

html[data-theme="light"] .build--storefront .sf-hero__sub {
  color: #666055;
}

.sf-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  margin-top: 0.875rem;
  position: relative;
}

.sf-hero__bullet {
  align-items: center;
  display: flex;
  gap: 0.4375rem;
}

.sf-hero__bullet-icon {
  color: #e8d5a8;
  flex-shrink: 0;
  font-size: 0.8125rem;
  width: 1.125rem;
}

.sf-hero__bullet-text {
  color: #ece5d8;
  font-size: 0.8125rem;
  font-weight: 500;
}

html[data-theme="light"] .build--storefront .sf-hero__bullet-text {
  color: #3d3830;
}

.sf-hero__trust {
  color: rgba(232, 213, 168, 0.75);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.75rem;
  position: relative;
}

html[data-theme="light"] .build--storefront .sf-hero__trust {
  color: #8a7340;
}

/* Section */
.sf-section__title {
  color: #faf6ef;
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.sf-section__sub {
  color: rgba(250, 246, 239, 0.5);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

html[data-theme="light"] .build--storefront .sf-section__title {
  color: #1a1510;
}

html[data-theme="light"] .build--storefront .sf-section__sub {
  color: #777066;
}

/* Trust strip */
.sf-trust {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.14) 0%, rgba(201, 169, 98, 0.04) 100%);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5625rem 0.75rem;
}

.sf-trust__text {
  color: #e8d5a8;
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-trust {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.12) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-color: rgba(180, 150, 90, 0.28);
}

html[data-theme="light"] .build--storefront .sf-trust__text {
  color: #7a6528;
}

/* Price anchor */
.sf-anchor {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(201, 169, 98, 0.35);
  border-radius: 0.4375rem;
  margin-top: 0.4375rem;
  padding: 0.5rem 0.6875rem;
}

.sf-anchor__text {
  color: rgba(250, 246, 239, 0.72);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-anchor {
  background: rgba(201, 169, 98, 0.06);
  border-color: rgba(180, 150, 90, 0.32);
}

html[data-theme="light"] .build--storefront .sf-anchor__text {
  color: #5c4e30;
}

/* Customer worries */
.sf-worries {
  margin-top: 0.625rem;
}

.sf-worries__title {
  color: rgba(250, 246, 239, 0.88);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.4375rem;
}

html[data-theme="light"] .build--storefront .sf-worries__title {
  color: #1a1510;
}

.sf-worries__grid {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sf-worry {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 213, 168, 0.16);
  border-radius: 0.5rem;
  padding: 0.5625rem 0.625rem;
}

html[data-theme="light"] .build--storefront .sf-worry {
  background: #fff;
  border-color: #ebe6dc;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}

.sf-worry__q {
  color: #e8d5a8;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
}

html[data-theme="light"] .build--storefront .sf-worry__q {
  color: #7a6528;
}

.sf-worry__a {
  color: rgba(250, 246, 239, 0.58);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

html[data-theme="light"] .build--storefront .sf-worry__a {
  color: #666055;
}

/* Include chips */
.sf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-bottom: 0.625rem;
}

.sf-chip {
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 31.2188rem;
  color: #e8d5a8;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}

html[data-theme="light"] .build--storefront .sf-chip {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(180, 150, 90, 0.25);
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-section__title {
  color: #1a1510;
}

/* 合作品牌 · logo 轮播 */
.sf-partners {
  margin: 0.125rem calc(-1 * var(--pad-x)) 0;
  padding: 0.625rem var(--pad-x) 0.375rem;
}

.sf-partners__head {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.sf-partners__title {
  color: rgba(250, 246, 239, 0.72);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sf-partners__sub {
  color: rgba(250, 246, 239, 0.35);
  font-size: 0.625rem;
}

.sf-partners__marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  overflow: hidden;
  width: 100%;
}

.sf-partners__runner {
  animation: sf-partners-scroll 28s linear infinite;
  display: flex;
  width: max-content;
}

.sf-partners__track {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1.125rem;
  padding-right: 1.125rem;
}

.sf-partners__item {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 2rem;
  justify-content: center;
  width: 4.375rem;
}

.sf-partners__img {
  display: block;
  height: 2rem;
  max-width: 4.375rem;
  width: 4.375rem;
}

@keyframes sf-partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

html[data-theme="light"] .build--storefront .sf-partners__title {
  color: #555;
}

html[data-theme="light"] .build--storefront .sf-partners__sub {
  color: #999;
}

.b2b--storefront .sf-partners__title {
  color: rgba(250, 246, 239, 0.72);
}

/* Tier deck — 滑动发现 · 末尾定制露出 */
.sf-tierdeck__hint {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  margin: 0.125rem var(--pad-x) 0;
}

.sf-tierdeck__hint-text {
  color: rgba(250, 246, 239, 0.42);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}

.sf-tierdeck__hint-tag {
  background: rgba(201, 169, 98, 0.14);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 31.2188rem;
  color: var(--gold-text, #c9a962);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.1875rem 0.4375rem;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__hint-text {
  color: #888;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__hint-tag {
  background: rgba(201, 169, 98, 0.1);
  color: #9a7b3c;
}

.b2b--storefront .sf-tierdeck__hint-tag {
  background: rgba(74, 140, 184, 0.12);
  border-color: rgba(74, 140, 184, 0.28);
  color: #6eb0d9;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__hint-tag {
  color: var(--b2b-accent-dark);
}

.sf-tier-nudge {
  align-items: center;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  position: absolute;
  right: calc(var(--pad-x) - 0.125rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.sf-tier-nudge__pill {
  align-items: center;
  animation: sf-nudge-pulse 1.6s ease-in-out infinite;
  background: linear-gradient(135deg, #e8d5a8 0%, #c9a962 100%);
  border-radius: 31.2188rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(201, 169, 98, 0.35);
  display: flex;
  gap: 1px;
  padding: 0.375rem 0.5625rem 0.375rem 0.5rem;
}

.sf-tier-nudge__label {
  color: #1a1510;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sf-tier-nudge__chev {
  color: #1a1510;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
}

.sf-tier-nudge--coach .sf-tier-nudge__pill {
  animation: sf-nudge-pulse-strong 1.2s ease-in-out infinite;
}

@keyframes sf-nudge-pulse {
  0%, 100% { opacity: 0.82; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(0.1875rem); }
}

@keyframes sf-nudge-pulse-strong {
  0%, 100% { box-shadow: 0 0.1875rem 0.625rem rgba(201, 169, 98, 0.35); transform: translateX(0); }
  50% { box-shadow: 0 0.25rem 0.875rem rgba(201, 169, 98, 0.55); transform: translateX(0.25rem); }
}

.b2b--storefront .sf-tier-nudge__pill {
  background: linear-gradient(135deg, #8ec5e8 0%, #4a8cb8 100%);
  box-shadow: 0 0.1875rem 0.625rem rgba(74, 140, 184, 0.32);
}

.b2b--storefront .sf-tier-nudge__label,
.b2b--storefront .sf-tier-nudge__chev {
  color: #fff;
}

.sf-tierdeck-wrap--peek .sf-tierdeck__fade--right {
  opacity: 0.45;
  width: 1rem;
}

.sf-tierdeck-wrap--peek .sf-tierdeck__card--custom:not(.sf-tierdeck__card--on) {
  border-color: rgba(201, 169, 98, 0.42);
  box-shadow: 0.25rem 0 0.75rem rgba(201, 169, 98, 0.12);
}

.b2b--storefront .sf-tierdeck-wrap--peek .sf-tierdeck__card--custom:not(.sf-tierdeck__card--on) {
  border-color: rgba(74, 140, 184, 0.42);
  box-shadow: 0.25rem 0 0.75rem rgba(74, 140, 184, 0.12);
}

.sf-tierdeck-wrap {
  position: relative;
}

/* Tier deck — premium pricing picker */
.sf-tierdeck {
  margin: 0 calc(-1 * var(--pad-x));
  padding: 0.25rem 0 0.25rem;
  position: relative;
}

.sf-tierdeck__fade {
  bottom: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 1.75rem;
  z-index: 2;
}

.sf-tierdeck__fade--left {
  background: linear-gradient(90deg, rgba(14, 12, 10, 0.95) 0%, transparent 100%);
  left: 0;
}

.sf-tierdeck__fade--right {
  background: linear-gradient(270deg, rgba(14, 12, 10, 0.72) 0%, transparent 100%);
  right: 0;
  width: 1.5rem;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__fade--left {
  background: linear-gradient(90deg, rgba(248, 247, 245, 0.98) 0%, transparent 100%);
}

html[data-theme="light"] .build--storefront .sf-tierdeck__fade--right {
  background: linear-gradient(270deg, rgba(248, 247, 245, 0.98) 0%, transparent 100%);
}

.sf-tierdeck__glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.16) 0%, transparent 68%);
  height: 6.875rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.sf-tierdeck__scroll {
  position: relative;
  width: 100%;
  z-index: 1;
}

.sf-tierdeck__track {
  display: inline-flex;
  gap: 0.5625rem;
  padding: 0.5rem var(--pad-x) 0.875rem;
  white-space: nowrap;
}

.sf-tierdeck__card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 6.1875rem;
  flex-direction: column;
  min-height: 7.75rem;
  overflow: hidden;
  padding: 0.6875rem 0.5625rem 0.5625rem;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.28s ease, border-color 0.22s ease;
  vertical-align: top;
  width: 6.625rem;
}

.sf-tierdeck__card--custom {
  align-items: center;
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(201, 169, 98, 0.38);
  border-style: dashed;
  flex: 0 0 5.875rem;
  justify-content: center;
  text-align: center;
  width: 5.875rem;
}

.sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) {
  border-color: rgba(201, 169, 98, 0.38);
  box-shadow: 0 0.3125rem 1rem rgba(201, 169, 98, 0.14);
}

.sf-tierdeck__card--on {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.28) 0%, rgba(201, 169, 98, 0.08) 42%, rgba(16, 14, 12, 0.96) 100%);
  border-color: rgba(232, 213, 168, 0.72);
  box-shadow:
    0 0.6875rem 1.625rem rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(201, 169, 98, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: scale(1.06) translateY(-0.25rem);
  z-index: 2;
}

.sf-tierdeck__card--custom.sf-tierdeck__card--on {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.24) 0%, rgba(201, 169, 98, 0.06) 100%);
}

.sf-tierdeck__wm {
  color: rgba(201, 169, 98, 0.07);
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: -0.25rem;
  top: -0.5rem;
  z-index: 0;
}

.sf-tierdeck__top {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__idx {
  color: rgba(201, 169, 98, 0.62);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sf-tierdeck__tag {
  background: rgba(26, 18, 8, 0.88);
  border-radius: 31.2188rem;
  color: #e8d5a8;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
}

.sf-tierdeck__card--on .sf-tierdeck__tag {
  background: #1a1208;
}

.sf-tierdeck__mood {
  color: rgba(232, 213, 168, 0.78);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  margin-top: 0.1875rem;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__price {
  align-items: flex-start;
  display: flex;
  line-height: 1;
  margin-top: 0.4375rem;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__yen {
  color: #e8d5a8;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-right: 1px;
  margin-top: 0.3125rem;
}

.sf-tierdeck__num {
  color: #fff8e7;
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sf-tierdeck__card--on .sf-tierdeck__num {
  text-shadow: 0 0.1875rem 0.625rem rgba(201, 169, 98, 0.35);
}

.sf-tierdeck__name {
  color: rgba(250, 246, 239, 0.92);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.3125rem;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__who {
  color: rgba(250, 246, 239, 0.44);
  font-size: 0.5625rem;
  line-height: 1.35;
  margin-top: 0.25rem;
  position: relative;
  white-space: normal;
  z-index: 1;
}

.sf-tierdeck__who--custom {
  margin-top: 0.3125rem;
}

.sf-tierdeck__custom-mark {
  height: 2.125rem;
  margin-bottom: 0.3125rem;
  position: relative;
  width: 2.125rem;
  z-index: 1;
}

.sf-tierdeck__custom-mark img {
  height: 100%;
  width: 100%;
}

.sf-tierdeck__custom-name {
  color: rgba(250, 246, 239, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__custom-quote {
  color: #e8d5a8;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-top: 0.1875rem;
  position: relative;
  z-index: 1;
}

.sf-tierdeck__shine {
  animation: sf-tier-shine 3.2s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.09) 50%, transparent 62%);
  height: 200%;
  left: -50%;
  pointer-events: none;
  position: absolute;
  top: -50%;
  width: 200%;
}

.sf-tierdeck__ring {
  border: 1px solid rgba(232, 213, 168, 0.45);
  border-radius: 1rem;
  inset: -0.125rem;
  pointer-events: none;
  position: absolute;
}

@keyframes sf-tier-shine {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-28%) rotate(18deg);
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 1;
    transform: translateX(28%) rotate(18deg);
  }
}

html[data-theme="light"] .build--storefront .sf-tierdeck__card {
  background: linear-gradient(165deg, #fff 0%, #faf8f4 100%);
  border-color: #e8e4dc;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .build--storefront .sf-tierdeck__card--custom {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.08) 0%, #fff 100%);
  border-color: rgba(180, 150, 90, 0.42);
}

html[data-theme="light"] .build--storefront .sf-tierdeck__card--on {
  background: linear-gradient(165deg, #f5eacc 0%, #e8d5a8 38%, #fff 100%);
  border-color: #c9a962;
  box-shadow: 0 0.5625rem 1.375rem rgba(180, 150, 90, 0.22);
}

html[data-theme="light"] .build--storefront .sf-tierdeck__wm {
  color: rgba(180, 150, 90, 0.08);
}

html[data-theme="light"] .build--storefront .sf-tierdeck__idx {
  color: #9a8450;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__mood {
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__yen,
html[data-theme="light"] .build--storefront .sf-tierdeck__num {
  color: #1a1208;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__card--on .sf-tierdeck__num {
  text-shadow: none;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__name,
html[data-theme="light"] .build--storefront .sf-tierdeck__custom-name {
  color: #1a1510;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__who {
  color: #888;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__custom-quote {
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-tierdeck__glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.12) 0%, transparent 68%);
}

/* Legacy tier tabs — kept for reference pages */
.sf-tabs__scroll {
  margin: 0 calc(-1 * var(--pad-x));
  width: calc(100% + 2 * var(--pad-x));
}

.sf-tabs {
  display: inline-flex;
  gap: 0.375rem;
  padding: 0.125rem var(--pad-x) 0;
  white-space: nowrap;
}

.sf-tab {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  display: inline-flex;
  flex: 0 0 5.25rem;
  flex-direction: column;
  justify-content: center;
  min-height: 4.625rem;
  padding: 0.625rem 0.25rem 0.5rem;
  position: relative;
  transition: all 0.2s ease;
  vertical-align: top;
  width: 5.25rem;
}

.sf-tab--custom:not(.sf-tab--on) {
  background: rgba(201, 169, 98, 0.05);
  border-color: rgba(201, 169, 98, 0.38);
  border-style: dashed;
}

html[data-theme="light"] .build--storefront .sf-tab--custom:not(.sf-tab--on) {
  background: rgba(201, 169, 98, 0.04);
  border-color: rgba(180, 150, 90, 0.42);
}

html[data-theme="light"] .build--storefront .sf-tab {
  background: #fff;
  border-color: #e8e4dc;
}

.sf-tab--on {
  background: linear-gradient(180deg, #f0e2c4 0%, #c9a962 100%);
  border-color: #e8d5a8;
  box-shadow: 0 0.25rem 0.875rem rgba(201, 169, 98, 0.35);
}

.sf-tab--on .sf-tab__name,
.sf-tab--on .sf-tab__price {
  color: #1a1208;
}

.sf-tab--on .sf-tab__price {
  font-size: 1.0625rem;
}

.sf-tab--hot:not(.sf-tab--on) {
  border-color: rgba(201, 169, 98, 0.35);
}

.sf-tab__tag {
  background: rgba(26, 18, 8, 0.85);
  border-radius: 0.1875rem;
  color: #e8d5a8;
  font-size: 0.5rem;
  font-weight: 700;
  left: 50%;
  padding: 1px 0.3125rem;
  position: absolute;
  top: -0.3125rem;
  transform: translateX(-50%);
}

.sf-tab--on .sf-tab__tag {
  background: #1a1208;
  color: #e8d5a8;
}

.sf-tab__name {
  color: rgba(250, 246, 239, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
}

html[data-theme="light"] .build--storefront .sf-tab__name {
  color: #444;
}

.sf-tab__price {
  color: #fff4d6;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 0.25rem;
  text-shadow: 0 1px 0.25rem rgba(0, 0, 0, 0.35);
}

.sf-tab:not(.sf-tab--on) .sf-tab__price {
  color: #f5e6bc;
}

html[data-theme="light"] .build--storefront .sf-tab:not(.sf-tab--on) .sf-tab__price {
  color: #1a1208;
  text-shadow: none;
}

html[data-theme="light"] .build--storefront .sf-tab--on .sf-tab__price {
  color: #1a1208;
  font-size: 1.0625rem;
  text-shadow: none;
}

.sf-tab--on .sf-tab__price {
  color: #1a1208;
  font-size: 1.0625rem;
  text-shadow: none;
}

.sf-tab__who {
  color: rgba(250, 246, 239, 0.42);
  font-size: 0.5625rem;
  line-height: 1.3;
  margin-top: 0.25rem;
  text-align: center;
}

.sf-tab--on .sf-tab__who {
  color: rgba(26, 18, 8, 0.62);
}

.sf-tab__price--quote {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0;
}

.sf-tab--on .sf-tab__price--quote {
  font-size: 0.8125rem !important;
}

html[data-theme="light"] .build--storefront .sf-tab__who {
  color: #999;
}

html[data-theme="light"] .build--storefront .sf-tab--on .sf-tab__who {
  color: rgba(26, 18, 8, 0.58);
}

/* Panel spotlight */
.sf-spotlight {
  border-radius: 0.625rem;
  height: 10rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  position: relative;
}

.sf-spotlight img {
  height: 100%;
  width: 100%;
}

.sf-spotlight__shade {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
  inset: 0;
  position: absolute;
}

.sf-spotlight__meta {
  bottom: 0;
  left: 0;
  padding: 0.75rem;
  position: absolute;
  right: 0;
}

.sf-spotlight__tag {
  background: rgba(201, 169, 98, 0.9);
  border-radius: 0.1875rem;
  color: #1a1208;
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
}

.sf-spotlight__label {
  color: #fff;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.3125rem;
  text-shadow: 0 1px 0.375rem rgba(0, 0, 0, 0.4);
}

.sf-no-designer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(201, 169, 98, 0.35);
  border-radius: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}

.sf-no-designer text:first-child {
  color: rgba(250, 246, 239, 0.55);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
}

.sf-no-designer__link {
  color: #c9a962;
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.375rem;
}

html[data-theme="light"] .build--storefront .sf-no-designer text:first-child {
  color: #777;
}

/* Guarantee */
.sf-guarantee {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
  border-color: rgba(201, 169, 98, 0.28);
  margin-top: 0.625rem;
  padding: 0.75rem 0.875rem;
}

.sf-guarantee__title {
  color: #e8d5a8;
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
}

.sf-guarantee__desc {
  color: rgba(250, 246, 239, 0.62);
  display: block;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 0.3125rem;
}

html[data-theme="light"] .build--storefront .sf-guarantee {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, #fff 100%);
  border-color: rgba(180, 150, 90, 0.22);
}

html[data-theme="light"] .build--storefront .sf-guarantee__title {
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-guarantee__desc {
  color: #666;
}

/* Panel */
.sf-panel {
  background: #141210;
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: 0.75rem;
  margin-top: 0.625rem;
  padding: 0.875rem;
}

html[data-theme="light"] .build--storefront .sf-panel {
  background: #fff;
  border-color: #e8e4dc;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.04);
}

.sf-panel__head {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.sf-panel__head-left {
  flex: 1;
  min-width: 0;
}

.sf-panel__name {
  color: #faf6ef;
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
}

html[data-theme="light"] .build--storefront .sf-panel__name {
  color: #1a1510;
}

.sf-panel__pitch {
  color: rgba(250, 246, 239, 0.55);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

html[data-theme="light"] .build--storefront .sf-panel__pitch {
  color: #777066;
}

.sf-panel__price-box {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.25rem;
  padding: 0.125rem 0 0;
}

.sf-panel__price {
  color: #fff0cc;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

html[data-theme="light"] .build--storefront .sf-panel__price {
  color: #1a1208;
}

.sf-panel__price-tag {
  background: rgba(201, 169, 98, 0.16);
  border-radius: 0.25rem;
  color: rgba(232, 213, 168, 0.95);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.1875rem 0.4375rem;
}

html[data-theme="light"] .build--storefront .sf-panel__price-tag {
  background: rgba(201, 169, 98, 0.1);
  color: #8a7340;
}

.sf-label {
  color: rgba(250, 246, 239, 0.45);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 0.4375rem;
  margin-top: 0.875rem;
}

.sf-label-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  justify-content: space-between;
  margin-bottom: 0.4375rem;
  margin-top: 0.875rem;
}

.sf-label-row .sf-label {
  margin-bottom: 0;
  margin-top: 0;
}

.sf-label-hint {
  color: rgba(250, 246, 239, 0.35);
  font-size: 0.625rem;
  font-weight: 500;
}

html[data-theme="light"] .build--storefront .sf-label-hint {
  color: #999;
}

html[data-theme="light"] .build--storefront .sf-label {
  color: #999;
}

/* Cases */
.sf-cases__scroll {
  width: 100%;
}

.sf-cases__track {
  display: flex;
  gap: 0.4375rem;
}

.sf-case {
  border-radius: 0.5rem;
  flex-shrink: 0;
  height: 6.875rem;
  overflow: hidden;
  position: relative;
  width: 9.375rem;
}

.sf-case img {
  height: 100%;
  width: 100%;
}

.sf-case__shade {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
  inset: 0;
  position: absolute;
}

.sf-case__play,
.sf-spotlight__play {
  align-items: center;
  background: rgba(201, 169, 98, 0.92);
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.28);
  color: #fff;
  display: flex;
  font-size: 0.6875rem;
  height: 1.75rem;
  justify-content: center;
  padding-left: 0.125rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 1.75rem;
  z-index: 2;
}

.sf-spotlight__play {
  height: 2.25rem;
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  font-size: 0.875rem;
}

.sf-case__label {
  bottom: 0.4375rem;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  left: 0.4375rem;
  position: absolute;
  right: 0.4375rem;
}

.sf-case__by {
  bottom: 1.3125rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.5625rem;
  left: 0.4375rem;
  position: absolute;
}

/* 该档设计团队 · 展示不选择 */
.sf-tier-team {
  margin-top: 0.75rem;
}

.sf-tier-team__scroll {
  width: 100%;
}

.sf-tier-team__track {
  display: flex;
  gap: 0.4375rem;
  padding: 0.125rem 1px 0.25rem;
}

.sf-tier-team__member {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0.5rem 0.5625rem 0.4375rem;
  width: 6.25rem;
}

html[data-theme="light"] .build--storefront .sf-tier-team__member {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

.sf-tier-team__ava {
  border-radius: 50%;
  height: 1.75rem;
  overflow: hidden;
  width: 1.75rem;
}

.sf-tier-team__ava img {
  height: 100%;
  width: 100%;
}

.sf-tier-team__ava text {
  align-items: center;
  background: rgba(201, 169, 98, 0.18);
  color: #e8d5a8;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.sf-tier-team__name {
  color: var(--text-1);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.375rem;
}

.sf-tier-team__role {
  color: var(--text-3);
  display: block;
  font-size: 0.5625rem;
  line-height: 1.4;
  margin-top: 0.125rem;
}

.sf-tier-team__member--link:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.sf-tier-team__go {
  color: rgba(201, 169, 98, 0.82);
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}

html[data-theme="light"] .build--storefront .sf-tier-team__go {
  color: #8a7340;
}

.sf-tier-team__foot {
  color: rgba(201, 169, 98, 0.72);
  display: block;
  font-size: 0.625rem;
  line-height: 1.45;
  margin-top: 0.4375rem;
}

html[data-theme="light"] .build--storefront .sf-tier-team__foot {
  color: #8a7340;
}

.sf-bar__ava--team {
  align-items: center;
  display: flex;
  height: 1.75rem;
  justify-content: center;
  overflow: visible;
  width: 2.25rem;
}

.sf-bar__team-stack {
  display: flex;
  height: 1.375rem;
  position: relative;
  width: 2.25rem;
}

.sf-bar__team-dot {
  border: 1px solid rgba(14, 12, 10, 0.92);
  border-radius: 50%;
  height: 1.125rem;
  overflow: hidden;
  position: absolute;
  top: 0.125rem;
  width: 1.125rem;
}

.sf-bar__team-dot:nth-child(1) { left: 0; z-index: 3; }
.sf-bar__team-dot:nth-child(2) { left: 0.5625rem; z-index: 2; }
.sf-bar__team-dot:nth-child(3) { left: 1.125rem; z-index: 1; }

.sf-bar__team-dot img,
.sf-bar__team-dot text {
  display: block;
  height: 100%;
  width: 100%;
}

.sf-bar__team-dot text {
  align-items: center;
  background: rgba(201, 169, 98, 0.22);
  color: #e8d5a8;
  display: flex;
  font-size: 0.5625rem;
  font-weight: 700;
  justify-content: center;
}

html[data-theme="light"] .build--storefront .sf-bar__team-dot {
  border-color: #fff;
}

/* Designers grid — 真机双列（flex+view，避免 grid/text 兼容问题） */
.sf-designers__grid {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.sf-designers__grid .sf-designer {
  flex: 0 0 48%;
  margin-bottom: 0.4375rem;
  max-width: 48%;
  width: 48%;
}

.sf-designer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  box-sizing: border-box;
  min-width: 0;
  padding: 0.625rem 0.5rem;
  position: relative;
  text-align: center;
  width: 100%;
}

html[data-theme="light"] .build--storefront .sf-designer {
  background: #faf9f7;
  border-color: #ece8e0;
}

.sf-designer--on {
  background: rgba(201, 169, 98, 0.12);
  border-color: #c9a962;
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.35);
}

.sf-designer__ava {
  border: 1px solid rgba(232, 213, 168, 0.35);
  border-radius: 50%;
  height: 2.75rem;
  margin: 0 auto;
  overflow: hidden;
  width: 2.75rem;
}

.sf-designer__ava img {
  height: 100%;
  width: 100%;
}

.sf-designer__ava text {
  align-items: center;
  background: #2a2620;
  color: #e8d5a8;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
}

.sf-designer__name {
  color: #faf6ef;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.sf-designer__meta {
  margin-top: 0.375rem;
  min-width: 0;
  width: 100%;
}

html[data-theme="light"] .build--storefront .sf-designer__name {
  color: #1a1510;
}

.sf-designer__title {
  color: rgba(250, 246, 239, 0.45);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

html[data-theme="light"] .build--storefront .sf-designer__title {
  color: #999;
}

.sf-designer__check {
  align-items: center;
  background: #c9a962;
  border-radius: 50%;
  color: #1a1208;
  display: flex;
  font-size: 0.625rem;
  font-weight: 800;
  height: 1.125rem;
  justify-content: center;
  position: absolute;
  right: 0.375rem;
  top: 0.375rem;
  width: 1.125rem;
}

.sf-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.sf-highlight {
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.6875rem;
  line-height: 1.45;
}

html[data-theme="light"] .build--storefront .sf-highlight {
  color: #555;
}

.sf-bonus {
  color: #c9a962;
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.375rem;
}

/* Include */
/* Client prep — you bring / we deliver */
.sf-prep {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 0.875rem;
  margin-top: 0.25rem;
  overflow: hidden;
  padding: 0.875rem 0.75rem 0.75rem;
  position: relative;
}

.sf-prep__head {
  margin-bottom: 0.625rem;
}

.sf-prep__anchor {
  background: rgba(201, 169, 98, 0.1);
  border-radius: 0.4375rem;
  margin-bottom: 0.6875rem;
  padding: 0.5rem 0.625rem;
}

.sf-prep__anchor-text {
  color: rgba(232, 213, 168, 0.92);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-prep__anchor {
  background: rgba(201, 169, 98, 0.08);
}

html[data-theme="light"] .build--storefront .sf-prep__anchor-text {
  color: #7a6528;
}

.sf-prep__eyebrow {
  color: rgba(201, 169, 98, 0.75);
  display: block;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.sf-prep__title {
  color: #faf6ef;
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 0.25rem;
}

.sf-prep__sub {
  color: rgba(250, 246, 239, 0.52);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

.sf-prep__you {
  display: flex;
  gap: 0.4375rem;
}

.sf-prep__item {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  flex: 1;
  min-width: 0;
  padding: 0.5625rem 0.5rem 0.5rem;
}

.sf-prep__item-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3125rem;
}

.sf-prep__step {
  color: rgba(201, 169, 98, 0.55);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sf-prep__icon {
  color: #e8d5a8;
  font-size: 0.875rem;
  line-height: 1;
}

.sf-prep__item-title {
  color: #faf6ef;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.sf-prep__item-desc {
  color: #e8d5a8;
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0.1875rem;
}

.sf-prep__item-note {
  color: rgba(250, 246, 239, 0.42);
  display: block;
  font-size: 0.5625rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.sf-prep__split {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  margin: 0.6875rem 0 0.5rem;
}

.sf-prep__split-line {
  background: rgba(201, 169, 98, 0.22);
  flex: 1;
  height: 1px;
}

.sf-prep__split-label {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sf-prep__all {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.sf-prep__all-chip {
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 31.2188rem;
  color: rgba(250, 246, 239, 0.78);
  font-size: 0.625rem;
  line-height: 1.3;
  padding: 0.25rem 0.5rem;
}

.sf-prep__foot {
  color: rgba(250, 246, 239, 0.38);
  display: block;
  font-size: 0.5625rem;
  line-height: 1.45;
  margin-top: 0.5rem;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-prep {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.06) 0%, #fff 100%);
  border-color: rgba(180, 150, 90, 0.22);
}

html[data-theme="light"] .build--storefront .sf-prep__title {
  color: #1a1510;
}

html[data-theme="light"] .build--storefront .sf-prep__sub {
  color: #777;
}

html[data-theme="light"] .build--storefront .sf-prep__item {
  background: #faf8f4;
  border-color: #ece8e0;
}

html[data-theme="light"] .build--storefront .sf-prep__item-title {
  color: #1a1510;
}

html[data-theme="light"] .build--storefront .sf-prep__step {
  color: #8a7340;
}

html[data-theme="light"] .build--storefront .sf-prep__icon {
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-prep__item-desc {
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-prep__item-note {
  color: #999;
}

html[data-theme="light"] .build--storefront .sf-prep__all-chip {
  background: rgba(201, 169, 98, 0.08);
  color: #555;
}

html[data-theme="light"] .build--storefront .sf-prep__foot {
  color: #999;
}

.sf-include {
  margin-top: 0.625rem;
  padding: 0.75rem;
}

.sf-include__head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.sf-include__head-main {
  flex: 1;
  min-width: 0;
}

.sf-include__title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.sf-include__title {
  color: var(--cream);
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
}

.sf-include__badge {
  background: rgba(201, 169, 98, 0.16);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 31.2188rem;
  color: #e8d5a8;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
}

html[data-theme="light"] .build--storefront .sf-include__badge {
  background: rgba(201, 169, 98, 0.12);
  color: #7a6528;
}

.sf-include__hint {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

.sf-include__toggle {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  padding-left: 0.5rem;
}

.sf-include__preview {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.4375rem;
}

.sf-include__preview-line {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  padding: 0.125rem 0;
}

.sf-include__preview-more {
  color: #c9a962;
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.3125rem;
  padding: 0.25rem 0;
}

.sf-include__body {
  border-top: 1px solid var(--line);
  margin-top: 0.625rem;
  padding-top: 0.5rem;
}

.sf-include__group {
  margin-bottom: 0.625rem;
}

.sf-include__group-name {
  background: rgba(201, 169, 98, 0.08);
  border-left: 0.125rem solid #c9a962;
  color: var(--cream);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  padding: 0.1875rem 0 0.1875rem 0.375rem;
}

html[data-theme="light"] .build--storefront .sf-include__group-name {
  color: #1a1510;
}

.sf-include__item {
  box-sizing: border-box;
  min-width: 0;
  padding: 0.1562rem 0 0.1562rem 0.25rem;
}

.sf-include__item-text {
  color: var(--text-2);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.55;
  word-break: break-word;
}

.sf-include__foot {
  background: rgba(201, 169, 98, 0.08);
  border-radius: 0.375rem;
  color: #c9a962;
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.25rem;
  padding: 0.5rem 0.5625rem;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-include__foot {
  background: rgba(201, 169, 98, 0.1);
  color: #7a6528;
}

/* Team */
.sf-team {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.625rem;
  padding: 0.75rem;
}

.sf-team__item {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}

.sf-team__icon {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.2;
}

.sf-team__name {
  color: var(--cream);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
}

.sf-team__desc {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.125rem;
}

/* Flow */
.sf-flow {
  display: flex;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

.sf-flow__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  flex: 1;
  padding: 0.5rem 0.3125rem;
  text-align: center;
}

.sf-flow__num {
  color: #c9a962;
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
}

.sf-flow__title {
  color: var(--cream);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.1875rem;
}

.sf-flow__days {
  color: var(--text-3);
  display: block;
  font-size: 0.5625rem;
  margin-top: 0.125rem;
}

/* Custom entry banner */
.sf-custom-banner {
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.14) 0%, rgba(201, 169, 98, 0.04) 100%);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: 0.75rem;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.75rem 0.625rem;
}

html[data-theme="light"] .build--storefront .sf-custom-banner {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(255, 254, 251, 1) 100%);
  border-color: rgba(180, 150, 90, 0.28);
}

.sf-custom-banner__badge {
  align-items: center;
  background: rgba(201, 169, 98, 0.18);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 0.375rem;
  color: #e8d5a8;
  display: flex;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.sf-custom-banner__badge--logo {
  background: rgba(201, 169, 98, 0.12);
  border-radius: 0.5625rem;
  padding: 0.3125rem;
}

.sf-custom-banner__badge--logo img {
  height: 100%;
  width: 100%;
}

html[data-theme="light"] .build--storefront .sf-custom-banner__badge {
  background: rgba(201, 169, 98, 0.12);
  color: #7a6528;
}

html[data-theme="light"] .build--storefront .sf-custom-banner__badge--logo {
  background: rgba(201, 169, 98, 0.08);
}

.sf-custom-banner__body {
  flex: 1;
  min-width: 0;
}

.sf-custom-banner__title {
  color: #faf6ef;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

html[data-theme="light"] .build--storefront .sf-custom-banner__title {
  color: #1a1510;
}

.sf-custom-banner__desc {
  color: rgba(250, 246, 239, 0.52);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.1875rem;
}

html[data-theme="light"] .build--storefront .sf-custom-banner__desc {
  color: #777;
}

.sf-custom-banner__cta {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

html[data-theme="light"] .build--storefront .sf-custom-banner__cta {
  color: #8a7340;
}

/* Custom tier panel */
.sf-panel--custom {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 0.75rem;
  margin-top: 0.625rem;
  padding: 1rem 0.875rem;
}

html[data-theme="light"] .build--storefront .sf-panel--custom {
  background: linear-gradient(165deg, #fffefb 0%, #f8f4eb 100%);
  border-color: rgba(180, 150, 90, 0.28);
}

.sf-custom-panel__eyebrow {
  color: #c9a962;
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sf-custom-panel__title {
  color: #faf6ef;
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.3125rem;
}

html[data-theme="light"] .build--storefront .sf-custom-panel__title {
  color: #1a1510;
}

.sf-custom-panel__headline {
  color: #e8d5a8;
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

html[data-theme="light"] .build--storefront .sf-custom-panel__headline {
  color: #8a7340;
}

.sf-custom-panel__desc {
  color: var(--text-3);
  display: block;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 0.4375rem;
}

.sf-custom-panel__list {
  margin-top: 0.75rem;
}

.sf-custom-panel__item {
  align-items: flex-start;
  display: flex;
  gap: 0.375rem;
  margin-top: 0.4375rem;
}

.sf-custom-panel__item:first-child {
  margin-top: 0;
}

.sf-custom-panel__check {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.sf-custom-panel__line {
  color: rgba(250, 246, 239, 0.78);
  flex: 1;
  font-size: 0.75rem;
  line-height: 1.5;
}

html[data-theme="light"] .build--storefront .sf-custom-panel__line {
  color: #444;
}

.sf-custom-panel__cta {
  align-items: center;
  background: linear-gradient(135deg, #f0e2c4 0%, #c9a962 100%);
  border-radius: 31.2188rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0.875rem;
  min-height: 3rem;
  padding: 0.5rem 1rem;
}

.sf-custom-panel__cta-main {
  color: #1a1208;
  font-size: 0.9375rem;
  font-weight: 800;
}

.sf-custom-panel__cta-sub {
  color: rgba(26, 18, 8, 0.62);
  font-size: 0.625rem;
  margin-top: 0.125rem;
}

.sf-custom-panel__foot {
  color: var(--text-3);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Custom (legacy) */
.sf-custom {
  background: rgba(201, 169, 98, 0.06);
  border: 1px dashed rgba(201, 169, 98, 0.35);
  border-radius: 0.625rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
}

html[data-theme="light"] .build--storefront .sf-custom {
  background: rgba(201, 169, 98, 0.05);
  border-color: rgba(180, 150, 90, 0.32);
}

.sf-custom__name {
  color: #e8d5a8;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

html[data-theme="light"] .build--storefront .sf-custom__name {
  color: #7a6528;
}

.sf-custom__desc {
  color: var(--text-3);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.sf-custom__link {
  color: #c9a962;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.4375rem;
}

html[data-theme="light"] .build--storefront .sf-custom__link {
  color: #8a7340;
}

/* Bottom bar */
.sf-bar {
  align-items: center;
  background: #0e0d0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 0;
  box-sizing: border-box;
  display: flex;
  gap: 0.5rem;
  left: 0;
  padding: 0.5rem var(--pad-x) calc(0.5rem + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 50;
}

html[data-theme="light"] .build--storefront .sf-bar {
  background: #fffefb;
  border-top-color: #ece8e0;
}

.sf-bar--ready {
  border-top-color: rgba(201, 169, 98, 0.4);
}

.sf-bar__left {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
}

.sf-bar__ava {
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 50%;
  flex-shrink: 0;
  height: 2.25rem;
  overflow: hidden;
  width: 2.25rem;
}

.sf-bar__ava img {
  height: 100%;
  width: 100%;
}

.sf-bar__ava text {
  align-items: center;
  background: #2a2620;
  color: #e8d5a8;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
}

html[data-theme="light"] .build--storefront .sf-bar__ava text {
  background: #f5f2eb;
  color: #7a6528;
}

.sf-bar--ready .sf-bar__ava {
  border-color: #c9a962;
  box-shadow: 0 0 0 0.0938rem rgba(201, 169, 98, 0.2);
}

.sf-bar__info {
  flex: 1;
  min-width: 0;
}

.sf-bar__main {
  color: #faf6ef;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-theme="light"] .build--storefront .sf-bar__main {
  color: #1a1510;
}

.sf-bar__sub {
  color: rgba(250, 246, 239, 0.45);
  display: block;
  font-size: 0.625rem;
  margin-top: 0.125rem;
}

html[data-theme="light"] .build--storefront .sf-bar__sub {
  color: #888;
}

.sf-bar__btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 31.2188rem;
  color: rgba(250, 246, 239, 0.7);
  display: flex;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 6.875rem;
  padding: 0 1rem;
}

.sf-bar__btn--ready {
  animation: sf-pulse 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, #f0e2c4 0%, #c9a962 100%);
  border-color: transparent;
  box-shadow: 0 0.25rem 0.875rem rgba(201, 169, 98, 0.45);
  color: #1a1208;
}

@keyframes sf-pulse {
  0%, 100% { box-shadow: 0 0.25rem 0.875rem rgba(201, 169, 98, 0.35); }
  50% { box-shadow: 0 0.25rem 1.125rem rgba(201, 169, 98, 0.58); }
}

/* ===== Storefront v3 · Premium ===== */

.sf-footer-block {
  margin-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.sf-footer-block .sf-guarantee {
  margin-bottom: 0.75rem;
}

.sf-footer-block .sf-team-block {
  margin-top: 0;
}

.sf-footer-block .sf-flow-block {
  margin-top: 0.875rem;
}

.sf-footer-block .sf-crosslink {
  margin-top: 0.875rem;
}

.sf-section--checkout {
  margin-top: 0.125rem;
  padding-top: 0.25rem;
}

.sf-section--checkout + .sf-post-panel,
.sf-section--checkout + .sf-trust-row,
.sf-custom-banner + .sf-section--checkout {
  margin-top: 0;
}

.sf-custom-banner + .sf-section--checkout {
  padding-top: 0;
}

.sf-section-head--plain {
  margin-bottom: 0.625rem;
}

.sf-section-head--plain .sf-section-head__title {
  margin-top: 0;
}

.sf-section-head__sub {
  color: rgba(250, 246, 239, 0.42);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

html[data-theme="light"] .build--storefront .sf-section-head__sub {
  color: #888;
}

.sf-section-head--compact {
  margin-bottom: 0.5rem;
}

.sf-section-head__eyebrow {
  color: #c9a962;
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.sf-section-head__title {
  color: #faf6ef;
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.sf-section-head__sub {
  color: rgba(250, 246, 239, 0.48);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.3125rem;
}

html[data-theme="light"] .build--storefront .sf-section-head__title {
  color: #1a1510;
}

html[data-theme="light"] .build--storefront .sf-section-head__sub {
  color: #777066;
}

.sf-divider {
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.45) 50%, transparent 100%);
  height: 1px;
  margin: 1rem 0 0.25rem;
}

/* Post-panel — trust / worries / prep unified flow */
.sf-post-panel {
  margin-top: 0.625rem;
  padding-top: 0.125rem;
}

html[data-theme="light"] .build--storefront .sf-post-panel {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, transparent 5.625rem);
  border-radius: 0.875rem 0.875rem 0 0;
  margin-top: 0.5rem;
  padding-top: 0.25rem;
}

.sf-post-panel__bridge {
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.28) 50%, transparent 100%);
  height: 1px;
  margin: 0 0.25rem 0.625rem;
  opacity: 0.85;
}

html[data-theme="light"] .build--storefront .sf-post-panel__bridge {
  background: linear-gradient(90deg, transparent 0%, rgba(180, 150, 90, 0.22) 50%, transparent 100%);
}

.sf-post-panel .sf-prep {
  margin-top: 0.75rem;
}

.sf-worries--in-panel {
  margin-top: 0.875rem;
}

.sf-worries--in-panel .sf-section-head--plain {
  margin-bottom: 0.5rem;
}

/* Trust pills — horizontal swipe */
.sf-trust-scroll {
  width: 100%;
}

.sf-trust-row {
  display: inline-flex;
  gap: 0.375rem;
  margin-top: 0;
  padding: 0 0.125rem 0.1875rem;
}

.sf-trust-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 31.2188rem;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 0.25rem;
  justify-content: center;
  min-height: auto;
  padding: 0.375rem 0.6875rem;
}

html[data-theme="light"] .build--storefront .sf-trust-pill {
  background: #fff;
  border-color: rgba(180, 150, 90, 0.18);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}

.sf-trust-pill__icon {
  color: #e8d5a8;
  flex-shrink: 0;
  font-size: 0.6875rem;
  line-height: 1;
}

.sf-trust-pill__label {
  color: rgba(250, 246, 239, 0.78);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

html[data-theme="light"] .build--storefront .sf-trust-pill__label {
  color: #5c4e30;
}

/* Worries horizontal */
.sf-worries__scroll {
  width: 100%;
}

.sf-worries__track {
  display: flex;
  gap: 0.4375rem;
  padding-bottom: 0.125rem;
}

.sf-worry--card {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(232, 213, 168, 0.2);
  border-radius: 0.625rem;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0.6875rem 0.625rem;
  width: 16.25rem;
}

html[data-theme="light"] .build--storefront .sf-worry--card {
  background: linear-gradient(165deg, #fffefb 0%, #fff 100%);
  border-color: #ebe6dc;
  box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.05);
}

.sf-worry__icon-wrap {
  align-items: center;
  background: rgba(201, 169, 98, 0.16);
  border-radius: 0.375rem;
  display: flex;
  height: 1.625rem;
  justify-content: center;
  margin-bottom: 0.4375rem;
  width: 1.625rem;
}

.sf-worry__icon {
  color: #e8d5a8;
  font-size: 0.8125rem;
  font-weight: 700;
}

html[data-theme="light"] .build--storefront .sf-worry__icon {
  color: #8a7340;
}

/* Anchor with lines */
.sf-anchor {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.625rem;
  padding: 0.25rem 0;
}

.sf-anchor__line {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
  flex: 1;
  height: 1px;
}

.sf-anchor__text {
  color: rgba(232, 213, 168, 0.85);
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  max-width: 15rem;
  text-align: center;
}

html[data-theme="light"] .build--storefront .sf-anchor__text {
  color: #7a6528;
}

/* Quote luxury doc */
.sf-include--lux {
  border-color: rgba(201, 169, 98, 0.28);
  overflow: hidden;
  position: relative;
}

.sf-include__glow {
  background: radial-gradient(circle at 100% 0%, rgba(201, 169, 98, 0.14) 0%, transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.sf-include__group-head {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}

.sf-include__group-num {
  color: #c9a962;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  opacity: 0.7;
}

.sf-include__grid {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.sf-include__grid .sf-include__item {
  box-sizing: border-box;
  flex: 0 0 48%;
  margin-bottom: 0.25rem;
  max-width: 48%;
  min-width: 0;
  width: 48%;
}

.sf-include__group-name {
  background: none;
  border-left: none;
  flex: 1;
  margin-bottom: 0;
  padding: 0;
}

.sf-steps {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  margin-top: 0.125rem;
  position: relative;
}

.sf-steps__track {
  background: rgba(201, 169, 98, 0.2);
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 0.6875rem;
}

.sf-step {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.sf-step__dot {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 50%;
  color: rgba(250, 246, 239, 0.45);
  display: flex;
  font-size: 0.625rem;
  font-weight: 800;
  height: 1.375rem;
  justify-content: center;
  width: 1.375rem;
}

.sf-step--done .sf-step__dot,
.sf-step--active .sf-step__dot {
  background: linear-gradient(135deg, #f0e2c4 0%, #c9a962 100%);
  border-color: #e8d5a8;
  box-shadow: 0 0.125rem 0.5rem rgba(201, 169, 98, 0.35);
  color: #1a1208;
}

.sf-step__label {
  color: rgba(250, 246, 239, 0.42);
  font-size: 0.625rem;
  font-weight: 600;
  margin-top: 0.3125rem;
}

.sf-step--active .sf-step__label,
.sf-step--done .sf-step__label {
  color: #e8d5a8;
}

html[data-theme="light"] .build--storefront .sf-step__label {
  color: #999;
}

html[data-theme="light"] .build--storefront .sf-step--active .sf-step__label,
html[data-theme="light"] .build--storefront .sf-step--done .sf-step__label {
  color: #7a6528;
}

/* Panel luxury */
.sf-panel--lux {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.06) 0%, #141210 24%);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .build--storefront .sf-panel--lux {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.08) 0%, #fff 28%);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
}

.sf-spotlight--cinema {
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 0.625rem 1.75rem rgba(0, 0, 0, 0.35);
  height: 11.875rem;
}

.sf-spotlight__hint {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 31.2188rem;
  display: flex;
  justify-content: center;
  padding: 0.25rem 0.625rem;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
}

.sf-spotlight__hint text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.625rem;
  font-weight: 600;
}

.sf-tab--on {
  transform: scale(1.02);
}

.sf-designer--on {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.18) 0%, rgba(201, 169, 98, 0.06) 100%);
  box-shadow: 0 0.25rem 0.75rem rgba(201, 169, 98, 0.2);
}

/* Guarantee seal */
.sf-guarantee--seal {
  position: relative;
  text-align: center;
}

.sf-guarantee__mark {
  color: #c9a962;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

/* Team cards horizontal */
.sf-team-block {
  margin-top: 0.625rem;
}

.sf-team__scroll {
  width: 100%;
}

.sf-team__track {
  display: flex;
  gap: 0.4375rem;
}

.sf-team__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: 0.625rem;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0.6875rem 0.625rem;
  width: 8.75rem;
}

html[data-theme="light"] .build--storefront .sf-team__card {
  background: #fff;
  border-color: #ebe6dc;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.04);
}

.sf-team__card .sf-team__icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3125rem;
}

.sf-team__card .sf-team__name {
  display: block;
  font-size: 0.8125rem;
}

.sf-team__tag {
  color: #c9a962;
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.1875rem;
}

.sf-team__card .sf-team__desc {
  display: block;
  font-size: 0.625rem;
  line-height: 1.45;
  margin-top: 0.3125rem;
}

/* Flow timeline */
.sf-flow-block {
  margin-top: 0.75rem;
}

.sf-flow--timeline {
  gap: 0;
  position: relative;
}

.sf-flow__line {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.45) 50%, rgba(201, 169, 98, 0.08) 100%);
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 0.875rem;
}

.sf-flow--timeline .sf-flow__item {
  background: transparent;
  border: none;
  flex: 1;
  padding: 0 0.1875rem 0.25rem;
  position: relative;
}

.sf-flow__dot {
  background: #141210;
  border: 1px solid #c9a962;
  border-radius: 50%;
  box-shadow: 0 0 0 0.125rem rgba(201, 169, 98, 0.15);
  height: 0.5rem;
  margin: 0.625rem auto 0.375rem;
  width: 0.5rem;
}

html[data-theme="light"] .build--storefront .sf-flow__dot {
  background: #fffefb;
}

.sf-flow--timeline .sf-flow__num {
  font-size: 0.5625rem;
}

.sf-flow--timeline .sf-flow__title {
  font-size: 0.625rem;
}

.sf-flow--timeline .sf-flow__days {
  font-size: 0.5rem;
}

/* Custom luxury */
.sf-custom--lux {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.sf-custom--lux::before {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sf-custom__inner {
  padding: 0.875rem 0.75rem;
}

/* Floating bottom bar */
.sf-bar-wrap {
  bottom: 0;
  left: 0;
  padding: 0 0.625rem calc(0.5rem + env(safe-area-inset-bottom));
  pointer-events: none;
  position: fixed;
  right: 0;
  z-index: 50;
}

.sf-bar-wrap .sf-bar {
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 0.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  bottom: auto;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.38);
  left: auto;
  padding: 0.5rem 0.75rem;
  pointer-events: auto;
  position: relative;
  right: auto;
}

html[data-theme="light"] .build--storefront .sf-bar-wrap .sf-bar {
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.1);
}

.sf-bar--ready.sf-bar {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 0.5rem 1.5rem rgba(201, 169, 98, 0.22);
}

.sf-crosslink {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 0.875rem;
}

html[data-theme="light"] .build--storefront .sf-crosslink {
  border-top-color: #ece8e0;
}

.sf-crosslink__text {
  color: var(--text-3);
  font-size: 0.6875rem;
}

.sf-crosslink__cta {
  color: #c9a962;
  font-size: 0.6875rem;
  font-weight: 600;
}

html[data-theme="light"] .build--storefront .sf-crosslink__cta {
  color: #8a7340;
}

/* ---- ads.wxss ---- */



.build-ads .build__body {
  padding-bottom: calc(4.625rem + env(safe-area-inset-bottom));
}

/* Hero · 紧凑无拼贴 */
.build-ads .build__hero--ads {
  margin: 0 calc(-1 * var(--pad-x));
  min-height: auto;
  padding-bottom: 1.125rem;
}

.build-ads .build__hero--ads .build__hero-copy {
  padding-bottom: 0.25rem;
  padding-top: 0.375rem;
}

.ads-bridge {
  background: linear-gradient(90deg, transparent 0%, rgba(61, 111, 217, 0.22) 50%, transparent 100%);
  height: 1px;
  margin: 0 var(--pad-x) 0.25rem;
  opacity: 0.7;
}

.ads-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.6875rem;
}

.ads-hero__mark {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: 31.2188rem;
  box-sizing: border-box;
  display: flex;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.ads-hero__mark img {
  height: 1rem;
  width: 1rem;
}

.ads-hero__stats {
  border-top-color: rgba(61, 111, 217, 0.14);
  margin-top: 0.875rem;
}

.ads-packages {
  margin-top: 0;
  padding-top: 0.125rem;
}

/* 代投方案卡 · 加宽 + 允许卡内换行（避免 track nowrap 继承溢出） */
.ads--storefront .sf-tierdeck__card {
  flex: 0 0 7.5rem;
  min-height: 8.5rem;
  padding: 0.6875rem 0.5rem 0.5625rem;
  white-space: normal;
  width: 7.5rem;
}

.ads--storefront .sf-tierdeck__card--on {
  transform: scale(1.04) translateY(-0.1875rem);
}

.ads-tierdeck__price {
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  margin-top: 0.3125rem;
}

.ads-tierdeck__price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
}

.ads--storefront .sf-tierdeck__price .sf-tierdeck__yen {
  flex-shrink: 0;
  font-size: 0.6875rem;
  margin-right: 1px;
  margin-top: 0.1875rem;
}

.ads--storefront .sf-tierdeck__num {
  flex-shrink: 1;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  min-width: 0;
}

.ads--storefront .sf-tierdeck__num--compact {
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
}

.ads-tierdeck__unit {
  color: var(--ads-accent-text);
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.25;
  margin-left: 0;
  margin-top: 1px;
  opacity: 0.88;
}

html[data-theme="light"] .ads--storefront .ads-tierdeck__unit {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tierdeck__name {
  display: block;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.ads--storefront .sf-tierdeck__who {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 0.625rem;
  line-height: 1.35;
  margin-top: 0.25rem;
  overflow: hidden;
  white-space: normal;
}

.ads--storefront .sf-tierdeck__mood {
  display: block;
  line-height: 1.3;
  white-space: normal;
}

/* 底栏 · 与 build 页结构对齐 */
.ads--storefront .sf-bar__btn {
  min-width: 6.25rem;
  padding: 0 0.75rem;
}

.ads--storefront .sf-bar__sub {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ads-panel {
  background: linear-gradient(165deg, rgba(61, 111, 217, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(61, 111, 217, 0.2);
  border-radius: 0.75rem;
  margin-top: 0.625rem;
  overflow: hidden;
  padding: 0.875rem 0.8125rem 0.8125rem;
  position: relative;
}

.ads-panel::before {
  background: radial-gradient(circle at 100% 0%, rgba(61, 111, 217, 0.14) 0%, transparent 55%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

html[data-theme="light"] .ads--storefront .ads-panel {
  background: linear-gradient(165deg, rgba(61, 111, 217, 0.05) 0%, #fff 100%);
  box-shadow: 0 0.375rem 1.25rem rgba(61, 111, 217, 0.08);
}

.ads-panel__head {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ads-panel__head-main {
  flex: 1;
  min-width: 0;
}

.ads-panel__name {
  color: #faf6ef;
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

html[data-theme="light"] .ads--storefront .ads-panel__name {
  color: #1a1510;
}

.ads-panel__pitch {
  color: rgba(250, 246, 239, 0.55);
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

html[data-theme="light"] .ads--storefront .ads-panel__pitch {
  color: #666;
}

.ads-panel__price-box {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.25rem;
}

.ads-panel__price {
  color: var(--ads-accent-text);
  font-size: 1.1875rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

html[data-theme="light"] .ads--storefront .ads-panel__price {
  color: var(--ads-accent-dark);
}

.ads-panel__price-tag {
  background: rgba(61, 111, 217, 0.14);
  border-radius: 0.25rem;
  color: var(--ads-accent-text);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.1875rem 0.375rem;
}

.ads-panel__renewal {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

html[data-theme="light"] .ads--storefront .ads-panel__renewal {
  color: rgba(30, 40, 60, 0.65);
}

html[data-theme="light"] .ads--storefront .ads-panel__price-tag {
  color: var(--ads-accent-dark);
}

.ads-pitchers {
  padding-top: 0.25rem;
}

.sf-tier-team__tag--ads {
  background: rgba(61, 111, 217, 0.18);
  color: var(--ads-accent-text);
}

.ads-panel__bonus-tag {
  background: rgba(61, 111, 217, 0.12);
  border-radius: 31.2188rem;
  color: var(--ads-accent-text);
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}

html[data-theme="light"] .ads--storefront .ads-panel__bonus-tag {
  color: var(--ads-accent-dark);
}

.ads-panel__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.5rem;
  margin-top: 0.6875rem;
  position: relative;
  z-index: 1;
}

.ads-panel__cell {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  gap: 0.25rem;
  width: 48%;
}

.ads-panel__check {
  color: var(--ads-accent-text);
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.45;
}

html[data-theme="light"] .ads--storefront .ads-panel__check {
  color: var(--ads-accent-dark);
}

.ads-panel__cell-text {
  color: rgba(250, 246, 239, 0.78);
  font-size: 0.6875rem;
  line-height: 1.45;
}

html[data-theme="light"] .ads--storefront .ads-panel__cell-text {
  color: #444;
}

/* SKU · 横向胶囊 */
.ads-skus {
  margin-top: 0.125rem;
}

.ads-skus__scroll {
  width: 100%;
}

.ads-skus__track {
  display: inline-flex;
  gap: 0.375rem;
  padding: 0.125rem 1px 0.25rem;
}

.ads-skus__chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(61, 111, 217, 0.16);
  border-radius: 0.5625rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.25rem;
  min-width: 6.875rem;
  padding: 0.5rem 0.5625rem;
}

html[data-theme="light"] .ads--storefront .ads-skus__chip {
  background: #fff;
  border-color: rgba(61, 111, 217, 0.12);
  box-shadow: 0 0.1875rem 0.625rem rgba(61, 111, 217, 0.06);
}

.ads-skus__chip-tag {
  color: var(--ads-accent-text);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

html[data-theme="light"] .ads--storefront .ads-skus__chip-tag {
  color: var(--ads-accent-dark);
}

.ads-skus__chip-name {
  color: var(--text-1);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.ads-skus__chip-price {
  color: var(--text-2);
  font-size: 0.6875rem;
  font-weight: 800;
}

/* 底栏 Meta 图标 */
.sf-bar__ava--ads {
  align-items: center;
  background: rgba(61, 111, 217, 0.08);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0.25rem;
}

.sf-bar__ava--ads img {
  height: 1.125rem;
  width: 1.125rem;
}

/* ---- ads-theme.wxss ---- */
/* DTC 代投 · Meta 蓝主色 */
.ads--storefront {
  --ads-accent: #3d6fd9;
  --ads-accent-soft: rgba(61, 111, 217, 0.14);
  --ads-accent-border: rgba(61, 111, 217, 0.32);
  --ads-accent-text: #6b9cff;
  --ads-accent-dark: #1e4a9e;
}

.ads--storefront .build__hero-mesh {
  background: radial-gradient(circle at 90% 0%, rgba(61, 111, 217, 0.22) 0%, transparent 55%);
}

.ads--storefront .build__hero-line--gold {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 52%, #6b9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .ads--storefront .build__hero-line--gold {
  background: linear-gradient(135deg, #1e4a9e 0%, #3d6fd9 50%, #5b8def 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ads--storefront .build__hero-eyebrow,
.ads--storefront .sf-section-head__eyebrow {
  color: var(--ads-accent-text);
}

.ads--storefront .build__hero-stat-val,
.ads--storefront .build__hero-stat-unit {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .build__hero-eyebrow,
html[data-theme="light"] .ads--storefront .sf-section-head__eyebrow {
  color: var(--ads-accent-dark);
}

.ads--storefront .btn--gold,
.ads--storefront .sf-bar__btn--ready {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(61, 111, 217, 0.4);
  color: #0f1a33;
}

.ads--storefront .btn--outline,
.ads--storefront .sf-bar__btn:not(.sf-bar__btn--ready) {
  border-color: var(--ads-accent-border);
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .btn--outline {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-steps__track {
  background: rgba(61, 111, 217, 0.22);
}

.ads--storefront .sf-step__dot {
  border-color: rgba(61, 111, 217, 0.38);
}

.ads--storefront .sf-step--done .sf-step__dot,
.ads--storefront .sf-step--active .sf-step__dot {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 100%);
  border-color: #6b9cff;
  box-shadow: 0 0.125rem 0.5rem rgba(61, 111, 217, 0.32);
  color: #0f1a33;
}

.ads--storefront .sf-step--active .sf-step__label,
.ads--storefront .sf-step--done .sf-step__label {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-step--active .sf-step__label,
html[data-theme="light"] .ads--storefront .sf-step--done .sf-step__label {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tierdeck__glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(61, 111, 217, 0.16) 0%, transparent 68%);
}

.ads--storefront .sf-tierdeck__card--on {
  background: linear-gradient(165deg, rgba(61, 111, 217, 0.32) 0%, rgba(61, 111, 217, 0.1) 42%, rgba(12, 16, 28, 0.96) 100%);
  border-color: rgba(107, 156, 255, 0.72);
  box-shadow:
    0 0.6875rem 1.625rem rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(61, 111, 217, 0.28);
}

html[data-theme="light"] .ads--storefront .sf-tierdeck__card--on {
  background: linear-gradient(165deg, #d4e4ff 0%, #9ec0ff 38%, #fff 100%);
  border-color: #3d6fd9;
  box-shadow: 0 0.5625rem 1.375rem rgba(61, 111, 217, 0.2);
}

.ads--storefront .sf-tierdeck__idx,
.ads--storefront .sf-tierdeck__mood,
.ads--storefront .sf-tierdeck__yen,
.ads--storefront .sf-tierdeck__custom-quote,
.ads--storefront .sf-tierdeck__num {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-tierdeck__idx,
html[data-theme="light"] .ads--storefront .sf-tierdeck__mood,
html[data-theme="light"] .ads--storefront .sf-tierdeck__yen,
html[data-theme="light"] .ads--storefront .sf-tierdeck__num,
html[data-theme="light"] .ads--storefront .sf-tierdeck__custom-quote {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tierdeck__card--custom {
  background: linear-gradient(165deg, var(--ads-accent-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--ads-accent-border);
}

.ads--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) {
  border-color: var(--ads-accent-border);
  box-shadow: 0 0.3125rem 1rem rgba(61, 111, 217, 0.14);
}

.ads--storefront .sf-tierdeck__tag {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 100%);
  color: #0f1a33;
}

.ads--storefront .sf-tierdeck__ring {
  border-color: rgba(107, 156, 255, 0.45);
}

.ads--storefront .sf-custom-panel__eyebrow,
.ads--storefront .sf-custom-panel__check,
.ads--storefront .sf-custom-panel__headline {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-custom-panel__headline {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-custom-panel__cta {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 100%);
}

.ads--storefront .sf-panel--custom {
  background: linear-gradient(165deg, var(--ads-accent-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--ads-accent-border);
}

.ads--storefront .sf-trust-pill__icon,
.ads--storefront .sf-trust-pill__label {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-trust-pill {
  border-color: rgba(61, 111, 217, 0.18);
}

html[data-theme="light"] .ads--storefront .sf-trust-pill__label {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-worry__q,
.ads--storefront .sf-worry__icon {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-worry__q {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-worry__icon-wrap {
  background: var(--ads-accent-soft);
}

.ads--storefront .sf-worry--card {
  background: linear-gradient(165deg, var(--ads-accent-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--ads-accent-border);
}

html[data-theme="light"] .ads--storefront .sf-worry--card {
  background: linear-gradient(165deg, rgba(61, 111, 217, 0.05) 0%, #fff 100%);
  border-color: rgba(61, 111, 217, 0.14);
}

.ads--storefront .sf-post-panel {
  background: linear-gradient(180deg, rgba(61, 111, 217, 0.06) 0%, transparent 5.625rem);
  border-radius: 0.875rem 0.875rem 0 0;
}

.ads--storefront .sf-post-panel__bridge {
  background: linear-gradient(90deg, transparent 0%, rgba(61, 111, 217, 0.28) 50%, transparent 100%);
}

.ads--storefront .sf-guarantee {
  background: linear-gradient(135deg, var(--ads-accent-soft) 0%, rgba(61, 111, 217, 0.02) 100%);
  border-color: var(--ads-accent-border);
}

.ads--storefront .sf-guarantee__title,
.ads--storefront .sf-guarantee__mark {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-guarantee__title,
html[data-theme="light"] .ads--storefront .sf-guarantee__mark {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-team__icon,
.ads--storefront .sf-team__tag {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-team__icon,
html[data-theme="light"] .ads--storefront .sf-team__tag {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-flow__line {
  background: linear-gradient(90deg, rgba(61, 111, 217, 0.08) 0%, rgba(61, 111, 217, 0.42) 50%, rgba(61, 111, 217, 0.08) 100%);
}

.ads--storefront .sf-flow__dot {
  border-color: var(--ads-accent);
  box-shadow: 0 0 0 0.125rem rgba(61, 111, 217, 0.15);
}

.ads--storefront .sf-flow__num {
  color: var(--ads-accent-text);
}

.ads--storefront .sf-bar--ready.sf-bar,
.ads--storefront .sf-bar-wrap .sf-bar--ready.sf-bar {
  border-color: rgba(61, 111, 217, 0.45);
  box-shadow: 0 0.5rem 1.5rem rgba(61, 111, 217, 0.22);
}

.ads--storefront .sf-bar__sub {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-bar__sub {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-bar__ava {
  border-color: var(--ads-accent-border);
}

.ads--storefront .sf-crosslink__cta {
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-crosslink__cta {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tierdeck__hint-tag {
  background: rgba(61, 111, 217, 0.12);
  border-color: rgba(61, 111, 217, 0.28);
  color: var(--ads-accent-text);
}

html[data-theme="light"] .ads--storefront .sf-tierdeck__hint-tag {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tier-nudge__pill {
  background: linear-gradient(135deg, #9ec0ff 0%, #3d6fd9 100%);
  box-shadow: 0 0.1875rem 0.625rem rgba(61, 111, 217, 0.32);
}

.ads--storefront .sf-tier-nudge__label,
.ads--storefront .sf-tier-nudge__chev {
  color: #0f1a33;
}

.ads--storefront .sf-tierdeck-wrap--peek .sf-tierdeck__card--custom:not(.sf-tierdeck__card--on) {
  border-color: rgba(107, 156, 255, 0.45);
  box-shadow: 0.25rem 0 0.75rem rgba(61, 111, 217, 0.14);
}

@keyframes sf-pulse-ads {
  0%,
  100% {
    box-shadow: 0 0.25rem 0.875rem rgba(61, 111, 217, 0.35);
  }
  50% {
    box-shadow: 0 0.25rem 1.125rem rgba(61, 111, 217, 0.55);
  }
}

.ads--storefront .sf-bar__btn--ready {
  animation: sf-pulse-ads 2.4s ease-in-out infinite;
}

html[data-theme="light"] .ads--storefront .build__hero-stat-unit {
  color: var(--ads-accent-dark);
}

html[data-theme="light"] .ads--storefront .sf-bar__ava--ads {
  background: rgba(61, 111, 217, 0.06);
}

.ads--storefront .sf-tier-team--ads {
  margin-top: 0.6875rem;
}

.ads--storefront .sf-tier-team__member {
  border-color: rgba(61, 111, 217, 0.16);
}

.ads--storefront .sf-tier-team__ava text {
  background: rgba(61, 111, 217, 0.18);
  color: #9ec0ff;
}

.ads--storefront .sf-tier-team__tag {
  background: rgba(61, 111, 217, 0.14);
  border-radius: 31.2188rem;
  color: var(--ads-accent-text);
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.3125rem;
  padding: 0.125rem 0.3125rem;
}

html[data-theme="light"] .ads--storefront .sf-tier-team__tag {
  color: var(--ads-accent-dark);
}

.ads--storefront .sf-tier-team__go {
  color: rgba(158, 192, 255, 0.88);
}

html[data-theme="light"] .ads--storefront .sf-tier-team__go {
  color: #1e4a9e;
}

.ads--storefront .sf-label {
  color: rgba(158, 192, 255, 0.72);
}

html[data-theme="light"] .ads--storefront .sf-label {
  color: #1e4a9e;
}


/* ---- website chrome ---- */
.sf-page .build__hero,
.sf-page .sf-partners,
.sf-page .sf-tierdeck,
.sf-page.build-ads .build__hero--ads {
  margin-left: 0;
  margin-right: 0;
}

.sf-page .build__hero {
  border-radius: 1.35rem;
}

.sf-page .sf-tierdeck__hint,
.sf-page .ads-bridge {
  margin-left: 0;
  margin-right: 0;
}

.sf-page .sf-tierdeck__track {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.sf-page .sf-tier-nudge {
  display: none !important;
}

.sf-page .sf-partners {
  padding-left: 0;
  padding-right: 0;
}

.sf-page .dl-bg {
  opacity: 0.22;
}

html[data-theme="dark"] .sf-page .dl-bg {
  opacity: 0.42;
}

.sf-page .dl-footer {
  padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  position: relative;
  z-index: 0;
}

.sf-page .sf-bar-wrap {
  left: 0;
  right: 0;
  z-index: 80;
}

.sf-page .sf-bar-wrap .sf-bar {
  margin: 0 auto;
  max-width: 48rem;
}

#packages {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.sf-page .sf-tierdeck__scroll,
.sf-page .sf-worries__scroll,
.sf-page .sf-team__scroll,
.sf-page .sf-cases__scroll,
.sf-page .sf-trust-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scrollbar-width: none;
}

.sf-page .sf-tierdeck__scroll::-webkit-scrollbar,
.sf-page .sf-worries__scroll::-webkit-scrollbar,
.sf-page .sf-team__scroll::-webkit-scrollbar,
.sf-page .sf-cases__scroll::-webkit-scrollbar,
.sf-page .sf-trust-scroll::-webkit-scrollbar {
  display: none;
}

.sf-page .build__collage-item img,
.sf-page .sf-case img,
.sf-page .sf-spotlight img,
.sf-page .sf-bar__ava img {
  object-fit: cover;
}

.sf-page .sf-tierdeck__custom-mark img {
  object-fit: contain;
}

.sf-page .sf-partners__img {
  object-fit: contain;
}

.sf-page .ads-hero__mark img,
.sf-page .sf-bar__ava--ads img {
  object-fit: contain;
}

.sf-page .sf-tierdeck__card,
.sf-page .sf-bar__btn,
.sf-page .sf-custom-panel__cta,
.sf-page .btn,
.sf-page .sf-tier-nudge {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.sf-page .sf-tierdeck__card {
  color: inherit;
  text-align: left;
  white-space: normal;
}

.sf-page .sf-tierdeck__mood,
.sf-page .sf-tierdeck__name,
.sf-page .sf-tierdeck__who,
.sf-page .sf-tierdeck__idx,
.sf-page .sf-tierdeck__custom-name,
.sf-page .sf-tierdeck__custom-quote,
.sf-page .sf-tierdeck__wm {
  display: block;
}

.sf-page .sf-tierdeck__mood {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.sf-page .sf-tierdeck__custom-mark {
  display: block;
  overflow: hidden;
}

.sf-page .sf-custom-panel__cta {
  border: 0;
  width: 100%;
}

.sf-page .sf-bar__btn {
  appearance: none;
}

.sf-tierdeck__hint[hidden],
.sf-steps[hidden],
.sf-guarantee[hidden],
.sf-tierdeck__fade[hidden],
.sf-tier-nudge[hidden] {
  display: none !important;
}

.sf-crosslink {
  color: inherit;
  cursor: pointer;
  display: flex;
  text-decoration: none;
}

.sf-highlight { display: block; }

@media (min-width: 56rem) {
  .sf-shell { max-width: 52rem; }
  .sf-page .sf-bar-wrap .sf-bar { max-width: 52rem; }
  .sf-page .sf-tierdeck__track {
    display: flex;
    width: 100%;
  }
  .sf-tierdeck__card {
    flex: 1 1 0;
    min-width: 8.5rem;
    width: auto;
  }
  .ads--storefront .sf-tierdeck__card {
    flex: 1 1 0;
    min-width: 9rem;
    width: auto;
  }
  .sf-page .build__collage { height: 12rem; }
  .sf-page .build__hero-copy { padding-top: 11rem; }
}

/* Engine switch · Shopify / WordPress */
.sf-engine {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.sf-engine__opt {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: inherit;
  display: flex;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.55rem 0.7rem;
  text-align: left;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

html[data-theme="light"] .sf-page .sf-engine__opt {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(26, 21, 16, 0.08);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.04);
}

.sf-engine__opt:hover {
  transform: translateY(-1px);
}

.sf-engine__opt.is-on[data-engine="shopify"] {
  background: linear-gradient(165deg, rgba(149, 191, 71, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(149, 191, 71, 0.55);
  box-shadow: 0 0.5rem 1.25rem rgba(149, 191, 71, 0.16);
}

.sf-engine__opt.is-on[data-engine="wordpress"] {
  background: linear-gradient(165deg, rgba(33, 117, 155, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(33, 117, 155, 0.5);
  box-shadow: 0 0.5rem 1.25rem rgba(33, 117, 155, 0.16);
}

.sf-engine__logo {
  align-items: center;
  background: #fff;
  border-radius: 0.7rem;
  display: flex;
  flex-shrink: 0;
  height: 2.15rem;
  justify-content: center;
  width: 2.15rem;
}

.sf-engine__logo img {
  display: block;
  height: 1.25rem;
  object-fit: contain;
  width: 1.25rem;
}

.sf-engine__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.sf-engine__name {
  color: var(--cream);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

html[data-theme="light"] .sf-page .sf-engine__name {
  color: #1a1510;
}

.sf-engine__tag {
  color: var(--text-3);
  display: block;
  font-size: 0.62rem;
  margin-top: 0.12rem;
}

.sf-engine__from {
  color: var(--text-2);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sf-section-head--engines {
  align-items: flex-end;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.sf-engine--mini {
  display: flex;
  flex: 0 0 auto;
  gap: 0.35rem;
  grid-template-columns: none;
  margin-top: 0;
}

.sf-engine--mini .sf-engine__opt {
  gap: 0.4rem;
  min-height: 2.15rem;
  padding: 0.28rem 0.55rem 0.28rem 0.32rem;
}

.sf-engine--mini .sf-engine__logo {
  border-radius: 0.5rem;
  height: 1.55rem;
  width: 1.55rem;
}

.sf-engine--mini .sf-engine__logo img {
  height: 0.95rem;
  width: 0.95rem;
}

.sf-engine--mini .sf-engine__name {
  font-size: 0.7rem;
}

.sf-engine--mini .sf-engine__tag,
.sf-engine--mini .sf-engine__from {
  display: none;
}

.sf-page .sf-partners__item {
  height: 2rem;
  width: 5.5rem;
}

.sf-page .sf-partners__img {
  height: 1.7rem;
  max-width: 5.5rem;
  width: 5.5rem;
}

html[data-theme="dark"] .sf-page .sf-partners__item.is-dark img {
  filter: invert(1);
}

.b2b--storefront {
  --b2b-accent: #4a8cb8;
  --b2b-accent-soft: rgba(74, 140, 184, 0.14);
  --b2b-accent-border: rgba(74, 140, 184, 0.32);
  --b2b-accent-text: #6eb0d9;
  --b2b-accent-dark: #2d5a78;
}

.b2b--storefront .build__hero-eyebrow {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .build__hero-eyebrow {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .build__hero-line--gold {
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 52%, #6eb0d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .b2b--storefront .build__hero-line--gold {
  background: linear-gradient(135deg, #2d5a78 0%, #4a8cb8 50%, #6eb0d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.b2b--storefront .build__hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(74, 140, 184, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(33, 117, 155, 0.16) 0%, transparent 50%);
}

.b2b--storefront .btn--gold {
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
  color: #0f2433;
}

.b2b--storefront .sf-bar__btn--ready {
  animation: sf-pulse-b2b 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(74, 140, 184, 0.45);
  color: #0f2433;
}

.b2b--storefront .sf-bar--ready.sf-bar {
  border-color: rgba(74, 140, 184, 0.45);
  box-shadow: 0 0.5rem 1.5rem rgba(74, 140, 184, 0.22);
}

.b2b--storefront .sf-panel__price-tag {
  background: var(--b2b-accent-soft);
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-panel__price-tag {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-custom-panel__cta {
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
}

.b2b--storefront .sf-post-panel__bridge {
  background: linear-gradient(90deg, transparent 0%, rgba(74, 140, 184, 0.28) 50%, transparent 100%);
}

@keyframes sf-pulse-b2b {
  0%, 100% { box-shadow: 0 0.25rem 0.875rem rgba(74, 140, 184, 0.35); }
  50% { box-shadow: 0 0.25rem 1.125rem rgba(74, 140, 184, 0.58); }
}

@media (max-width: 40rem) {
  .sf-engine {
    gap: 0.4rem;
  }
  .sf-engine__from {
    display: none;
  }
  .sf-section-head--engines {
    align-items: stretch;
    flex-direction: column;
  }
  .sf-engine--mini {
    width: 100%;
  }
  .sf-engine--mini .sf-engine__opt {
    flex: 1;
  }
}

/* —— Onboarding doors + Shopify / WordPress page palettes —— */
.sf-page .sf-tier-nudge {
  display: none !important;
}

body.sf-page[data-engine] {
  transition: background-color 0.45s ease;
}

html[data-theme="light"] body.sf-page[data-engine="shopify"] {
  --void: #f6f1e8;
  --gold: #c9a962;
  --gold-light: #e4c98a;
  background: #f6f1e8;
}

html[data-theme="light"] body.sf-page[data-engine="wordpress"] {
  --void: #eef3f7;
  --gold: #3d7ea6;
  --gold-light: #8fc4e0;
  --btn-gold-bg: #21759b;
  --btn-gold-text: #ffffff;
  background: #eef3f7;
}

html[data-theme="dark"] body.sf-page[data-engine="shopify"] {
  --void: #0c0a08;
  background: #0c0a08;
}

html[data-theme="dark"] body.sf-page[data-engine="wordpress"] {
  --void: #071018;
  --gold: #6eb0d9;
  --gold-light: #b8d9ef;
  --btn-gold-bg: #4a8cb8;
  --btn-gold-text: #071018;
  background: #071018;
}

html[data-theme="light"] body.sf-page[data-engine="shopify"] .dl-header {
  background: rgba(246, 241, 232, 0.92);
  border-bottom-color: rgba(149, 191, 71, 0.28);
}

html[data-theme="light"] body.sf-page[data-engine="wordpress"] .dl-header {
  background: rgba(238, 243, 247, 0.94);
  border-bottom-color: rgba(33, 117, 155, 0.28);
}

html[data-theme="dark"] body.sf-page[data-engine="shopify"] .dl-header {
  background: rgba(12, 10, 8, 0.92);
  border-bottom-color: rgba(201, 169, 98, 0.22);
}

html[data-theme="dark"] body.sf-page[data-engine="wordpress"] .dl-header {
  background: rgba(7, 16, 24, 0.92);
  border-bottom-color: rgba(74, 140, 184, 0.28);
}

.shopify--storefront .build__hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 16% 18%, rgba(201, 169, 98, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 70% 52% at 88% 78%, rgba(149, 191, 71, 0.26) 0%, transparent 50%);
}

html[data-theme="light"] .shopify--storefront .build__hero {
  background: linear-gradient(165deg, #fbf6ec 0%, #f3ead8 46%, #e8f0d6 100%);
}

html[data-theme="dark"] .shopify--storefront .build__hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 16% 18%, rgba(201, 169, 98, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 52% at 88% 78%, rgba(149, 191, 71, 0.16) 0%, transparent 50%);
}

.b2b--storefront .sf-step--active .sf-step__dot,
.b2b--storefront .sf-tierdeck__card--on {
  border-color: rgba(74, 140, 184, 0.55);
}

.b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) {
  background: #173044;
  color: #e8f3fa;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) {
  background: #143044;
  color: #f4f9fc;
}

.b2b--storefront .sf-tierdeck__hint-tag,
.b2b--storefront .sf-section-head__eyebrow {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-section-head__eyebrow {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-bar-wrap .sf-bar {
  border-color: rgba(74, 140, 184, 0.28);
}

.shopify--storefront .sf-section-head__eyebrow {
  color: #7a9a3d;
}

.shopify--storefront .sf-bar-wrap .sf-bar {
  border-color: rgba(201, 169, 98, 0.32);
}

.sf-onboard {
  margin: 0.15rem 0 0.35rem;
  padding: 0.15rem 0 0.2rem;
  position: relative;
  z-index: 3;
}

.sf-onboard__head {
  margin-bottom: 0.75rem;
}

.sf-onboard__kicker {
  color: var(--gold);
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sf-onboard__title {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.28rem 0 0;
}

html[data-theme="light"] .sf-onboard__title {
  color: #1a1510;
}

.sf-onboard__sub {
  color: var(--text-3);
  font-size: 0.82rem;
  margin: 0.28rem 0 0;
}

.sf-onboard__doors {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}

.sf-door {
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  gap: 0.28rem;
  min-height: 12.5rem;
  padding: 0.95rem 0.95rem 0.9rem;
  text-align: left;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

html[data-theme="light"] .sf-door {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(26, 21, 16, 0.08);
  box-shadow: 0 10px 28px rgba(20, 14, 6, 0.05);
}

.sf-door:hover {
  transform: translateY(-2px);
}

.sf-door__lane {
  align-self: flex-start;
  border-radius: 99rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.5rem;
}

.sf-door[data-engine="shopify"] .sf-door__lane {
  background: rgba(149, 191, 71, 0.16);
  color: #5e8e3e;
}

.sf-door[data-engine="wordpress"] .sf-door__lane {
  background: rgba(33, 117, 155, 0.14);
  color: #2d5a78;
}

html[data-theme="dark"] .sf-door[data-engine="shopify"] .sf-door__lane {
  color: #c5e08a;
}

html[data-theme="dark"] .sf-door[data-engine="wordpress"] .sf-door__lane {
  color: #8fc4e0;
}

.sf-door__title {
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.2rem;
}

html[data-theme="light"] .sf-door__title {
  color: #1a1510;
}

.sf-door__desc {
  color: var(--text-3);
  font-size: 0.72rem;
  line-height: 1.45;
  min-height: 2.1em;
}

.sf-door__engine {
  align-items: center;
  color: var(--text-2);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.sf-door__engine img {
  background: #fff;
  border-radius: 0.4rem;
  display: block;
  height: 1.15rem;
  object-fit: contain;
  padding: 0.12rem;
  width: 1.15rem;
}

.sf-door__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.15rem;
}

.sf-door__chips i {
  background: rgba(26, 21, 16, 0.05);
  border-radius: 99rem;
  color: rgba(26, 21, 16, 0.55);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  padding: 0.14rem 0.42rem;
}

html[data-theme="dark"] .sf-door__chips i {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 246, 239, 0.62);
}

.sf-door__from {
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 0.45rem;
}

.sf-door.is-on[data-engine="shopify"] {
  background:
    linear-gradient(165deg, rgba(149, 191, 71, 0.2) 0%, rgba(201, 169, 98, 0.08) 100%);
  border-color: rgba(149, 191, 71, 0.62);
  box-shadow: 0 14px 32px rgba(149, 191, 71, 0.18);
}

.sf-door.is-on[data-engine="wordpress"] {
  background:
    linear-gradient(165deg, rgba(33, 117, 155, 0.2) 0%, rgba(74, 140, 184, 0.08) 100%);
  border-color: rgba(33, 117, 155, 0.58);
  box-shadow: 0 14px 32px rgba(33, 117, 155, 0.18);
}

html[data-theme="light"] .sf-door.is-on[data-engine="shopify"] {
  background: linear-gradient(165deg, #f4fbe8 0%, #fff 58%);
}

html[data-theme="light"] .sf-door.is-on[data-engine="wordpress"] {
  background: linear-gradient(165deg, #e7f3fa 0%, #fff 58%);
}

.sf-door.is-on {
  position: relative;
}

.sf-door.is-on::after {
  background: currentColor;
  border-radius: 99rem;
  color: inherit;
  content: "已选";
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.12rem 0.4rem;
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
}

.sf-door.is-on[data-engine="shopify"]::after {
  background: #95bf47;
  color: #14300a;
}

.sf-door.is-on[data-engine="wordpress"]::after {
  background: #21759b;
  color: #fff;
}

/* Header engine rail · official marks, sliding glass */
body[data-page="build"] {
  --header-engine-h: 3.05rem;
  --header-h: calc(var(--header-bar-h) + var(--header-engine-h) + var(--safe-top));
}

body[data-page="build"] .dl-header {
  display: flex;
  flex-direction: column;
  height: var(--header-h);
}

body[data-page="build"] .dl-header__inner {
  flex: 0 0 var(--header-bar-h);
}

.sf-rail-wrap {
  align-items: center;
  border-top: 1px solid rgba(26, 21, 16, 0.06);
  display: flex;
  flex: 0 0 var(--header-engine-h);
  justify-content: center;
  padding: 0 1rem;
}

html[data-theme="dark"] .sf-rail-wrap {
  border-top-color: rgba(255, 255, 255, 0.07);
}

.sf-rail {
  background: rgba(26, 21, 16, 0.045);
  border-radius: 99rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  isolation: isolate;
  padding: 0.18rem;
  position: relative;
  width: min(21.5rem, calc(100vw - 2rem));
}

html[data-theme="dark"] .sf-rail {
  background: rgba(255, 255, 255, 0.06);
}

.sf-rail__thumb {
  background: #fff;
  border-radius: 99rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 18px rgba(20, 14, 6, 0.07);
  height: calc(100% - 0.36rem);
  left: 0.18rem;
  pointer-events: none;
  position: absolute;
  top: 0.18rem;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  width: calc(50% - 0.18rem);
  z-index: 0;
}

html[data-engine="shopify"] .sf-rail__thumb {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 22px rgba(149, 191, 71, 0.16);
}

html[data-engine="wordpress"] .sf-rail__thumb {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 22px rgba(33, 117, 155, 0.16);
  transform: translateX(100%);
}

html[data-theme="dark"] .sf-rail__thumb {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.sf-rail__tab {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 99rem;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  gap: 0.42rem;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.28rem 0.85rem;
  position: relative;
  z-index: 1;
}

.sf-rail__tab img {
  display: block;
  flex-shrink: 0;
  height: 1.05rem;
  object-fit: contain;
  transition: filter 0.35s ease, opacity 0.35s ease;
  width: 1.05rem;
}

.sf-rail__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.35s ease, opacity 0.35s ease;
}

html[data-theme="light"] .sf-rail__tab[data-engine] .sf-rail__name {
  color: #1a1510;
}

html[data-theme="dark"] .sf-rail__tab[data-engine] .sf-rail__name {
  color: #faf6ef;
}

html[data-engine="shopify"] .sf-rail__tab[data-engine="wordpress"] img,
html[data-engine="wordpress"] .sf-rail__tab[data-engine="shopify"] img {
  filter: grayscale(1);
  opacity: 0.34;
}

html[data-engine="shopify"] .sf-rail__tab[data-engine="wordpress"] .sf-rail__name,
html[data-engine="wordpress"] .sf-rail__tab[data-engine="shopify"] .sf-rail__name {
  opacity: 0.34;
}

html[data-engine="shopify"] .sf-rail__tab[data-engine="shopify"] img,
html[data-engine="wordpress"] .sf-rail__tab[data-engine="wordpress"] img {
  filter: none;
  opacity: 1;
}

html[data-engine="shopify"] .sf-rail__tab[data-engine="wordpress"]:hover img,
html[data-engine="shopify"] .sf-rail__tab[data-engine="wordpress"]:hover .sf-rail__name,
html[data-engine="wordpress"] .sf-rail__tab[data-engine="shopify"]:hover img,
html[data-engine="wordpress"] .sf-rail__tab[data-engine="shopify"]:hover .sf-rail__name {
  opacity: 0.55;
}

.sf-rail__tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

html[data-theme="light"] .shopify--storefront .build__hero-veil {
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.08) 0%, rgba(246, 241, 232, 0.9) 72%, var(--void) 100%);
}

html[data-theme="light"] .b2b--storefront .build__hero-veil {
  background: linear-gradient(180deg, rgba(238, 243, 247, 0.08) 0%, rgba(238, 243, 247, 0.9) 72%, var(--void) 100%);
}

html[data-theme="light"] body.sf-page[data-engine="shopify"] .sf-section--checkout,
html[data-theme="light"] body.sf-page[data-engine="shopify"] .sf-partners {
  background: linear-gradient(180deg, rgba(149, 191, 71, 0.05), transparent 70%);
}

html[data-theme="light"] body.sf-page[data-engine="wordpress"] .sf-section--checkout,
html[data-theme="light"] body.sf-page[data-engine="wordpress"] .sf-partners {
  background: linear-gradient(180deg, rgba(33, 117, 155, 0.06), transparent 70%);
}

.b2b--storefront .sf-step--active .sf-step__dot,
.b2b--storefront .sf-step--done .sf-step__dot {
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
  border-color: #8ec5ea;
  box-shadow: 0 0.125rem 0.5rem rgba(74, 140, 184, 0.35);
  color: #0f2433;
}

@media (max-width: 40rem) {
  .sf-onboard__doors {
    grid-template-columns: 1fr;
  }

  .sf-door {
    min-height: 0;
  }

  .sf-onboard__title {
    font-size: 1.12rem;
  }
}

.sf-page .sf-shell {
  z-index: 4;
}

/* WordPress · full-page steel (match mini-program B2B) */
html[data-theme="light"] .b2b--storefront .sf-worry,
html[data-theme="light"] .b2b--storefront .sf-worry--card {
  background: linear-gradient(165deg, rgba(74, 140, 184, 0.05) 0%, #fff 100%);
  border-color: rgba(74, 140, 184, 0.16);
  box-shadow: 0 0.25rem 0.875rem rgba(74, 140, 184, 0.06);
}

.b2b--storefront .sf-worry__icon-wrap {
  background: var(--b2b-accent-soft);
  border-color: var(--b2b-accent-border);
}

.b2b--storefront .sf-worry__icon,
.b2b--storefront .sf-worry__q {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-worry__icon,
html[data-theme="light"] .b2b--storefront .sf-worry__q {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-prep {
  background: linear-gradient(165deg, var(--b2b-accent-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--b2b-accent-border);
}

html[data-theme="light"] .b2b--storefront .sf-prep {
  background: linear-gradient(165deg, rgba(74, 140, 184, 0.06) 0%, #fff 100%);
}

html[data-theme="light"] .b2b--storefront .sf-prep__anchor {
  background: var(--b2b-accent-soft);
}

.b2b--storefront .sf-prep__anchor-text,
.b2b--storefront .sf-prep__eyebrow,
.b2b--storefront .sf-prep__icon,
.b2b--storefront .sf-prep__item-desc,
.b2b--storefront .sf-prep__split-label,
.b2b--storefront .sf-prep__step {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-prep__anchor-text,
html[data-theme="light"] .b2b--storefront .sf-prep__eyebrow,
html[data-theme="light"] .b2b--storefront .sf-prep__item-desc,
html[data-theme="light"] .b2b--storefront .sf-prep__split-label,
html[data-theme="light"] .b2b--storefront .sf-prep__step,
html[data-theme="light"] .b2b--storefront .sf-prep__icon {
  color: var(--b2b-accent-dark);
}

html[data-theme="light"] .b2b--storefront .sf-prep__item {
  background: #eef5fa;
  border-color: rgba(45, 90, 120, 0.16);
}

html[data-theme="light"] .b2b--storefront .sf-prep__item-title {
  color: #163044;
}

html[data-theme="light"] .b2b--storefront .sf-prep__item-note {
  color: #5d7a8c;
}

.b2b--storefront .sf-prep__split-line {
  background: rgba(74, 140, 184, 0.22);
}

.b2b--storefront .sf-steps__track {
  background: rgba(74, 140, 184, 0.22);
}

.b2b--storefront .sf-step__dot {
  border-color: rgba(74, 140, 184, 0.38);
}

html[data-theme="light"] .b2b--storefront .sf-step--done .sf-step__dot,
html[data-theme="light"] .b2b--storefront .sf-step--active .sf-step__dot,
.b2b--storefront .sf-step--done .sf-step__dot,
.b2b--storefront .sf-step--active .sf-step__dot {
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
  border-color: #8ec5ea;
  box-shadow: 0 0.125rem 0.5rem rgba(74, 140, 184, 0.32);
  color: #0f2433;
}

html[data-theme="light"] .b2b--storefront .sf-step--active .sf-step__label,
html[data-theme="light"] .b2b--storefront .sf-step--done .sf-step__label {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-team__tag,
.b2b--storefront .sf-team__icon,
.b2b--storefront .sf-flow__num {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-team__tag,
html[data-theme="light"] .b2b--storefront .sf-team__icon,
html[data-theme="light"] .b2b--storefront .sf-flow__num {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-team__card {
  border-color: rgba(74, 140, 184, 0.2);
}

.b2b--storefront .sf-flow__line {
  background: linear-gradient(90deg, rgba(74, 140, 184, 0.08) 0%, rgba(74, 140, 184, 0.42) 50%, rgba(74, 140, 184, 0.08) 100%);
}

.b2b--storefront .sf-flow__dot {
  border-color: var(--b2b-accent);
  box-shadow: 0 0 0 0.125rem rgba(74, 140, 184, 0.15);
}

html[data-theme="light"] .b2b--storefront .sf-flow__dot {
  background: #f4f8fb;
  border-color: var(--b2b-accent);
}

.b2b--storefront .sf-crosslink__cta {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-crosslink__cta {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-bar-wrap .sf-bar {
  border-color: var(--b2b-accent-border);
}

html[data-theme="light"] .b2b--storefront .sf-bar-wrap .sf-bar {
  background: #f7fbfd;
  border-color: rgba(74, 140, 184, 0.22);
}

.b2b--storefront .sf-bar__btn:not(.sf-bar__btn--ready) {
  border-color: var(--b2b-accent-border);
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-bar__btn:not(.sf-bar__btn--ready) {
  background: rgba(74, 140, 184, 0.08);
  color: var(--b2b-accent-dark);
}

html[data-theme="light"] .b2b--storefront .sf-bar__btn--ready,
.b2b--storefront .sf-bar__btn--ready {
  animation: sf-pulse-b2b 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, #b8d9ef 0%, #4a8cb8 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(74, 140, 184, 0.45);
  color: #0f2433;
}

.b2b--storefront .sf-guarantee {
  background: linear-gradient(135deg, var(--b2b-accent-soft) 0%, rgba(74, 140, 184, 0.02) 100%);
  border-color: var(--b2b-accent-border);
}

html[data-theme="light"] .b2b--storefront .sf-guarantee {
  background: linear-gradient(135deg, rgba(74, 140, 184, 0.06) 0%, #fff 100%);
}

.b2b--storefront .sf-guarantee__mark,
.b2b--storefront .sf-guarantee__title,
.b2b--storefront .sf-section-head__eyebrow {
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .sf-guarantee__mark,
html[data-theme="light"] .b2b--storefront .sf-guarantee__title,
html[data-theme="light"] .b2b--storefront .sf-section-head__eyebrow {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .sf-post-panel {
  background: linear-gradient(180deg, rgba(74, 140, 184, 0.06) 0%, transparent 8rem);
}

.b2b--storefront .sf-panel--lux {
  background: linear-gradient(180deg, rgba(74, 140, 184, 0.07) 0%, #141210 24%);
}

html[data-theme="light"] .b2b--storefront .sf-panel--lux {
  background: linear-gradient(180deg, rgba(74, 140, 184, 0.07) 0%, #fff 28%);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card {
  background: linear-gradient(165deg, #fff 0%, #f3f7fb 100%);
  border-color: #d7e4ee;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--custom {
  background: linear-gradient(165deg, rgba(74, 140, 184, 0.08) 0%, #fff 100%);
  border-color: rgba(74, 140, 184, 0.42);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__idx {
  color: #4a8cb8;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__mood {
  color: #3d6a88;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__who {
  color: #6a8496;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__yen,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__num,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__name,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__custom-name {
  color: #163044;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__custom-quote {
  color: var(--b2b-accent-dark);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__wm {
  color: rgba(74, 140, 184, 0.12);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) {
  background: #143044;
  border-color: rgba(142, 197, 234, 0.38);
  box-shadow: 0 0.3125rem 1rem rgba(20, 48, 68, 0.22);
  color: #f4f9fc;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__idx,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__mood {
  color: rgba(232, 244, 252, 0.78);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__name,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__yen,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__num {
  color: #f4f9fc;
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--hot:not(.sf-tierdeck__card--on) .sf-tierdeck__who {
  color: rgba(232, 244, 252, 0.58);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on {
  background: linear-gradient(165deg, #d4eaf8 0%, #8ec5ea 38%, #fff 100%);
  border-color: #4a8cb8;
  box-shadow: 0 0.56rem 1.375rem rgba(74, 140, 184, 0.22);
}

html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__idx,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__mood,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__yen,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__num,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__name,
html[data-theme="light"] .b2b--storefront .sf-tierdeck__card--on .sf-tierdeck__who {
  color: var(--b2b-accent-dark);
}

.b2b--storefront .btn--outline {
  border-color: var(--b2b-accent-border);
  color: var(--b2b-accent-text);
}

html[data-theme="light"] .b2b--storefront .btn--outline {
  color: var(--b2b-accent-dark);
}

/* Template lookbook + atelier */
.sf-tpl {
  margin: 1.1rem 0 0.2rem;
}

.sf-tpl__card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: 1.2rem;
  box-shadow: 0 12px 32px rgba(20, 14, 6, 0.05);
  display: block;
  overflow: hidden;
  padding: 0.95rem 0.95rem 1rem;
  text-decoration: none;
  color: inherit;
}

html[data-theme="dark"] .sf-tpl__card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sf-tpl__top {
  align-items: flex-end;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.sf-tpl__kicker {
  color: var(--gold);
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sf-tpl__title {
  color: #1a1510;
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.2rem;
}

html[data-theme="dark"] .sf-tpl__title {
  color: #faf6ef;
}

.sf-tpl__sub {
  color: var(--text-3);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.18rem;
}

.sf-tpl__price {
  color: #1a1510;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

html[data-theme="dark"] .sf-tpl__price {
  color: #faf6ef;
}

.sf-tpl__price em {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  margin-right: 0.08rem;
}

.sf-tpl__go {
  color: rgba(26, 21, 16, 0.48);
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 0.12rem;
  text-align: right;
}

.sf-tpl__film {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.sf-tpl__film::-webkit-scrollbar {
  display: none;
}

.sf-tpl__shot {
  background: #111;
  border-radius: 0.7rem;
  flex: 0 0 5.6rem;
  height: 7.4rem;
  overflow: hidden;
  position: relative;
}

.sf-tpl__shot img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sf-tpl__shot span {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  bottom: 0;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  left: 0;
  padding: 1.1rem 0.4rem 0.4rem;
  position: absolute;
  right: 0;
}

.tpl-atelier {
  margin: 0 auto;
  max-width: 48rem;
  padding: calc(var(--header-h) + 1.1rem) 1.25rem 7rem;
}

.tpl-stage {
  display: grid;
  gap: 1rem;
}

.tpl-hero {
  overflow: hidden;
  position: relative;
}

.tpl-hero__frame {
  aspect-ratio: 16 / 11;
  background: #111;
  border-radius: 1.25rem;
  overflow: hidden;
}

.tpl-hero__frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tpl-hero__copy {
  margin-top: 0.95rem;
}

.tpl-hero__kicker {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.tpl-hero__name {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.25rem 0 0;
}

html[data-theme="light"] .tpl-hero__name {
  color: #1a1510;
}

.tpl-hero__mood {
  color: var(--text-3);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.tpl-edits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.tpl-edits i {
  background: rgba(201, 169, 98, 0.12);
  border-radius: 99rem;
  color: #8a7340;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
}

html[data-theme="dark"] .tpl-edits i {
  background: rgba(201, 169, 98, 0.14);
  color: #e8d5a8;
}

.tpl-film {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.15rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.tpl-film::-webkit-scrollbar {
  display: none;
}

.tpl-film__shot {
  background: none;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  flex: 0 0 5.2rem;
  overflow: hidden;
  padding: 0;
}

.tpl-film__shot.is-on {
  border-color: #c9a962;
  box-shadow: 0 8px 22px rgba(201, 169, 98, 0.22);
}

.tpl-film__shot img {
  display: block;
  height: 6.8rem;
  object-fit: cover;
  width: 5.2rem;
}

.tpl-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.tpl-cta .btn {
  flex: 1;
}

@media (min-width: 48rem) {
  .tpl-stage {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .tpl-hero__copy {
    margin-top: 0;
  }
}

/* Motion SKU — live film instead of case stills */
.sf-panel--proof {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.sf-panel--proof .sf-panel__head,
.sf-panel--proof .sf-highlights {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.sf-motion,
.sf-proof--motion {
  margin-bottom: 0.85rem;
}

.sf-3d {
  aspect-ratio: 3 / 4;
  background: #0b0a09;
  color: #f4ead4;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-height: min(34rem, 72svh);
  max-width: calc(min(34rem, 72svh) * 0.75);
  overflow: hidden;
  width: 100%;
}

.sf-3d__bar {
  align-items: center;
  background: #161412;
  display: flex;
  gap: 0.45rem;
  padding: 0.48rem 0.7rem;
}

.sf-3d__url {
  color: rgba(240, 224, 188, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sf-3d__nav {
  align-items: center;
  border-bottom: 1px solid rgba(240, 224, 188, 0.08);
  display: flex;
  font-size: 0.62rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding: 0.45rem 0.75rem;
}

.sf-3d__nav span:last-child {
  color: rgba(232, 212, 168, 0.55);
}

.sf-3d__hero {
  cursor: grab;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

.sf-proof--motion.is-grabbing .sf-3d__hero {
  cursor: grabbing;
}

.sf-3d__hero canvas {
  display: block;
  height: 100%;
  width: 100%;
}

.sf-3d__foot {
  align-items: flex-end;
  background: #0b0a09;
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
  padding: 0.7rem 0.75rem 0.85rem;
}

.sf-3d__foot strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sf-3d__foot span {
  color: rgba(232, 212, 168, 0.55);
  display: block;
  font-size: 0.62rem;
  margin-top: 0.15rem;
}

.sf-3d__go {
  color: #e8d5a8;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.sf-3d__go:hover {
  color: #f6eedc;
}

.sf-motion__loader {
  background: rgba(232, 212, 168, 0.12);
  height: 1px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

.sf-motion__loader span {
  background: linear-gradient(90deg, #f0e0bc, #c9a962, #b8a0e8);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.sf-proof--motion.is-loaded .sf-motion__loader {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sf-panel--proof .sf-panel__head {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@media (pointer: coarse) {
  .sf-3d,
  .sf-shop,
  .sf-film__stage {
    max-height: min(22.5rem, 52svh);
    max-width: calc(min(22.5rem, 52svh) * 0.75);
  }
}

.sf-proof {
  margin-bottom: 0.85rem;
}

.sf-shop {
  aspect-ratio: 3 / 4;
  background: #f6f2ea;
  color: #1a1510;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-height: min(34rem, 72svh);
  max-width: calc(min(34rem, 72svh) * 0.75);
  overflow: hidden;
  width: 100%;
}

.sf-shop__bar {
  align-items: center;
  background: #efe8dc;
  display: flex;
  gap: 0.45rem;
  padding: 0.48rem 0.7rem;
}

.sf-shop__dots {
  background: radial-gradient(circle at 4px 50%, #d9c5a0 3px, transparent 4px),
    radial-gradient(circle at 14px 50%, #d9c5a0 3px, transparent 4px),
    radial-gradient(circle at 24px 50%, #d9c5a0 3px, transparent 4px);
  display: block;
  height: 10px;
  width: 30px;
}

.sf-shop__url {
  color: rgba(26, 21, 16, 0.42);
  flex: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sf-shop__bag {
  font-size: 0.72rem;
}

.sf-shop__bag em {
  font-style: normal;
  font-weight: 800;
}

.sf-shop__hero {
  background: #e7dfd2;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.sf-shop__hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sf-shop__meta {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0.75rem 0.2rem;
}

.sf-shop__meta span {
  font-size: 0.82rem;
  font-weight: 800;
}

.sf-shop__meta strong {
  font-size: 0.78rem;
  font-weight: 800;
}

.sf-shop__row {
  display: flex;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem 0.2rem;
}

.sf-shop__thumb {
  appearance: none;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  cursor: pointer;
  flex: 1;
  overflow: hidden;
  padding: 0;
}

.sf-shop__thumb.is-on {
  border-color: #c9a962;
  box-shadow: 0 0 0 1px #c9a962;
}

.sf-shop__thumb img {
  display: block;
  height: 3.1rem;
  object-fit: cover;
  width: 100%;
}

.sf-shop__cta {
  appearance: none;
  background: #1a1510;
  border: 0;
  color: #f6eedc;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0.45rem 0.75rem 0.85rem;
  padding: 0.7rem 0.5rem;
}

.sf-shop__cta.is-in {
  background: #c9a962;
  color: #1a1408;
}

.b2b--storefront .sf-shop__thumb.is-on {
  border-color: #4a8cb8;
  box-shadow: 0 0 0 1px #4a8cb8;
}

.b2b--storefront .sf-shop__cta.is-in {
  background: #4a8cb8;
  color: #f4f9fc;
}

.sf-film {
  background: #050505;
}

.sf-film__stage {
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  max-height: min(34rem, 72svh);
  max-width: calc(min(34rem, 72svh) * 0.75);
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  width: 100%;
}

.sf-film__shot {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.7s ease;
}

.sf-film__shot.is-on {
  opacity: 1;
  z-index: 1;
}

.sf-film__shot img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  width: 100%;
}

.sf-film__shot.is-on img {
  animation: sf-film-ken 7.5s ease-in-out alternate infinite;
}

.sf-film__copy {
  bottom: 1.2rem;
  color: #f6eedc;
  left: 0.9rem;
  pointer-events: none;
  position: absolute;
  right: 0.9rem;
  z-index: 2;
}

.sf-film__copy span {
  color: rgba(232, 212, 168, 0.7);
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sf-film__copy strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}

.sf-film__dots {
  bottom: 0.7rem;
  display: flex;
  gap: 0.28rem;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.sf-film__dot {
  background: rgba(240, 224, 188, 0.28);
  border-radius: 99rem;
  display: block;
  height: 4px;
  width: 4px;
}

.sf-film__dot.is-on {
  background: #f0e0bc;
  width: 14px;
}

.sf-film__note {
  background: #0c0a08;
  color: rgba(232, 213, 168, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0.72rem 1rem 0.85rem;
  text-align: center;
}

@keyframes sf-film-ken {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.16) translateY(-2%); }
}

html[data-theme="light"] .build--storefront .sf-panel--proof {
  background: #fff;
}

html[data-theme="light"] .b2b--storefront .sf-3d__go,
html[data-theme="light"] .b2b--storefront .sf-film__note {
  color: #8ec5ea;
}

@media (prefers-reduced-motion: reduce) {
  .sf-film__shot.is-on img {
    animation: none;
  }
}
