:root {
  --font-body: "Manrope", "Noto Sans SC", sans-serif;
  --font-display: "Prata", "Noto Serif SC", serif;
  --font-display-zh: "Noto Serif SC", "Prata", serif;
  --bg: #fff4f8;
  --surface: rgba(255, 251, 253, 0.96);
  --surface-soft: rgba(255, 246, 250, 0.9);
  --text: #362332;
  --muted: #7e6978;
  --pink: #dc5d95;
  --pink-deep: #b73e76;
  --pink-soft: #ffb6d4;
  --plum: #533347;
  --line: rgba(96, 64, 83, 0.12);
  --shadow: 0 24px 60px rgba(185, 91, 137, 0.12);
  --shadow-soft: 0 12px 28px rgba(185, 91, 137, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --max-width: 1260px;
}

html[data-language="zh"] {
  --font-display: var(--font-display-zh);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(255, 182, 212, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(220, 93, 149, 0.16), transparent 20%),
    linear-gradient(180deg, #fff8fb 0%, #fff4f8 50%, #fff0f6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(220, 93, 149, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 93, 149, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 88%);
}

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

figure {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.promo-strip,
.site-header,
.section-surface,
.partner-logo,
.partner-pill,
.feature-card,
.process-visual,
.step-card,
.brand-card,
.qr-showcase,
.contact-point,
.cooperate-card {
  backdrop-filter: blur(16px);
}

.promo-strip,
.site-header,
.section-surface {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.05rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, rgba(255, 251, 253, 0.9), rgba(255, 239, 246, 0.82));
}

.promo-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.promo-copy span:first-child {
  color: var(--text);
  font-weight: 800;
}

.promo-link,
.inline-link {
  color: var(--pink-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 249, 252, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-has-logo {
  gap: 0.7rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
  box-shadow: 0 12px 24px rgba(220, 93, 149, 0.22);
}

.brand-logo-image {
  display: block;
  width: clamp(8.2rem, 14vw, 11.5rem);
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy-logo {
  gap: 0.18rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.footer-column a {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.promo-link:hover,
.promo-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.cooperate-email:hover,
.cooperate-email:focus-visible {
  color: var(--pink-deep);
  border-color: currentColor;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
}

.language-button {
  min-width: 3.35rem;
  padding: 0.52rem 0.74rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.button:hover,
.button:focus-visible,
.follow-tab:hover,
.follow-tab:focus-visible {
  transform: translateY(-1px);
}

.language-button.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
  box-shadow: 0 14px 28px rgba(220, 93, 149, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.button-mini {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

main {
  display: grid;
  gap: 1.2rem;
}

.section-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 251, 253, 0.96), rgba(255, 244, 249, 0.88)),
    var(--surface);
}

.section-block,
.site-footer {
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 35rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 220, 235, 0.28);
  border-radius: 40px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(100deg, rgba(66, 41, 56, 0.86) 0%, rgba(66, 41, 56, 0.62) 42%, rgba(66, 41, 56, 0.18) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(66, 41, 56, 0.2) 100%),
    url("https://9ab07b4e.delivery.rocketcdn.me/wp-content/uploads/2025/08/Custom-Apparel-C-1-png.webp") center/cover;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255, 182, 212, 0.16), transparent 24%),
    radial-gradient(circle at right top, rgba(255, 182, 212, 0.12), transparent 18%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1rem;
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border: 1px solid rgba(255, 214, 232, 0.18);
  border-radius: 34px;
  background: linear-gradient(165deg, rgba(72, 44, 60, 0.78), rgba(72, 44, 60, 0.56));
  box-shadow: 0 22px 46px rgba(41, 24, 35, 0.16);
  backdrop-filter: blur(10px);
  text-align: center;
}

.section-label,
.card-label,
.hero-fact-label,
.contact-point-label,
.footer-heading {
  margin: 0;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label-hero {
  color: rgba(255, 205, 225, 0.96);
}

html[data-language="zh"] .section-label,
html[data-language="zh"] .card-label,
html[data-language="zh"] .hero-fact-label,
html[data-language="zh"] .contact-point-label,
html[data-language="zh"] .footer-heading {
  letter-spacing: 0.08em;
}

.hero-title,
.section-heading h2,
.feature-card h3,
.step-copy h3,
.qr-showcase h3,
.cooperate-email,
.partner-logo-copy strong,
.brand-card-copy strong {
  margin: 0;
  font-family: var(--font-display);
  text-wrap: balance;
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.95;
}

html[data-language="zh"] .hero-title {
  max-width: 14ch;
  line-height: 1.08;
}

.hero-intro,
.hero-note,
.section-copy,
.feature-card p,
.step-copy p,
.platform-handle,
.qr-showcase-copy-text,
.cooperate-email-copy,
.copy-feedback,
.footer-note,
.footer-bottom,
.contact-point,
.partner-logo-copy span,
.brand-card-copy p {
  color: var(--muted);
}

.hero-intro,
.hero-note {
  color: rgba(255, 246, 250, 0.9);
}

.hero-intro {
  margin: 0;
  max-width: 40rem;
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-note {
  max-width: 35rem;
}

.hero-note,
.section-copy,
.feature-card p,
.step-copy p,
.cooperate-email-copy,
.partner-logo-copy span,
.brand-card-copy p {
  margin: 0;
  line-height: 1.6;
}

.hero-actions,
.cooperate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.45rem;
  width: min(100%, 42rem);
}

.hero-fact {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 244, 250, 0.12);
  backdrop-filter: blur(12px);
  text-align: center;
}

.hero-fact strong {
  font-size: 1rem;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
}

.section-heading-centered {
  max-width: 50rem;
  margin: 0 auto 1.2rem;
  justify-items: center;
  text-align: center;
}

.section-heading-centered .section-copy {
  max-width: 42rem;
}

.section-heading h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.partners-section,
.services-section,
.brand-section,
.follow-contact-section {
  display: grid;
  gap: 1rem;
}

.partner-logo-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.partner-logo,
.partner-pill,
.feature-card,
.step-card,
.brand-card,
.qr-showcase,
.contact-point,
.cooperate-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 5rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.partner-logo-card {
  align-items: center;
  justify-items: center;
  min-height: 8rem;
  text-align: center;
}

.partner-logo-copy {
  display: grid;
  gap: 0.45rem;
}

.partner-logo-copy strong {
  font-size: 1.1rem;
  line-height: 1.06;
}

.partner-logo-copy span {
  font-size: 0.9rem;
}

.partner-pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 251, 253, 0.96), rgba(255, 243, 248, 0.88)),
    rgba(255, 255, 255, 0.8);
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
}

.feature-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  line-height: 1.06;
}

.feature-card .inline-link {
  margin-top: auto;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.process-visual {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-content {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.step-list {
  display: grid;
  gap: 0.85rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
}

.step-copy {
  display: grid;
  gap: 0.35rem;
}

.step-copy h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.brand-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 7rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.brand-card-copy {
  align-content: start;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.brand-card-copy strong {
  font-size: 1.18rem;
  line-height: 1.06;
}

.brand-card-copy p {
  font-size: 0.92rem;
}

.follow-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
  gap: 1rem;
}

.follow-column,
.contact-column {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.follow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.follow-tab {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.follow-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
  box-shadow: 0 12px 24px rgba(220, 93, 149, 0.18);
}

.qr-showcase {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 245, 0.88)),
    rgba(255, 255, 255, 0.82);
  text-align: center;
}

.qr-showcase h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.platform-handle {
  margin: -0.15rem 0 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.qr-showcase-copy-text {
  margin: 0;
  max-width: 28rem;
}

.qr-showcase-image {
  width: min(100%, 17rem);
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-points {
  display: grid;
  gap: 0.75rem;
}

.contact-point {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-point span:last-child {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.cooperate-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 251, 253, 0.96), rgba(255, 243, 248, 0.88)),
    rgba(255, 255, 255, 0.8);
}

.cooperate-email {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.copy-feedback {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 251, 253, 0.96), rgba(255, 244, 249, 0.88)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 1rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-brand-column {
  gap: 0.8rem;
}

.footer-note {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .feature-grid,
  .process-layout,
  .follow-contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding-top: 0.75rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 28px;
  }

  .site-nav,
  .header-actions {
    width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero {
    min-height: 30rem;
  }

  .hero-facts,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body::before {
    background-size: 24px 24px;
  }

  .promo-strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .hero,
  .section-block,
  .site-footer {
    padding: 1rem;
  }

  .hero {
    min-height: 28rem;
    background-position: 64% center;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .section-heading h2,
  .feature-card h3,
  .step-copy h3,
  .qr-showcase h3,
  .cooperate-email,
  .partner-logo-copy strong,
  .brand-card-copy strong {
    font-size: clamp(1.22rem, 5.8vw, 1.65rem);
  }

  .hero-actions,
  .cooperate-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .feature-grid,
  .partner-logo-strip,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .follow-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .follow-tab {
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    padding: 0.8rem;
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-logo-image {
    width: 8.5rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    gap: 0.7rem;
    font-size: 0.84rem;
  }

  .site-nav a:last-child {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.6rem;
  }

  .language-switch {
    width: 100%;
    justify-content: space-between;
  }

  .language-button {
    flex: 1 1 0;
  }

  .header-actions .button-mini {
    width: auto;
    min-height: 2.55rem;
    padding-inline: 0.95rem;
  }

  .follow-tabs {
    grid-template-columns: 1fr;
  }

  .qr-showcase-image {
    width: min(100%, 15rem);
  }
}
