:root {
  --ink: #2c2a28;
  --ink-soft: #5c5752;
  --cream: #fff9f0;
  --coral: #e07a6a;
  --coral-deep: #c45f52;
  --teal: #6fafa7;
  --teal-deep: #4f8f87;
  --line: rgba(44, 42, 40, 0.1);
  --shadow: 0 22px 50px rgba(44, 42, 40, 0.08);
  --radius: 22px;
  --font-en: "Nunito", system-ui, sans-serif;
  --font-zh: "Noto Sans TC", "Noto Sans SC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-sc: "Noto Sans SC", "Noto Sans TC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-zh), var(--font-en);
  font-weight: 500;
  line-height: 1.65;
  background:
    radial-gradient(900px 520px at 90% -5%, rgba(224, 122, 106, 0.18), transparent 55%),
    radial-gradient(800px 480px at -5% 15%, rgba(111, 175, 167, 0.2), transparent 50%),
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 40%, #f7f1e8 100%);
  overflow-x: hidden;
}

html[data-lang="en"] body {
  font-family: var(--font-en), var(--font-zh);
}

html[data-lang="hans"] body {
  font-family: var(--font-sc), var(--font-en);
}

/* Language switch: show only active language */
[data-i18n] {
  display: none !important;
}

html[data-lang="yue"] [data-i18n="yue"],
html[data-lang="yue"] [data-i18n="zh"],
html[data-lang="hant"] [data-i18n="hant"],
html[data-lang="hant"] [data-i18n="zh"],
html[data-lang="hans"] [data-i18n="hans"],
html[data-lang="en"] [data-i18n="en"] {
  display: inline !important;
}

/* Language buttons: Chinese pages show ENG; English shows Chinese options */
.lang-btn[data-show-on="en"] {
  display: none;
}

html[data-lang="en"] .lang-btn[data-show-on="zh"] {
  display: none;
}

html[data-lang="en"] .lang-btn[data-show-on="en"] {
  display: inline-flex;
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(44, 42, 40, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.logo img {
  width: 48px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.logo-text {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--coral-deep);
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.75);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--coral-deep);
  border-color: rgba(224, 122, 106, 0.4);
  background: #fff;
  transform: translateY(-1px);
}

.lang-btn-primary {
  background: linear-gradient(120deg, rgba(224, 122, 106, 0.16), rgba(111, 175, 167, 0.18));
  border-color: rgba(111, 175, 167, 0.4);
  color: var(--ink);
}

/* Home first viewport: brand + Apps + Products */
.home-stage {
  max-width: 1120px;
  margin: 0 auto;
  min-height: calc(100svh - 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  padding: clamp(1rem, 3vh, 1.75rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 4vh, 2.5rem);
}

.brand-strip {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.brand-mascot {
  width: clamp(96px, 16vw, 140px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(44, 42, 40, 0.1));
  animation: float 8s var(--ease) infinite;
}

.brand-strip-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
}

.brand {
  margin: 0;
}

.brand-main {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
  background: linear-gradient(100deg, var(--coral) 8%, #c9845c 48%, var(--teal-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-main-compact {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
}

@supports not (background-clip: text) {
  .brand-main {
    -webkit-text-fill-color: currentColor;
    color: var(--coral-deep);
  }
}

html[data-lang="yue"] .brand-main,
html[data-lang="hant"] .brand-main,
html[data-lang="hans"] .brand-main {
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.mission,
.copy {
  margin: 1.25rem 0 0;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 500;
  color: var(--ink-soft);
}

.mission-compact {
  margin: 0.4rem 0 0;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  max-width: 36rem;
}

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.gateway-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.gateway-card:hover,
.gateway-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(111, 175, 167, 0.45);
  background: #fff;
}

.gateway-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.gateway-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(44, 42, 40, 0.1);
}

.gateway-thumb-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.gateway-thumb-row img {
  width: 40px;
  height: auto;
}

.gateway-pair-thumb {
  width: 56px !important;
}

.footer-brand img {
  width: 40px;
  height: 30px;
  object-fit: contain;
  background: transparent;
}

.gateway-tee-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--moss, #2f5a45);
  background: linear-gradient(160deg, #f3ebe0, #fff9f0);
  border: 1px solid var(--line);
}

.gateway-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.gateway-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.gateway-desc {
  margin: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.gateway-cta {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--coral-deep);
}

.gateway-apps:hover,
.gateway-apps:focus-visible {
  border-color: rgba(224, 122, 106, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--coral), #de8f6a 55%, var(--teal));
  color: #fffaf6;
  box-shadow: 0 10px 28px rgba(224, 122, 106, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(120deg, var(--coral-deep), #c97b55 55%, var(--teal-deep));
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.7);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(224, 122, 106, 0.4);
  color: var(--coral-deep);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.mascot-glow {
  position: absolute;
  width: min(340px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.9), transparent 45%),
    radial-gradient(circle, rgba(111, 175, 167, 0.28), rgba(224, 122, 106, 0.14) 55%, transparent 70%);
  animation: pulse 7s var(--ease) infinite;
}

.mascot {
  position: relative;
  width: min(360px, 78vw);
  height: auto;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(44, 42, 40, 0.12));
  animation: float 8s var(--ease) infinite;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-intro {
  margin-bottom: 2.25rem;
  max-width: 38rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

html[data-lang="yue"] h2,
html[data-lang="hant"] h2,
html[data-lang="hans"] h2 {
  letter-spacing: 0.02em;
}

.story {
  padding-top: 1rem;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: var(--shadow);
}

.story-card {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.story-card img {
  width: min(240px, 58vw);
  background: transparent;
  filter: drop-shadow(0 14px 24px rgba(44, 42, 40, 0.1));
}

.story-card figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.85);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(111, 175, 167, 0.45);
}

.product-icon {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(44, 42, 40, 0.1);
}

.product-tag {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.product-body h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-desc {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.app-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral-deep);
}

.merch {
  padding-bottom: clamp(4.5rem, 11vh, 7rem);
}

.merch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.merch-preview {
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(111, 175, 167, 0.28), transparent 55%),
    linear-gradient(160deg, #f7ebe0, #fff9f0 70%);
  border: 1px solid var(--line);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(360px, 100%);
}

.product-preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.65rem;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
}

.product-preview-item img {
  width: 56px;
  height: auto;
}

.product-preview-tee svg {
  width: 56px;
  height: auto;
}

.product-preview-tee .shirt-body {
  fill: #fffdf9;
  stroke: rgba(44, 42, 40, 0.14);
  stroke-width: 1;
}

.product-preview-more {
  justify-content: center;
  min-height: 110px;
  background: rgba(111, 175, 167, 0.1);
}

.more-dot {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
}

.coming-soon-section {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  border: 1px dashed var(--line);
  background: rgba(255, 252, 247, 0.7);
}

.coming-soon-note {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .product-preview-grid {
    grid-template-columns: 1fr;
  }
}

.shirt {
  width: min(320px, 100%);
  animation: float 8s var(--ease) infinite;
}

.shirt-body {
  fill: #fffdf9;
  stroke: rgba(44, 42, 40, 0.16);
  stroke-width: 2;
}

.shirt-neck {
  fill: #f0e7db;
  stroke: rgba(44, 42, 40, 0.1);
  stroke-width: 1.5;
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 40px;
  height: 30px;
  object-fit: contain;
  background: transparent;
}

.footer-brand p {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
}

.footer-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .gateway-grid,
  .story-layout,
  .merch-layout {
    grid-template-columns: 1fr;
  }

  .home-stage {
    min-height: auto;
    justify-content: flex-start;
  }

  .brand-strip {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .product-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .product-icon {
    width: 96px;
    height: 96px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .nav {
    display: none;
  }

  .brand-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mascot,
  .mascot-glow,
  .brand-mascot,
  .shirt,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Shop / T-shirt page —— */
.shop-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
}

.shop-hero {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.demo-section {
  margin-bottom: 2.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: 24px;
  border: 1px dashed rgba(111, 175, 167, 0.55);
  background: rgba(255, 252, 247, 0.9);
}

.demo-section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.demo-note {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
}

.sticker-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.sticker-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(224, 122, 106, 0.12), transparent 55%),
    linear-gradient(160deg, #f3ebe0, #fff9f0);
}

.sticker-preview img {
  width: 88px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(44, 42, 40, 0.12));
}

.demo-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(111, 175, 167, 0.2);
}

.sticker-info h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}

.buy-btn-pending {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 560px) {
  .sticker-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .sticker-info .buy-btn {
    width: 100%;
  }
}

.shop-hero h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.shop-lede {
  margin-top: 1rem;
}

.pay-methods {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-methods li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.pay-methods-large {
  margin-top: 1.25rem;
}

.pay-methods-large li {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tee-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.85);
  box-shadow: var(--shadow);
}

.tee-preview {
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 0.75rem;
  min-height: 260px;
}

.tee-preview svg {
  width: min(220px, 70%);
}

.tee-cream {
  background: linear-gradient(160deg, #f3ebe0, #fff9f0);
}

.tee-cream .shirt-body {
  fill: #fffdf9;
}

.tee-cream .shirt-neck {
  fill: #efe6da;
}

.tee-coral {
  background: linear-gradient(160deg, #f6d7d0, #fff5f1);
}

.tee-coral .shirt-body {
  fill: #f2c4b8;
}

.tee-coral .shirt-neck {
  fill: #e8b0a3;
}

.tee-teal {
  background: linear-gradient(160deg, #d5e8e4, #f3faf8);
}

.tee-teal .shirt-body {
  fill: #9ec9c2;
}

.tee-teal .shirt-neck {
  fill: #87b8b0;
}

.tee-ink {
  background: linear-gradient(160deg, #d8d4cf, #f4f1ed);
}

.tee-ink .shirt-body {
  fill: #3a3632;
  stroke: rgba(255, 255, 255, 0.12);
}

.tee-ink .shirt-neck {
  fill: #2a2724;
  stroke: rgba(255, 255, 255, 0.08);
}

.tee-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.tee-info h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tee-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.tee-price {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--coral-deep);
}

.tee-info .buy-btn {
  align-self: flex-start;
  min-width: 7.5rem;
}

.shop-checkout-note {
  margin-top: 3rem;
  padding: 1.5rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.8);
}

.shop-checkout-note h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.shop-checkout-note .copy {
  margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .tee-info .buy-btn {
    width: 100%;
  }
}

/* —— Slowmeet product page —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 4.5rem;
}

.product-hero {
  text-align: center;
  padding: 1rem 0 2.5rem;
}

.product-hero-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 1.25rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-hero h1 {
  margin: 0.2rem 0 0;
}

.product-subname {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.product-lede {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.product-hero .hero-actions {
  justify-content: center;
}

.product-section {
  margin-top: 2.75rem;
}

.product-section h2 {
  margin: 0 0 0.85rem;
}

.soft-panel,
.join-panel {
  padding: 1.5rem 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow);
}

.join-panel {
  margin-top: 3.25rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(224, 122, 106, 0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(111, 175, 167, 0.16), transparent 50%),
    rgba(255, 252, 247, 0.9);
}

.name-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.name-card {
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.85);
}

.name-word {
  margin: 0 0 0.55rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, var(--coral), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.name-card .copy {
  margin: 0;
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.feature-grid-two {
  margin-top: 1.1rem;
}

.feature-card {
  padding: 1.1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.78);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .name-cards,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-hero .btn {
    width: 100%;
  }
}


