:root {
  --business-progress: 0;
  --hero-exit-progress: 0;
  --media-radius: 8px;
  --ink: #070707;
  --muted: #5f5f63;
  --surface: #ffffff;
  --black: #000000;
  --cta: #ff3158;
  --panel: #e9bee9;
  --cyan: #56e1e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body.has-workspace-shell {
  overflow: hidden;
}

.is-restoring-workspace body {
  visibility: hidden;
}

.is-restoring-workspace body.has-workspace-shell {
  visibility: visible;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 56px;
  padding: 4px 28px 2px;
  background: var(--surface);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 240px;
  height: 64px;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-mark {
  display: block;
  justify-self: end;
  width: 188px;
  height: auto;
  transform: translateY(6px);
}

.menu-button {
  display: grid;
  justify-self: center;
  gap: 5px;
  width: 28px;
  padding: 5px 0;
  transform: translateY(6px);
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.business-hero {
  height: 190svh;
  padding: 0 8px;
  background: var(--surface);
}

.hero-card {
  position: sticky;
  top: 56px;
  height: calc(100svh - 56px);
  overflow: hidden;
  border-radius: 0;
  background: var(--surface);
  color: #fff;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.video-card.has-video {
  background: var(--surface);
}

.phone-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04);
  transition: opacity 420ms ease;
}

.primary-media {
  opacity: 1;
}

.video-card.has-video .phone-media {
  opacity: 1;
}

.video-card.has-video .fallback-logo {
  opacity: 0;
}

.morph-video {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1120px, calc(100vw - 16px));
  height: calc(100% - 22px);
  padding: 36px;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: var(--surface);
  box-shadow: none;
  transform: translate(-50%, -50%);
  will-change: width, height, transform, border-radius;
}

.morph-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  opacity: clamp(0, calc(1 - var(--business-progress) * 10), 1);
  pointer-events: none;
}

.morph-video::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 19px;
  opacity: clamp(0, calc((var(--business-progress) - 0.35) * 1.9), 1);
  transform: translate(-50%, -50%);
}

.morph-video .fallback-logo {
  position: absolute;
  left: 50%;
  top: 43%;
  width: min(620px, 76%);
  max-width: none;
  opacity: calc(0.17 + var(--business-progress) * 0.22);
  transform: translate(-50%, -50%) rotate(-4deg)
    scale(calc(1 - var(--business-progress) * 0.18));
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.34));
}

.morph-video span,
.morph-video strong,
.morph-video em {
  position: relative;
  z-index: 2;
  opacity: clamp(0, calc(1 - var(--business-progress) * 1.35), 1);
}

.morph-video span {
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.morph-video strong {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.08;
}

.morph-video em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-style: normal;
  font-weight: 620;
}

.support-phone {
  position: absolute;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--phone-width);
  aspect-ratio: 9 / 16;
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-radius: var(--media-radius);
  background: var(--surface);
  box-shadow: none;
  opacity: clamp(0, calc((var(--business-progress) - 0.3) * 4.2), 1);
  transform:
    translateY(calc(var(--hero-exit-progress) * var(--exit-y)))
    scale(clamp(0.08, calc((var(--business-progress) - 0.3) * 4.2), 1));
  transform-origin: left bottom;
}

.support-phone::before {
  content: none;
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 15px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.support-phone span {
  position: relative;
  z-index: 3;
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.support-phone strong {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
}

.support-one {
  left: 8%;
  top: 11%;
  --phone-width: clamp(220px, 18vw, 340px);
  --exit-y: -260px;
  --phone-bg:
    radial-gradient(circle at 28% 18%, #ffe46a 0 10%, transparent 11%),
    linear-gradient(145deg, #17ac5d, #101112 62%);
}

.support-two {
  right: 24%;
  top: 8%;
  --phone-width: clamp(140px, 12vw, 230px);
  --exit-y: -190px;
  --phone-bg:
    radial-gradient(circle at 70% 24%, #fff 0 8%, transparent 9%),
    linear-gradient(150deg, #b56a42, #2f4547 48%, #111);
}

.support-three {
  left: 12%;
  bottom: 2%;
  --phone-width: clamp(72px, 5vw, 112px);
  --exit-y: -320px;
  --phone-bg:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 8px, transparent 8px 18px),
    linear-gradient(155deg, #25283a, #89512f 50%, #070707);
}

.support-four {
  left: 18%;
  bottom: -2%;
  --phone-width: clamp(180px, 15vw, 280px);
  --exit-y: -230px;
  --phone-bg:
    radial-gradient(circle at 48% 24%, #ff3158 0 13%, transparent 14%),
    linear-gradient(150deg, #181818, #6842d8 50%, #070707);
}

.support-five {
  right: 13%;
  top: 26%;
  --phone-width: clamp(86px, 7vw, 136px);
  --exit-y: -300px;
  --phone-bg:
    radial-gradient(circle at 42% 24%, #ffd36e 0 11%, transparent 12%),
    linear-gradient(145deg, #6f5132, #1b1b1d 62%);
}

.support-six {
  right: 9%;
  bottom: -9%;
  --phone-width: clamp(190px, 17vw, 330px);
  --exit-y: -150px;
  --phone-bg:
    radial-gradient(circle at 76% 22%, #fff 0 9%, transparent 10%),
    linear-gradient(150deg, #b49871, #2f302d 48%, #111);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(850px, calc(100% - 48px));
  text-align: center;
  transform: translate(-50%, -50%) translateY(calc(var(--business-progress) * -92px));
  opacity: clamp(0, calc(1 - var(--business-progress) * 1.45), 1);
  pointer-events: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

[data-hero-title] {
  display: block;
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  min-height: 1.08em;
  font-size: clamp(48px, 5.8vw, 74px);
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

[data-hero-title].is-sliding-out {
  opacity: 0;
  transform: translateY(-28px);
}

[data-hero-title].is-sliding-in {
  animation: title-slide-in 360ms ease forwards;
}

@keyframes title-slide-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  max-width: 960px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%) translateY(calc(var(--business-progress) * -36px));
  opacity: clamp(0, calc(1 - var(--business-progress) * 1.2), 1);
}

.button,
.circle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  font-weight: 850;
}

.button {
  padding: 0 26px;
  border-radius: 999px;
  white-space: nowrap;
}

.button-primary {
  background: var(--cta);
  color: #fff;
}

.circle-button {
  width: 50px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
}

.cases-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.48fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 78px 42px 108px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 49, 88, 0.16), transparent 28%),
    linear-gradient(180deg, #030303, #0a0a0a 56%, #030303);
  color: #fff;
  overflow: hidden;
}

.cases-copy {
  position: sticky;
  top: 96px;
  max-width: 520px;
}

.cases-copy > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cases-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.cases-subtitle {
  display: block;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 780;
  line-height: 1.4;
}

.brand-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, 136px);
  grid-auto-rows: 136px;
  align-items: stretch;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 240, 235, 0.96)),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
}

.js .brand-grid {
  transform: translateX(24px);
  opacity: 0;
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.brand-grid.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.brand-grid.is-visible:hover {
  transform: translateX(-10px);
}

.brand-grid::before {
  content: none;
}

.brand-card {
  position: relative;
  z-index: 1;
  --brand-delay: 0ms;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.js .brand-card {
  opacity: 0;
  transform: translate3d(24px, 18px, 0);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  transition-delay: var(--brand-delay);
}

.brand-card img {
  display: block;
  width: 96%;
  height: 96%;
  max-width: 256px;
  max-height: 114px;
  object-fit: contain;
  transition: transform 280ms ease, filter 280ms ease;
}

.js .brand-card:nth-child(even) {
  transform: translate3d(-24px, 18px, 0);
}

.brand-card-large img {
  width: 98%;
  height: 98%;
  max-width: 286px;
  max-height: 124px;
}

.brand-card:nth-child(1) img,
.brand-card:nth-child(8) img {
  width: 98%;
  height: 98%;
  max-width: 280px;
  max-height: 126px;
}

.brand-card:nth-child(1) img {
  width: 100%;
  height: 100%;
  max-width: 312px;
  max-height: 132px;
}

.brand-card:hover img {
  filter: contrast(1.06);
  transform: translateY(-4px) scale(1.035);
}

.brand-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.brand-card.is-visible:hover {
  box-shadow: none;
}

.brand-card:nth-child(1) {
  --brand-delay: 0ms;
}

.brand-card:nth-child(2) {
  --brand-delay: 70ms;
}

.brand-card:nth-child(3) {
  --brand-delay: 140ms;
}

.brand-card:nth-child(4) {
  --brand-delay: 210ms;
}

.brand-card:nth-child(5) {
  --brand-delay: 280ms;
}

.brand-card:nth-child(6) {
  --brand-delay: 350ms;
}

.brand-card:nth-child(7) {
  --brand-delay: 420ms;
}

.brand-card:nth-child(8) {
  --brand-delay: 490ms;
}

.brand-card:nth-child(9) {
  --brand-delay: 560ms;
}

.brand-card:nth-child(10) {
  --brand-delay: 630ms;
}

.brand-card:nth-child(11) {
  --brand-delay: 700ms;
}

.brand-card:nth-child(12) {
  --brand-delay: 770ms;
}

@keyframes brand-panel-sheen {
  0%,
  24% {
    transform: translateX(0) rotate(16deg);
  }

  58%,
  100% {
    transform: translateX(420%) rotate(16deg);
  }
}

@keyframes brand-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.tiktok-stats-section {
  position: relative;
  padding: clamp(82px, 9vw, 138px) clamp(24px, 6vw, 96px) clamp(86px, 8vw, 126px);
  background: #fff;
  color: #070a14;
  overflow: hidden;
}

.tiktok-stats-heading {
  margin: 0 auto clamp(68px, 7vw, 104px);
  text-align: center;
}

.tiktok-stats-section h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(28px, 3.35vw, 52px);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.tiktok-stats-heading p {
  margin: 16px 0 0;
  color: rgba(7, 10, 20, 0.46);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 560;
  line-height: 1.45;
}

.tiktok-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1540px, 100%);
  margin: 0 auto;
}

.tiktok-stat {
  display: grid;
  align-content: start;
  min-height: 292px;
  padding: 0 clamp(28px, 4vw, 72px);
  text-align: center;
}

.tiktok-stat + .tiktok-stat {
  border-left: 1px solid rgba(7, 10, 20, 0.14);
}

.tiktok-stat strong {
  display: block;
  margin-bottom: clamp(34px, 4.2vw, 54px);
  font-size: clamp(96px, 11vw, 176px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.03em;
}

.tiktok-stat strong .stat-value {
  margin-left: 0;
  color: inherit;
  font-size: 1em;
  letter-spacing: -0.03em;
}

.tiktok-stat strong .stat-suffix {
  margin-left: 8px;
  color: #d8224f;
  font-size: 0.44em;
  letter-spacing: 0;
}

.tiktok-stat p {
  max-width: 430px;
  margin: 0 auto;
  color: rgba(7, 10, 20, 0.88);
  font-size: clamp(17px, 1.25vw, 23px);
  font-weight: 620;
  line-height: 1.55;
}

.brand-stories-section {
  --story-active-bg: #fff0e2;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(680px, 1fr);
  align-items: start;
  gap: clamp(42px, 6vw, 96px);
  padding:
    clamp(76px, 8vw, 118px)
    clamp(28px, 6vw, 90px)
    clamp(240px, 28vh, 380px);
  background: #fff;
  color: #090a0f;
}

.brand-stories-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: clamp(46px, 5vw, 72px);
  justify-self: center;
  width: min(100%, 430px);
}

.brand-stories-nav h2 {
  margin: 0;
  font-size: clamp(52px, 5.2vw, 88px);
  font-weight: 430;
  line-height: 1.1;
  letter-spacing: 0;
}

.story-account-list {
  display: grid;
  gap: 22px;
  max-width: 360px;
}

.story-account-list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 0 28px;
  border-radius: 18px;
  color: rgba(9, 10, 15, 0.24);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 620;
  transition:
    color 320ms ease,
    transform 220ms ease;
  overflow: hidden;
}

.story-account-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--story-active-bg);
  opacity: 0;
  transition:
    opacity 320ms ease,
    background-color 420ms ease;
}

.story-account-list a.is-active {
  color: rgba(7, 8, 13, 0.78);
  transform: translateX(6px);
}

.story-account-list a:hover {
  color: rgba(7, 8, 13, 0.48);
}

.story-account-list a.is-active::before {
  opacity: 1;
}

.story-card-stack {
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
}

.story-feature-card {
  --story-quote-color: rgba(194, 126, 76, 0.78);
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(28px, 3.4vw, 54px);
  min-height: min(300px, calc(100svh - 320px));
  padding: clamp(26px, 2.8vw, 40px);
  border-radius: 46px;
  background: #fff0e2;
  overflow: hidden;
  opacity: 0.72;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms ease;
}

.story-feature-card.is-current {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 28px 80px rgba(72, 48, 26, 0.08);
}

.story-feature-card-mint {
  --story-quote-color: rgba(88, 167, 157, 0.78);
  background: #dff7f3;
}

.story-feature-card-blue {
  --story-quote-color: rgba(106, 137, 190, 0.78);
  background: #e6f0ff;
}

.story-phone {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 210px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(61, 36, 20, 0.14);
}

.story-phone-caption {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  width: min(100%, 210px);
  margin-top: 4px;
  color: rgba(22, 19, 15, 0.56);
  font-size: 10px;
  font-weight: 620;
  line-height: 1;
}

.story-phone::before {
  content: none;
}

.story-phone video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.story-card-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
}

.story-quote {
  display: flex;
  gap: 9px;
  height: 28px;
  margin-bottom: 6px;
  align-items: flex-start;
}

.story-quote::before,
.story-quote::after {
  content: "";
  display: block;
  width: 16px;
  height: 26px;
  background: var(--story-quote-color);
  transform: skewX(-14deg);
}

.story-card-copy h3 {
  max-width: 700px;
  margin: 0 0 20px;
  color: #16130f;
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 320;
  line-height: 1.16;
  letter-spacing: 0;
}

.story-card-copy h3 strong {
  font-weight: 900;
}

.story-card-copy > p {
  margin: 0 0 clamp(30px, 3.4vw, 52px);
  color: #16130f;
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 520;
}

.story-card-copy > p strong {
  font-weight: 900;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.story-metrics > div {
  padding-right: clamp(24px, 4vw, 54px);
}

.story-metrics > div + div {
  padding-right: 0;
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 1px solid rgba(22, 19, 15, 0.14);
}

.story-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(38px, 3.6vw, 60px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.story-metrics strong span {
  font-size: 0.42em;
  letter-spacing: 0;
}

.story-metrics small {
  display: block;
  max-width: 210px;
  color: rgba(22, 19, 15, 0.82);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 650;
  line-height: 1.25;
}

.products-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 5vw, 76px);
  width: min(1280px, calc(100% - 56px));
  min-height: 414px;
  margin: 108px auto 96px;
  padding: 24px;
  border-radius: 14px;
  background: var(--panel);
  color: #111;
}

.product-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 64px) clamp(22px, 4vw, 48px);
}

.product-copy > p,
.contact > p {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 850;
}

.product-copy h2,
.contact h2 {
  max-width: 880px;
  margin-bottom: 34px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 930;
}

.product-copy > span {
  display: block;
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 620;
  line-height: 1.45;
}

.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 860;
}

.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  max-width: 630px;
  margin-top: clamp(48px, 8vw, 106px);
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  font-weight: 760;
}

.product-meta span {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.38);
}

.product-meta span + span {
  border-color: rgba(17, 17, 17, 0.12);
}

.product-visual {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 8px;
  background: #4b0807;
  color: #fff;
}

.product-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  animation: product-slide-rotate 9s infinite;
}

.product-slide-one {
  background:
    radial-gradient(circle at 72% 58%, rgba(255, 202, 232, 0.24), transparent 28%),
    linear-gradient(135deg, #3a0504, #5b100c 54%, #320403);
}

.product-slide-two {
  animation-delay: 4.5s;
  background:
    radial-gradient(circle at 44% 33%, rgba(255, 244, 255, 0.56), transparent 25%),
    radial-gradient(circle at 50% 84%, rgba(255, 132, 91, 0.58), transparent 34%),
    linear-gradient(180deg, #cfacd1 0%, #e7b7d7 44%, #ff8c72 100%);
}

.product-slide-two::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 22, 51, 0.32), rgba(61, 22, 51, 0) 52%),
    radial-gradient(circle at 83% 18%, rgba(255, 255, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.tiktok-shop-logo {
  position: absolute;
  z-index: 5;
  top: clamp(26px, 3vw, 44px);
  left: clamp(30px, 3.6vw, 54px);
  width: min(34%, 188px);
  height: auto;
}

.product-visual-title {
  position: relative;
  z-index: 2;
  padding: clamp(118px, 9vw, 148px) clamp(34px, 4vw, 54px) clamp(34px, 4vw, 54px);
}

.product-visual-title strong {
  display: block;
  font-size: clamp(66px, 7.2vw, 108px);
  font-weight: 940;
  line-height: 0.82;
  letter-spacing: 0;
}

.product-ribbon {
  position: absolute;
  right: -16%;
  bottom: -22%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  transform: rotate(15deg);
}

.product-ribbon::before,
.product-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.product-ribbon::before {
  background: #e9334e;
}

.product-ribbon::after {
  inset: 48px;
  background: #4b0807;
}

.product-ribbon-one {
  box-shadow: 0 0 34px rgba(237, 190, 237, 0.9);
  outline: 38px solid rgba(232, 190, 232, 0.9);
}

.product-ribbon-two {
  right: -35%;
  bottom: -48%;
  width: 55%;
  opacity: 0.92;
}

.creator-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transform-origin: 52% 50%;
  filter: saturate(1.04) contrast(1.02);
}

.product-slide-two .tiktok-shop-logo {
  width: min(38%, 216px);
  filter: drop-shadow(0 8px 18px rgba(72, 19, 54, 0.28));
}

.camera-viewfinder {
  position: absolute;
  z-index: 3;
  inset: clamp(26px, 3.2vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.camera-viewfinder::before,
.camera-viewfinder::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.13);
}

.camera-viewfinder::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.camera-viewfinder::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.camera-overlay {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 38px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(32, 16, 28, 0.26);
  color: #fff;
  box-shadow: 0 18px 46px rgba(78, 17, 48, 0.2);
  backdrop-filter: blur(10px);
}

.camera-overlay span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff315d;
  box-shadow: 0 0 0 5px rgba(255, 49, 93, 0.18);
}

.camera-overlay strong {
  font-size: 13px;
  font-weight: 840;
  line-height: 1;
}

.camera-focus {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.camera-focus-one {
  right: 8%;
  bottom: 12%;
  width: 23%;
  aspect-ratio: 9 / 16;
}

.camera-focus-two {
  left: 10%;
  bottom: 9%;
  width: 16%;
  aspect-ratio: 9 / 16;
  opacity: 0.76;
}

@keyframes product-slide-rotate {
  0%,
  48% {
    opacity: 1;
  }

  56%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.pricing-transition {
  --pricing-fade: 1;
  --pricing-card-scale: 1;
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.pricing-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #62c9cd;
  opacity: var(--pricing-fade);
  pointer-events: none;
  will-change: opacity;
}

.pricing-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(720px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  width: 100%;
  margin: 0;
  padding: clamp(96px, 11vw, 148px) clamp(28px, 7vw, 110px) clamp(138px, 14vw, 188px);
  overflow: hidden;
  background: transparent;
  color: #050505;
}

.pricing-section::before {
  content: none;
}

.pricing-heading {
  display: grid;
  gap: 2px;
  justify-self: start;
  max-width: 560px;
  margin-bottom: 0;
  text-align: left;
}

.pricing-heading p {
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 950;
  line-height: 0.94;
}

.pricing-heading span {
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 650;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: 1080px;
  justify-self: end;
  transform: scale(var(--pricing-card-scale));
  transform-origin: center center;
  will-change: transform;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 20px 94px auto;
  align-content: start;
  gap: clamp(22px, 2.2vw, 32px);
  min-height: 520px;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  color: #111;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(14, 78, 82, 0.16);
  backdrop-filter: blur(16px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease,
    background 240ms ease;
}

.pricing-card-featured {
  border-color: rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 96px rgba(8, 70, 74, 0.2);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
}

.pricing-card-head span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  transition: background 240ms ease;
}

.pricing-card-head h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1.18;
}

.pricing-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.pricing-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-card li strong {
  min-width: 58px;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 950;
  line-height: 1;
}

.pricing-card li span {
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(13px, 1.08vw, 15px);
  font-weight: 720;
  line-height: 1.45;
  white-space: nowrap;
}

.pricing-bonus {
  align-self: end;
  min-height: 20px;
  margin: 0 0 -10px;
  color: #ff3158;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-total {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 94px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.pricing-total span {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 900;
}

.pricing-total small {
  color: rgba(17, 17, 17, 0.54);
  font-size: 13px;
  font-weight: 780;
}

.pricing-total em {
  color: rgba(17, 17, 17, 0.38);
  font-size: 12px;
  font-style: normal;
  font-weight: 680;
  line-height: 1.4;
}

.pricing-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 48px;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.22);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.88)),
      rgba(255, 255, 255, 0.94);
    box-shadow: 0 40px 110px rgba(8, 70, 74, 0.28);
    transform: translateY(-10px) scale(1.018);
  }

  .pricing-card:hover .pricing-card-head span {
    background: #ff3158;
  }

  .pricing-card:hover .pricing-consult {
    background: #ff3158;
    box-shadow: 0 14px 34px rgba(255, 49, 88, 0.28);
    transform: translateY(-3px);
  }
}

.contact {
  position: relative;
  z-index: 0;
  display: grid;
  justify-items: center;
  padding: 96px 32px 120px;
  background: #fff;
  color: #111;
  text-align: center;
}

.contact-note {
  max-width: 720px;
  margin: -14px auto 30px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 16px;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.45fr);
  gap: clamp(44px, 7vw, 110px);
  padding: 58px 42px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f4ef;
  color: #111;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand img {
  display: block;
  width: min(260px, 80%);
  height: auto;
  margin-bottom: 28px;
}

.footer-brand p {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.65vw, 36px);
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
}

.footer-brand span {
  display: block;
  color: rgba(17, 17, 17, 0.62);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 17px;
  font-weight: 930;
  letter-spacing: 0;
}

.footer-links a {
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: 100%;
  color: rgba(17, 17, 17, 0.52);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.footer-links h3 small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a small {
  color: rgba(17, 17, 17, 0.34);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #111;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  font-weight: 760;
}

.feishu-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
}

.feishu-modal[hidden] {
  display: none;
}

.feishu-modal-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.feishu-modal-panel > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feishu-modal-panel h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}

.feishu-modal-panel span {
  display: none;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.portal-form {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.portal-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 12px;
}

.portal-input-row input {
  min-height: 60px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 18px;
  outline: none;
}

.portal-input-row input:focus {
  border-color: rgba(255, 49, 88, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 49, 88, 0.16);
}

.portal-input-row .button {
  min-height: 60px;
  font-size: 20px;
  font-weight: 950;
}

.portal-status {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.portal-status.is-error {
  color: #ff8aa0;
}

.portal-status.is-success {
  color: #77e7aa;
}

.portal-fallback {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.portal-fallback:hover,
.portal-fallback:focus-visible {
  color: #fff;
  outline: none;
}

.manager-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}

.manager-qr-modal[hidden] {
  display: none;
}

.manager-qr-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 18px 18px 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.manager-qr-panel img {
  display: block;
  width: min(430px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  border-radius: 8px;
}

.manager-qr-panel p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.35;
  text-align: center;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.workspace-shell {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  color: #111;
}

.workspace-shell[hidden] {
  display: none;
}

.workspace-bar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.2fr) minmax(120px, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 18px;
  min-width: 0;
  padding: 10px 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.workspace-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.workspace-brand img {
  display: block;
  width: 118px;
  height: auto;
}

.workspace-title {
  justify-self: center;
  min-width: 0;
  margin: 0;
  color: #111;
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-tabs {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  min-width: 0;
  gap: clamp(18px, 4vw, 72px);
  margin: 8px -22px 0;
  padding: 3px 22px 1px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f6f4ef;
}

.workspace-tabs button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 36px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.workspace-tabs button span {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.workspace-tabs button small {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.workspace-tabs button:hover,
.workspace-tabs button:focus-visible {
  color: #111;
}

.workspace-tabs button.is-active {
  color: #111;
}

.workspace-tabs button:hover small,
.workspace-tabs button:focus-visible small {
  color: rgba(17, 17, 17, 0.58);
}

.workspace-tabs button.is-active small {
  color: rgba(17, 17, 17, 0.58);
}

.workspace-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.38);
}

.workspace-tabs button:hover::after,
.workspace-tabs button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.workspace-tabs button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.workspace-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.workspace-actions a,
.workspace-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 880;
}

.workspace-actions a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(17, 17, 17, 0.72);
}

.workspace-actions button {
  border: 0;
  background: var(--cta);
  color: #fff;
  cursor: pointer;
}

.workspace-actions button[hidden] {
  display: none;
}

.workspace-actions .workspace-back {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: rgba(17, 17, 17, 0.72);
}

.workspace-stage {
  position: relative;
  min-height: 0;
  background: #fff;
}

.workspace-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #fff;
  color: #111;
  text-align: center;
  transition:
    opacity 820ms ease,
    visibility 820ms ease;
}

.workspace-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.workspace-loader h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 950;
  line-height: 1.08;
}

.workspace-loader h2 span {
  display: block;
}

.workspace-loader p {
  max-width: calc(100vw - 64px);
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.56);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.5;
  white-space: nowrap;
}

.feishu-crop {
  --feishu-crop-top: 72px;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.feishu-crop::before {
  content: none;
}

.workspace-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.workspace-frame.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.schedule-workspace {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: clamp(18px, 2.4vw, 30px);
  background: #f6f4ef;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.schedule-workspace.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.schedule-workspace[hidden] {
  display: none;
}

.schedule-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.schedule-hero p,
.schedule-panel > p,
.schedule-panel-head p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-hero h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.schedule-hero span {
  display: block;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 650;
  line-height: 1.7;
}

.schedule-hero button,
.schedule-brief-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.schedule-panel,
.schedule-status-grid article {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
}

.schedule-panel {
  padding: clamp(22px, 2.4vw, 32px);
}

.schedule-panel > p,
.schedule-panel-head p {
  color: rgba(17, 17, 17, 0.38);
}

.schedule-panel h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 1.12;
}

.schedule-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.schedule-panel-head h3 {
  margin-bottom: 0;
}

.schedule-panel-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 49, 88, 0.1);
  color: #ff3158;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.schedule-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-form-grid label {
  display: grid;
  gap: 8px;
}

.schedule-form-grid label span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  font-weight: 820;
}

.schedule-form-grid input,
.schedule-form-grid select,
.schedule-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  font-weight: 680;
  outline: none;
}

.schedule-form-grid textarea {
  resize: vertical;
  line-height: 1.6;
}

.schedule-wide-field {
  grid-column: 1 / -1;
}

.schedule-timeline {
  display: grid;
  gap: 12px;
}

.schedule-timeline div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "num title date"
    "num desc date";
  align-items: center;
  column-gap: 14px;
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  background: #f7f5ef;
}

.schedule-timeline strong {
  grid-area: num;
  color: rgba(17, 17, 17, 0.28);
  font-size: 24px;
  font-weight: 950;
}

.schedule-timeline span {
  grid-area: title;
  color: #111;
  font-size: 17px;
  font-weight: 900;
}

.schedule-timeline small {
  grid-area: desc;
  color: rgba(17, 17, 17, 0.5);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.schedule-timeline em {
  grid-area: date;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.schedule-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.schedule-status-grid article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 22px;
}

.schedule-status-grid strong {
  color: #111;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 950;
  line-height: 0.95;
}

.schedule-status-grid span {
  color: rgba(17, 17, 17, 0.5);
  font-size: 14px;
  font-weight: 760;
}

.asset-workspace {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 178px) minmax(0, 1fr);
  gap: 0;
  padding: 0 16px 16px;
  background: #f6f4ef;
  opacity: 0;
  pointer-events: none;
  transition: opacity 820ms ease;
}

.asset-workspace.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.asset-workspace[hidden] {
  display: none;
}

.asset-switcher {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 8px;
}

.asset-switcher button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number label";
  align-items: center;
  column-gap: 10px;
  min-height: 82px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(17, 17, 17, 0.34);
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.48;
  transition:
    opacity 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.asset-switcher button:hover,
.asset-switcher button:focus-visible {
  opacity: 0.82;
  color: rgba(17, 17, 17, 0.72);
  transform: translateX(4px);
}

.asset-switcher button.is-active {
  border-color: rgba(0, 0, 0, 0.12);
  border-right-color: transparent;
  border-radius: 8px 0 0 8px;
  background: #fff;
  color: #111;
  box-shadow: -10px 16px 36px rgba(0, 0, 0, 0.06);
  opacity: 1;
  transform: translateX(0);
}

.asset-switcher button.is-active::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  bottom: -1px;
  width: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.asset-switcher button span {
  grid-area: number;
  color: currentColor;
  font-size: 22px;
  font-weight: 860;
  line-height: 1;
}

.asset-switcher button strong {
  grid-area: title;
  min-width: 0;
  font-size: 17px;
  font-weight: 880;
  line-height: 1.08;
}

.asset-switcher button small {
  grid-area: label;
  color: currentColor;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.asset-viewer {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 8px 8px 8px;
  background: #fff;
}

.asset-viewer::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 6px;
  background: #fff;
  pointer-events: none;
}

.asset-viewer .feishu-crop {
  min-height: 0;
}

.asset-viewer .feishu-crop::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: var(--feishu-crop-top);
  background: #fff;
  pointer-events: none;
}

.asset-viewer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.js .reveal {
  opacity: 0;
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  will-change: opacity, transform;
}

.js .reveal-up {
  transform: translateY(48px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .morph-video,
  .hero-content,
  .hero-actions,
  .brand-grid,
  .brand-card,
  .product-slide-one,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .product-slide-two {
    display: none;
  }

  .brand-grid::before {
    display: none;
  }

  .brand-card.is-visible {
    animation: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 54px;
    padding: 8px 22px;
  }

  .brand {
    width: 190px;
    height: 54px;
  }

  .partner-mark {
    width: 164px;
    transform: translateY(4px);
  }

  .menu-button {
    transform: translateY(4px);
  }

  .business-hero {
    height: 188svh;
  }

  .hero-card {
    top: 54px;
    height: calc(100svh - 54px);
  }

  h1 {
    font-size: 38px;
  }

  [data-hero-title] {
    max-width: 520px;
    font-size: 48px;
  }

  .hero-content p {
    font-size: 27px;
  }

  .support-phone {
    width: 150px;
  }

  .support-one {
    left: 3%;
    top: 18%;
  }

  .support-two {
    right: 3%;
    top: 16%;
  }

  .support-three {
    left: 6%;
    bottom: 7%;
  }

  .support-four {
    left: 16%;
    right: auto;
    bottom: 5%;
    width: 176px;
  }

  .support-five {
    right: 3%;
    top: 34%;
  }

  .support-six {
    right: 8%;
    bottom: -5%;
  }

  .cases-section {
    grid-template-columns: 1fr;
    padding: 64px 32px 72px;
  }

  .cases-copy {
    position: static;
    max-width: 680px;
  }

  .brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, 114px);
    grid-auto-rows: 114px;
    gap: 12px;
    padding: 18px;
  }

  .brand-card {
    min-height: 0;
    padding: 9px;
  }

  .brand-card img {
    width: 96%;
    height: 96%;
    max-width: 198px;
    max-height: 90px;
  }

  .brand-card-large img {
    width: 98%;
    height: 98%;
    max-width: 222px;
    max-height: 98px;
  }

  .tiktok-stats-section {
    padding: 72px 28px 78px;
  }

  .tiktok-stats-section h2 {
    max-width: 760px;
    font-size: 32px;
  }

  .tiktok-stats-heading {
    margin-bottom: 56px;
  }

  .tiktok-stats-heading p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .tiktok-stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 720px;
  }

  .tiktok-stat {
    min-height: 0;
    padding: 34px 0 40px;
  }

  .tiktok-stat + .tiktok-stat {
    border-top: 1px solid rgba(7, 10, 20, 0.12);
    border-left: 0;
  }

  .tiktok-stat strong {
    margin-bottom: 24px;
    font-size: 112px;
  }

  .brand-stories-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 68px 28px 82px;
  }

  .brand-stories-nav {
    position: static;
    justify-self: stretch;
    gap: 28px;
    width: 100%;
    min-height: 0;
  }

  .brand-stories-nav h2 {
    font-size: 48px;
  }

  .story-account-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 10px;
  }

  .story-account-list a {
    justify-content: center;
    min-height: 54px;
    padding: 0 14px;
    font-size: 15px;
    text-align: center;
  }

  .story-account-list a.is-active,
  .story-account-list a:hover {
    transform: translateY(-3px);
  }

  .story-feature-card {
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
    gap: 34px;
    min-height: 0;
    padding: 30px;
    opacity: 1;
    transform: none;
  }

  .story-card-copy h3 {
    font-size: 38px;
  }

  .story-card-copy > p {
    margin-bottom: 56px;
  }

  .product-copy h2,
  .contact h2 {
    font-size: 34px;
  }

  .products-section {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
    min-height: 0;
    gap: 20px;
    padding: 20px;
  }

  .pricing-section {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
    padding: 76px 28px 124px;
  }

  .pricing-section::before {
    display: none;
  }

  .pricing-heading {
    max-width: 620px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: none;
    justify-self: stretch;
    transform-origin: center center;
  }

  .pricing-card {
    min-height: 0;
  }

  .product-copy {
    padding: 36px 28px 14px;
  }

  .product-meta {
    margin-top: 46px;
  }

  .product-visual {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px 32px 26px;
  }

  .footer-links {
    gap: 22px;
  }

  .workspace-bar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: stretch;
    gap: 8px;
  }

  .workspace-title {
    justify-self: stretch;
    text-align: center;
  }

  .workspace-brand img {
    width: 108px;
  }

  .workspace-tabs {
    justify-content: flex-start;
    gap: 28px;
    margin: 2px -22px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .workspace-tabs::-webkit-scrollbar {
    display: none;
  }

  .schedule-layout,
  .schedule-status-grid {
    grid-template-columns: 1fr;
  }

  .schedule-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .schedule-hero button {
    width: max-content;
  }

  .schedule-status-grid {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 50px;
    padding: 7px 14px;
  }

  .brand {
    width: 138px;
    height: 44px;
  }

  .partner-mark {
    width: 116px;
    transform: translateY(3px);
  }

  .menu-button {
    width: 24px;
    transform: translateY(3px);
  }

  .business-hero {
    height: 186svh;
  }

  .hero-card {
    top: 50px;
    height: calc(100svh - 50px);
  }

  .hero-content {
    top: 48%;
  }

  h1 {
    font-size: 32px;
  }

  [data-hero-title] {
    max-width: 300px;
    font-size: 34px;
  }

  .hero-content p {
    font-size: 22px;
  }

  .hero-actions {
    bottom: 38px;
    gap: 9px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .support-phone {
    width: 112px;
    border-radius: var(--media-radius);
    padding: 12px;
  }

  .support-phone span {
    font-size: 10px;
  }

  .support-phone strong {
    font-size: 16px;
  }

  .support-phone::before {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .support-one {
    left: 2%;
    top: 17%;
  }

  .support-two {
    right: 2%;
    top: 14%;
  }

  .support-three {
    left: 4%;
    bottom: 8%;
  }

  .support-four {
    left: 15%;
    right: auto;
    bottom: 7%;
    width: 128px;
  }

  .support-five {
    right: 2%;
    top: 35%;
  }

  .support-six {
    right: 4%;
    bottom: -4%;
  }

  .button {
    padding: 0 20px;
  }

  .circle-button {
    width: 46px;
    height: 46px;
  }

  .cases-section {
    padding: 54px 18px 58px;
    gap: 34px;
  }

  .cases-copy h2 {
    font-size: 34px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 114px;
    gap: 12px;
    padding: 14px;
  }

  .brand-card {
    min-height: 0;
    padding: 9px;
  }

  .brand-card img {
    width: 96%;
    height: 96%;
    max-width: 188px;
    max-height: 88px;
  }

  .brand-card-large img {
    width: 98%;
    height: 98%;
    max-width: 210px;
    max-height: 96px;
  }

  .tiktok-stats-section {
    padding: 58px 18px 64px;
  }

  .tiktok-stats-section h2 {
    font-size: 24px;
    line-height: 1.22;
    white-space: normal;
  }

  .tiktok-stats-heading {
    margin-bottom: 38px;
  }

  .tiktok-stats-heading p {
    font-size: 13px;
  }

  .tiktok-stat {
    padding: 28px 0 32px;
  }

  .tiktok-stat strong {
    margin-bottom: 18px;
    font-size: 84px;
  }

  .tiktok-stat p {
    max-width: 310px;
    font-size: 16px;
  }

  .brand-stories-section {
    padding: 54px 14px 66px;
  }

  .brand-stories-nav {
    gap: 22px;
  }

  .brand-stories-nav h2 {
    font-size: 34px;
  }

  .story-account-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-account-list a {
    min-height: 48px;
    justify-content: flex-start;
    font-size: 16px;
  }

  .story-feature-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px 18px 28px;
    border-radius: 34px;
  }

  .story-phone,
  .story-phone-caption,
  .story-card-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .story-phone {
    width: min(74vw, 260px);
    padding: 0;
    border-radius: 28px;
  }

  .story-phone video {
    border-radius: 28px;
  }

  .story-phone-caption {
    width: min(74vw, 260px);
    margin-top: -20px;
  }

  .story-quote {
    height: 20px;
    gap: 6px;
  }

  .story-quote::before,
  .story-quote::after {
    width: 11px;
    height: 18px;
  }

  .story-card-copy h3 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .story-card-copy > p {
    margin-bottom: 38px;
    font-size: 17px;
  }

  .story-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-metrics > div,
  .story-metrics > div + div {
    padding: 0;
    border-left: 0;
  }

  .story-metrics > div + div {
    padding-top: 20px;
    border-top: 1px solid rgba(22, 19, 15, 0.14);
  }

  .story-metrics strong {
    font-size: 46px;
  }

  .products-section {
    width: calc(100% - 28px);
    gap: 16px;
    padding: 14px;
  }

  .pricing-section {
    width: 100%;
    margin-bottom: 0;
    padding: 64px 14px 106px;
  }

  .pricing-heading {
    margin-bottom: 24px;
  }

  .pricing-heading h2 {
    font-size: 34px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px 18px;
  }

  .pricing-card-head {
    margin-bottom: 0;
  }

  .pricing-card li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .pricing-card li strong {
    min-width: 48px;
    font-size: 32px;
  }

  .pricing-consult {
    min-height: 44px;
    padding: 0 22px;
    font-size: 14px;
  }

  .product-copy {
    padding: 28px 18px 8px;
  }

  .product-copy h2,
  .contact h2 {
    font-size: 28px;
  }

  .product-copy > span {
    font-size: 16px;
  }

  .product-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .product-meta span {
    padding-top: 12px;
  }

  .product-visual {
    min-height: 250px;
  }

  .product-visual-title {
    padding: 86px 28px 28px;
  }

  .product-visual-title strong {
    font-size: 58px;
  }

  .tiktok-shop-logo {
    width: min(58%, 230px);
  }

  .product-slide-two .tiktok-shop-logo {
    width: min(56%, 210px);
  }

  .creator-photo {
    transform: scale(1.2);
    transform-origin: 55% 50%;
  }

  .camera-viewfinder {
    inset: 20px;
  }

  .camera-overlay {
    right: 20px;
    bottom: 20px;
  }

  .contact-note {
    font-size: 15px;
  }

  .site-footer {
    padding: 40px 20px 24px;
  }

  .footer-brand img {
    width: min(220px, 82%);
    margin-bottom: 22px;
  }

  .footer-brand p {
    font-size: clamp(22px, 7vw, 28px);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links div {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 26px;
  }

  .workspace-shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .workspace-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 10px 14px 0;
  }

  .workspace-title {
    justify-self: stretch;
    font-size: 17px;
    text-align: center;
    white-space: normal;
  }

  .workspace-brand {
    width: 100%;
    gap: 12px;
  }

  .workspace-brand img {
    width: 96px;
  }

  .workspace-tabs {
    justify-content: flex-start;
    margin: 0 -14px;
    padding: 3px 14px 1px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .workspace-tabs::-webkit-scrollbar {
    display: none;
  }

  .workspace-tabs button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0;
  }

  .workspace-tabs button span {
    font-size: 13px;
  }

  .workspace-tabs button small {
    font-size: 9px;
  }

  .schedule-workspace {
    padding: 12px;
  }

  .schedule-hero,
  .schedule-panel {
    padding: 20px 16px;
  }

  .schedule-form-grid {
    grid-template-columns: 1fr;
  }

  .schedule-timeline div {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "num title"
      "num desc"
      "num date";
  }

  .schedule-status-grid article {
    min-height: 92px;
  }

  .asset-workspace {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(520px, 1fr);
    gap: 10px;
    overflow-y: auto;
    padding: 6px 12px 12px;
  }

  .asset-switcher {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .asset-switcher button {
    min-height: 76px;
    padding: 14px;
  }

  .asset-switcher button.is-active {
    border-right-color: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
  }

  .asset-switcher button.is-active::after {
    content: none;
  }

  .asset-switcher button span {
    font-size: 20px;
  }

  .asset-switcher button strong {
    font-size: 17px;
  }

  .asset-viewer {
    min-height: 520px;
    border-radius: 8px;
  }

  .workspace-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .workspace-actions button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .feishu-modal-panel {
    padding: 34px 24px 28px;
  }

  .feishu-modal-panel h2 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .portal-input-row {
    grid-template-columns: 1fr;
  }

  .portal-input-row .button {
    width: 100%;
  }

}
