:root {
  --primary: #287040;
  --primary-2: #3c9862;
  --primary-3: #e8e8b0;
  --ink: #101411;
  --muted: #5d6760;
  --line: #dfe7df;
  --paper: #ffffff;
  --soft: #f4f8f1;
  --dark: #060806;
  --shadow: 0 22px 60px rgba(16, 20, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 7.5vw;
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.9) 0%, rgba(4, 9, 6, 0.86) 50%, rgba(16, 58, 34, 0.74) 84%, rgba(32, 111, 65, 0.6) 100%);
  border-bottom: 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(3, 5, 4, 0.12);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  height: 28px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(32, 111, 65, 0.26) 0%, rgba(35, 119, 70, 0.1) 58%, rgba(35, 119, 70, 0) 100%);
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: clamp(126px, 11vw, 156px);
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 31px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1vw, 15.5px);
  font-weight: 800;
  letter-spacing: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 6px;
  border: 0;
  padding: 0 8px;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  background: rgba(40, 112, 64, 0.82);
}

.nav-link.nav-contact-active,
.nav-link.nav-current-active {
  color: #fff;
  background: rgba(40, 112, 64, 0.82);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown.open::after {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 210px;
  height: 10px;
  content: "";
}

.nav-dropdown-toggle {
  gap: 7px;
}

.nav-chevron {
  width: 11px;
  height: 11px;
  border-right: 3.6px solid currentColor;
  border-bottom: 3.6px solid currentColor;
  color: var(--primary-2);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 10, 7, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -6px;
  left: 24px;
  width: 10px;
  height: 10px;
  content: "";
  background: rgba(7, 10, 7, 0.96);
  transform: rotate(45deg);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  min-height: 38px;
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a span {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu a span::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.62);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #fff;
  background: transparent;
}

.nav-dropdown-menu a:hover span::after,
.nav-dropdown-menu a:focus-visible span::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  position: relative;
}

.language-switcher.open::after,
.language-switcher:hover::after {
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  width: 206px;
  height: 12px;
  content: "";
}

.language-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-switcher:hover .language-button,
.language-switcher.open .language-button {
  border-color: rgba(232, 232, 176, 0.72);
  color: var(--primary-3);
  background: rgba(255, 255, 255, 0.12);
}

.language-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 206px;
  max-height: min(calc(100vh - 96px), 284px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 10, 7, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 152, 98, 0.9) rgba(7, 10, 7, 0.5);
}

.language-menu::-webkit-scrollbar {
  width: 8px;
}

.language-menu::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(7, 10, 7, 0.5);
}

.language-menu::-webkit-scrollbar-thumb {
  border: 2px solid rgba(7, 10, 7, 0.96);
  border-radius: 999px;
  background: rgba(60, 152, 98, 0.9);
}

.language-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-3);
}

.language-switcher.open .language-menu,
.language-switcher:hover .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu::before {
  position: absolute;
  right: 13px;
  top: -6px;
  width: 10px;
  height: 10px;
  content: "";
  background: rgba(7, 10, 7, 0.96);
  transform: rotate(45deg);
}

.language-menu button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.language-menu .flag {
  flex: 0 0 1.35em;
  width: 1.35em;
  line-height: 1;
  text-align: center;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  color: #fff;
  background: rgba(40, 112, 64, 0.82);
}

.language-menu:hover button.active:not(:hover) {
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 126px 24px 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 48%, rgba(232, 232, 176, 0.24), transparent 28%),
    linear-gradient(105deg, rgba(31, 118, 70, 0.92) 0%, rgba(47, 132, 78, 0.88) 46%, rgba(143, 157, 88, 0.86) 100%),
    #203d2a;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 88px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.35;
}

.hero-bg-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 82vw);
  opacity: 0.16;
  pointer-events: none;
  transform: translate(-50%, -24%);
}

.hero-bg-mark img {
  width: 100%;
  filter: saturate(0.92) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.trusted-logos {
  overflow: hidden;
  padding: 62px 0 58px;
  background: #fff;
}

.trusted-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 34px;
  padding: 0 20px;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.trusted-heading strong {
  flex: 0 1 auto;
  max-width: min(54vw, 420px);
}

.trusted-dots {
  width: 108px;
  height: 12px;
  background: radial-gradient(circle, currentColor 2px, transparent 2.6px) 6px 50% / 18px 8px;
  color: var(--primary);
  opacity: 0.94;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.24), #000);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.24), #000);
}

.trusted-dots:first-child {
  background-position: 12px 50%;
}

.trusted-dots:last-child {
  mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.24), #000);
  -webkit-mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.24), #000);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: calc(100% - clamp(96px, 14vw, 280px));
  max-width: 1440px;
  margin: 0 auto;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 120px);
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  --logo-frame-width: clamp(112px, 9vw, 142px);
  --logo-frame-height: 76px;
  --logo-gap: clamp(10px, 1.25vw, 18px);
  display: flex;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
  will-change: transform;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.logo-frame {
  display: grid;
  width: var(--logo-frame-width);
  height: var(--logo-frame-height);
  place-items: center;
  flex: 0 0 auto;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation-duration: 90s;
  }

  .eyebrow-dot,
  .eyebrow-dot::after {
    animation: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  max-width: min(92vw, 560px);
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow-dot {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-3);
  box-shadow: 0 0 0 6px rgba(232, 232, 176, 0.18);
  animation: hero-eyebrow-dot-breathe 2.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.eyebrow-dot::after {
  position: absolute;
  inset: -8px;
  content: "";
  border-radius: inherit;
  background: rgba(232, 232, 176, 0.2);
  transform: scale(0.6);
  animation: hero-eyebrow-dot-halo 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes hero-eyebrow-dot-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(232, 232, 176, 0.18), 0 0 12px rgba(232, 232, 176, 0.38);
  }

  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 8px rgba(232, 232, 176, 0.3), 0 0 24px rgba(232, 232, 176, 0.62);
  }
}

@keyframes hero-eyebrow-dot-halo {
  0% {
    opacity: 0.58;
    transform: scale(0.45);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.eyebrow [data-i18n] {
  min-width: 0;
}

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

h1 {
  margin: 34px 0 30px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

html[lang="zh-CN"] h1,
html[lang="zh-Hant"] h1 {
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 1.16;
}

.hero p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(40, 112, 64, 0.36);
}

.hero .button.primary {
  background: linear-gradient(135deg, #1f6337, #2d8050);
}

.section-pad {
  padding: 86px 7.5vw;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

.about-copy-block h2,
.about-stats-heading h2,
.about-footprint h2,
.about-cta-section h2,
.cases-heading-row h2,
.cases-outcomes h2,
.cases-cta-section h2,
.content-heading-row h2,
.content-band h2,
.content-cta-section h2 {
  font-size: clamp(32px, 3.45vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.14;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.intro {
  background: #fff;
}

.concept-grid,
.service-grid,
.step-grid,
.stats {
  display: grid;
  gap: 24px;
}

.concept-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.concept-grid article,
.step-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff 0%, #fff 52%, rgba(232, 244, 235, 0.86) 100%);
}

.concept-grid article {
  box-shadow:
    0 18px 42px rgba(16, 20, 17, 0.1),
    0 8px 22px rgba(40, 112, 64, 0.1);
}

.concept-grid article.reveal-card,
.step-grid article.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.concept-grid article.reveal-card.is-visible,
.step-grid article.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.concept-grid article.reveal-card:nth-child(2),
.step-grid article.reveal-card:nth-child(2) {
  transition-delay: 90ms;
}

.concept-grid article.reveal-card:nth-child(3),
.step-grid article.reveal-card:nth-child(3) {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  .concept-grid article.reveal-card,
  .step-grid article.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.services {
  background: var(--soft);
}

.section-lead {
  max-width: 780px;
  font-size: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, #fff 0%, #fff 54%, rgba(226, 243, 231, 0.94) 100%);
  box-shadow:
    0 22px 52px rgba(16, 20, 17, 0.11),
    0 12px 28px rgba(40, 112, 64, 0.12);
}

.service-card.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.service-card.reveal-card:nth-child(2) {
  transition-delay: 80ms;
}

.service-card.reveal-card:nth-child(3) {
  transition-delay: 160ms;
}

.service-card.reveal-card:nth-child(4) {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .service-card.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cases-orbit-track,
  .cases-orbit-slot > .cases-orbit-card {
    animation: none;
  }
}

.service-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 210px;
  background-color: #dfeee3;
  background-position: center;
  background-size: cover;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(40, 112, 64, 0.14));
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.visual-shop img {
  object-position: 52% 50%;
}

.visual-live img {
  object-position: 50% 48%;
}

.visual-video img {
  object-position: 50% 50%;
}

.visual-event img {
  object-position: 62% 50%;
}

.visual-shop {
  background-image:
    linear-gradient(135deg, rgba(40, 112, 64, 0.28), rgba(232, 232, 176, 0.42)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 420 280' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='420' height='280' fill='%23eff5e9'/%3E%3Cg fill='%23287040'%3E%3Crect x='72' y='80' width='210' height='120' rx='10' opacity='.88'/%3E%3Crect x='102' y='55' width='72' height='52' rx='26' fill='none' stroke='%23287040' stroke-width='18'/%3E%3Crect x='298' y='104' width='62' height='94' rx='8' opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
}

.visual-live {
  background-image:
    linear-gradient(135deg, rgba(40, 112, 64, 0.32), rgba(232, 232, 176, 0.34)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 420 280' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='420' height='280' fill='%23f5f7e5'/%3E%3Crect x='82' y='54' width='256' height='172' rx='18' fill='%23287040'/%3E%3Ccircle cx='210' cy='140' r='56' fill='%23e8e8b0'/%3E%3Cpolygon points='195,112 195,168 244,140' fill='%23287040'/%3E%3C/svg%3E");
}

.visual-video {
  background-image:
    linear-gradient(135deg, rgba(40, 112, 64, 0.25), rgba(232, 232, 176, 0.4)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 420 280' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='420' height='280' fill='%23edf4ef'/%3E%3Crect x='98' y='42' width='150' height='198' rx='24' fill='%23287040'/%3E%3Crect x='265' y='78' width='58' height='124' rx='16' fill='%233c9862'/%3E%3Ccircle cx='174' cy='142' r='44' fill='%23e8e8b0'/%3E%3C/svg%3E");
}

.visual-event {
  background-image:
    linear-gradient(135deg, rgba(40, 112, 64, 0.28), rgba(232, 232, 176, 0.44)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 420 280' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='420' height='280' fill='%23f4f8f1'/%3E%3Cg fill='%23287040'%3E%3Ccircle cx='126' cy='132' r='42'/%3E%3Ccircle cx='212' cy='112' r='46' opacity='.82'/%3E%3Ccircle cx='294' cy='142' r='40' opacity='.64'/%3E%3Crect x='86' y='178' width='254' height='42' rx='21' opacity='.72'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card h3 {
  margin-top: 24px;
  min-height: 1.2em;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.15;
  white-space: nowrap;
}

.service-card p {
  line-height: 1.58;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  margin-bottom: 26px;
  align-self: flex-start;
  color: var(--primary);
  font-weight: 900;
}

.progress {
  background: #fff;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.step-grid span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(88, 168, 112, 0.32), transparent 34%),
    linear-gradient(135deg, #1a4d32 0%, #247042 48%, #3a915c 100%);
}

.stats strong {
  display: block;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.booking {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
  background: #fff;
}

.booking-copy {
  position: sticky;
  top: 116px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label,
.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #26302a;
  font-size: 14px;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
}

.required-field > .field-label::after {
  content: "*";
  color: #d92323;
  font-size: 16px;
  line-height: 1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cad7cc;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

.input-shell {
  position: relative;
  display: block;
}

.input-shell input {
  padding-right: 14px;
}

.email-invalid .input-shell input {
  padding-right: 128px;
}

.email-error {
  position: absolute;
  top: 50%;
  right: 14px;
  max-width: 112px;
  color: #d92323;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.16s ease;
}

.email-invalid .email-error {
  opacity: 1;
}

.control-error,
.multi-select.control-error .multi-select-toggle {
  border-color: #d92323;
  animation: required-pulse 0.78s ease both;
}

.control-error:focus,
.email-invalid input:focus,
.multi-select.control-error .multi-select-toggle:focus {
  outline-color: rgba(217, 35, 35, 0.18);
  border-color: #d92323;
}

.multi-select {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.multi-select-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 50px;
  border: 1px solid #cad7cc;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.multi-select-toggle:focus {
  outline: 3px solid rgba(40, 112, 64, 0.18);
  border-color: var(--primary);
}

.multi-select-value {
  display: block;
  flex: 0 1 calc(100% - 24px);
  min-width: 0;
  width: calc(100% - 24px);
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.multi-select-arrow {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-left: auto;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.multi-select.open .multi-select-arrow {
  transform: translateY(2px) rotate(225deg);
}

.multi-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(40, 112, 64, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(16, 28, 18, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.multi-select.open .multi-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.multi-option {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.multi-option:hover {
  background: rgba(40, 112, 64, 0.1);
}

.multi-option input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--primary);
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: #d92323;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.form-status.show {
  opacity: 1;
}

.submit-button {
  position: relative;
  overflow: hidden;
}

.submit-button .button-label {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.button-check {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.18s ease, transform 0.24s cubic-bezier(0.2, 0.85, 0.24, 1.25);
}

.button-check::before {
  content: "";
  width: 22px;
  height: 12px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 2px;
  transform: translateY(-2px) rotate(-45deg);
}

.submit-button.is-success .button-label {
  opacity: 0;
  transform: translateY(-8px);
}

.submit-button.is-success .button-check {
  opacity: 1;
  transform: scale(1);
}

@keyframes required-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 35, 35, 0);
  }

  36% {
    box-shadow: 0 0 0 4px rgba(217, 35, 35, 0.14);
  }

  68% {
    box-shadow: 0 0 0 2px rgba(217, 35, 35, 0.08);
  }
}

textarea {
  min-height: 124px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(40, 112, 64, 0.18);
  border-color: var(--primary);
}

.span-2 {
  grid-column: span 2;
}

.about-page {
  overflow: hidden;
  background: #fff;
}

.about-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 108px 7.5vw 56px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 44%, rgba(232, 232, 176, 0.18), transparent 30%),
    linear-gradient(112deg, rgba(5, 17, 10, 0.96) 0%, rgba(18, 76, 43, 0.94) 48%, rgba(50, 117, 70, 0.88) 100%),
    #07120b;
}

.about-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 92px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.5;
}

.about-hero-mark {
  position: absolute;
  right: max(-70px, -4vw);
  bottom: -48px;
  width: min(520px, 58vw);
  opacity: 0.12;
  pointer-events: none;
}

.about-hero-mark img {
  width: 100%;
  filter: saturate(0.92) contrast(1.02);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
}

.about-hero .section-kicker {
  color: var(--primary-3);
}

.about-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.about-hero p {
  max-width: 700px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 600;
  line-height: 1.62;
}

.about-hero .button.primary {
  min-height: 42px;
  padding: 0 24px;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(40, 112, 64, 0.28);
}

.about-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4.6vw, 68px);
  align-items: end;
  background: #fff;
}

.about-copy-block {
  max-width: 720px;
}

.about-copy-block p {
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}

.about-mission-brief {
  display: grid;
  gap: 14px;
  margin-top: clamp(26px, 3.8vw, 42px);
}

.about-mission-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  isolation: isolate;
}

.about-mission-item::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 2px;
  left: 72px;
  z-index: 0;
  content: "";
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(ellipse at 42% 50%, rgba(40, 112, 64, 0.18) 0%, rgba(40, 112, 64, 0.11) 36%, transparent 72%),
    radial-gradient(ellipse at 82% 58%, rgba(95, 151, 95, 0.12) 0%, transparent 58%);
  filter: blur(20px);
  opacity: 0.9;
  transform: rotate(-1deg);
  pointer-events: none;
}

.about-mission-item:nth-child(2)::before {
  top: 2px;
  right: 4%;
  bottom: 0;
  left: 82px;
  border-radius: 58% 42% 54% 46%;
  opacity: 0.84;
  transform: rotate(1deg);
}

.about-mission-item:nth-child(3)::before {
  top: 6px;
  right: 9%;
  bottom: 16px;
  left: 68px;
  border-radius: 50% 44% 60% 40%;
  opacity: 0.8;
  transform: rotate(-0.5deg);
}

.about-mission-item > span,
.about-mission-item > div {
  position: relative;
  z-index: 1;
}

.about-mission-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 24px;
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.about-mission-item h3 {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.2;
}

.about-mission-item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.98vw, 15px);
  font-weight: 650;
  line-height: 1.62;
}

.about-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.about-brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.about-principle-list {
  display: grid;
  gap: 16px;
}

.about-card,
.about-timeline-item {
  border: 1px solid rgba(40, 112, 64, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff 0%, #fff 52%, rgba(232, 244, 235, 0.9) 100%);
  box-shadow:
    0 18px 44px rgba(16, 20, 17, 0.1),
    0 8px 22px rgba(40, 112, 64, 0.1);
}

.about-card {
  padding: clamp(22px, 2.8vw, 32px);
}

.about-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 13px;
  font-weight: 900;
}

.about-card h3,
.about-timeline-item h3 {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
}

.about-card p,
.about-timeline-item p {
  margin-bottom: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
}

.about-stats {
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(232, 232, 176, 0.16), transparent 30%),
    linear-gradient(135deg, #123522 0%, #236f43 52%, #4c955e 100%);
}

.about-stats .section-kicker {
  color: var(--primary-3);
}

.about-stats-heading {
  max-width: 860px;
}

.about-stats h2 {
  color: #fff;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: 38px;
}

.about-stat {
  display: grid;
  gap: 10px;
  min-height: 156px;
  align-content: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(74, 149, 91, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 42px rgba(0, 0, 0, 0.14);
}

.about-stat strong {
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.about-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 700;
}

.about-footprint {
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  background: var(--soft);
}

.about-map-card {
  position: relative;
  max-width: 760px;
  margin-top: clamp(30px, 4.2vw, 52px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-map-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 40 / 17;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(29, 111, 62, 0.12));
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.about-timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 21px;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-2), rgba(40, 112, 64, 0.12));
}

.about-timeline-item {
  position: relative;
  margin-left: 44px;
  padding: clamp(24px, 3vw, 34px);
}

.about-timeline-item::before {
  position: absolute;
  top: 30px;
  left: -33px;
  width: 15px;
  height: 15px;
  content: "";
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(40, 112, 64, 0.22);
}

.about-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 6vw, 82px) 7.5vw;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 16, 9, 0.98), rgba(24, 86, 48, 0.94)),
    #08120c;
}

.about-cta-section .section-kicker {
  color: var(--primary-3);
}

.about-cta-section h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #fff;
}

.about-cta-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
}

.about-card.reveal-card,
.about-timeline-item.reveal-card,
.about-stat.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about-card.reveal-card.is-visible,
.about-timeline-item.reveal-card.is-visible,
.about-stat.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .about-card.reveal-card,
  .about-timeline-item.reveal-card,
  .about-stat.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.cases-page {
  overflow: hidden;
  background: #fff;
}

.cases-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 106px 7.5vw 58px;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 55%, rgba(211, 244, 226, 0.58), transparent 30%),
    radial-gradient(circle at 77% 42%, rgba(92, 154, 99, 0.34), transparent 34%),
    linear-gradient(112deg, #fff 0%, #f7fbf7 39%, #d6eadb 68%, rgba(82, 142, 85, 0.4) 100%);
}

.cases-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(40, 112, 64, 0.07) 1px, transparent 1px) 0 0 / 92px 100%,
    linear-gradient(0deg, rgba(40, 112, 64, 0.055) 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.42;
}

.cases-hero-mark {
  position: absolute;
  right: max(-64px, -4vw);
  bottom: -52px;
  width: min(520px, 58vw);
  opacity: 0.12;
  pointer-events: none;
}

.cases-hero-mark img {
  width: 100%;
  filter: saturate(0.9) contrast(1.02);
}

.cases-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.cases-orbit-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(241, 249, 243, 0.98) 0 25%, rgba(220, 242, 230, 0.62) 42%, rgba(255, 255, 255, 0) 67%),
    radial-gradient(circle at 30% 70%, rgba(208, 237, 225, 0.42), transparent 38%);
}

.cases-orbit-ring {
  position: absolute;
  inset: 8%;
  border: 1.25px solid rgba(48, 112, 70, 0.22);
  border-radius: 50%;
}

.cases-orbit-ring-outer {
  inset: 8%;
  border-style: dashed;
  border-color: rgba(48, 112, 70, 0.2);
  opacity: 0.72;
}

.cases-orbit-ring-middle {
  inset: 18%;
  border-color: rgba(48, 112, 70, 0.18);
}

.cases-orbit-ring-inner {
  inset: 34%;
  border-color: rgba(48, 112, 70, 0.14);
}

.cases-orbit-track {
  position: absolute;
  inset: var(--track-inset);
  border-radius: 50%;
  animation: cases-orbit-spin var(--orbit-speed, 30s) linear infinite;
}

.cases-orbit-slot {
  position: absolute;
  width: var(--orbit-card-size);
  height: var(--orbit-card-size);
  transform: translate(-50%, -50%);
}

.cases-orbit-slot > .cases-orbit-card {
  width: 100%;
  height: 100%;
  animation: cases-orbit-counter var(--orbit-speed, 30s) linear infinite;
}

.cases-orbit-track-outer {
  --track-inset: 8%;
  --orbit-card-size: clamp(34px, 4.2vw, 52px);
  --orbit-speed: 34s;
  animation-delay: -3s;
}

.cases-orbit-track-middle {
  --track-inset: 18%;
  --orbit-card-size: clamp(34px, 4.2vw, 52px);
  --orbit-speed: 34s;
  animation-delay: -3s;
}

.cases-orbit-track-outer .cases-orbit-card {
  animation-delay: -3s;
}

.cases-orbit-track-middle .cases-orbit-card {
  animation-delay: -3s;
}

.orbit-card-outer-top {
  top: 0;
  left: 50%;
}

.orbit-card-darry {
  top: 75%;
  left: 93.3%;
}

.orbit-card-outer-right {
  top: 75%;
  left: 93.3%;
}

.orbit-card-momcozy {
  top: -4%;
  left: 50%;
}

.orbit-card-outer-left {
  top: 75%;
  left: 6.7%;
}

.orbit-card-inner-top {
  top: 25%;
  left: 93.3%;
}

.orbit-card-inner-right {
  top: 100%;
  left: 50%;
}

.orbit-card-inner-left {
  top: 25%;
  left: 6.7%;
}

.orbit-card-netease {
  top: 21%;
  left: 1.5%;
}

.cases-orbit-card {
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(12, 46, 25, 0.14);
}

.photo-card,
.icon-card {
  overflow: hidden;
  border-radius: 50%;
  font-size: clamp(15px, 1.65vw, 23px);
  font-weight: 900;
}

.photo-card {
  overflow: hidden;
  color: #fff;
}

.brand-logo-card {
  --orbit-logo-size: clamp(58px, 6vw, 78px);
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.cases-orbit-slot > .brand-logo-card {
  width: var(--orbit-logo-size);
  height: var(--orbit-logo-size);
}

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

.brand-logo-fill {
  background: var(--brand-logo-bg, #fff);
}

.brand-logo-fill img {
  padding: 12%;
}

.brand-logo-darry,
.brand-logo-lanbena,
.brand-logo-netease {
  --brand-logo-bg: #fff;
}

.brand-logo-coolvita {
  --brand-logo-bg: #ff6b18;
}

.brand-logo-hebe {
  overflow: visible;
  border-radius: 0;
}

.photo-card-commerce {
  background:
    linear-gradient(145deg, rgba(5, 20, 13, 0.18), rgba(5, 20, 13, 0.54)),
    radial-gradient(circle at 35% 26%, #dce8d0, transparent 32%),
    linear-gradient(145deg, #2f8d57, #d9e8a4);
}

.photo-card-retail {
  background:
    linear-gradient(145deg, rgba(5, 20, 13, 0.12), rgba(5, 20, 13, 0.48)),
    radial-gradient(circle at 64% 30%, #e8e8b0, transparent 30%),
    linear-gradient(145deg, #144d2c, #5caf76);
}

.icon-card-game {
  color: #e8e8b0;
  background: linear-gradient(145deg, #2d8a57, #6ab67c);
}

.icon-card-shop {
  position: relative;
  background: linear-gradient(145deg, #0f7d45, #80c790);
}

.icon-card-shop::before {
  content: "";
  width: 38%;
  height: 34%;
  border: clamp(5px, 0.65vw, 8px) solid #e8e8b0;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform: translateY(-10%);
}

.icon-card-shop::after {
  position: absolute;
  bottom: 20%;
  width: 46%;
  height: 34%;
  content: "";
  border-radius: 8px;
  background: #e8e8b0;
}

.cases-orbit-center {
  position: absolute;
  inset: 27%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border-radius: 50%;
  color: #0f2517;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 38px rgba(45, 138, 87, 0.1),
    0 22px 56px rgba(28, 86, 47, 0.1);
  backdrop-filter: blur(6px);
}

.cases-orbit-center img {
  width: clamp(48px, 5.4vw, 82px);
  height: auto;
  object-fit: contain;
}

.cases-orbit-center strong {
  max-width: 76%;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.cases-orbit-center span {
  display: block;
  max-width: 76%;
  color: rgba(15, 37, 23, 0.68);
  font-size: clamp(8px, 0.82vw, 11px);
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

@keyframes cases-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes cases-orbit-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.cases-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 580px);
}

.cases-hero .section-kicker,
.cases-outcomes .section-kicker,
.cases-cta-section .section-kicker {
  color: var(--primary-3);
}

.cases-hero h1 {
  max-width: 780px;
  margin: 14px 0 22px;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.05;
}

.cases-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(15, 20, 17, 0.68);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 600;
  line-height: 1.62;
}

.cases-showcase {
  background:
    linear-gradient(180deg, #fff 0%, rgba(246, 250, 247, 0.94) 100%),
    #fff;
}

.cases-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, auto);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.cases-heading-row h2 {
  max-width: 880px;
}

.case-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  max-width: 460px;
}

.case-filter-pills button {
  border: 0;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.case-filter-pills button:hover {
  transform: translateY(-1px);
}

.case-filter-pills button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(34px, 4vw, 52px);
}

.case-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(40, 112, 64, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff 0%, #fff 48%, rgba(232, 244, 235, 0.9) 100%);
  box-shadow:
    0 18px 44px rgba(16, 20, 17, 0.1),
    0 8px 22px rgba(40, 112, 64, 0.1);
}

.case-card[hidden] {
  display: none !important;
}

.case-visual {
  position: relative;
  aspect-ratio: 5120 / 2420;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, #f7faf6, #eef8f0);
}

.case-visual-alt {
  background: #f7faf6;
}

.case-visual-warm {
  background: #f7faf6;
}

.case-visual-dark {
  background: #f7faf6;
}

.case-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  opacity: 1;
  filter: none;
}

.case-visual span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  max-width: calc(100% - 40px);
  padding: 0 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 17, 10, 0.45);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.case-card-body {
  display: grid;
  gap: 14px;
  flex: 1;
  align-content: start;
  padding: clamp(24px, 2.8vw, 34px);
}

.case-card-body strong {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.09);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  line-height: 1;
}

.case-card-body h3 {
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.12;
}

.case-card-body p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.65;
}

.case-card-body a {
  position: relative;
  justify-self: start;
  margin-top: 4px;
  color: var(--primary);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  text-decoration: none;
}

.case-card-body a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: var(--primary);
}

.cases-outcomes {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(34px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(232, 232, 176, 0.16), transparent 30%),
    linear-gradient(135deg, #123522 0%, #236f43 52%, #4c955e 100%);
}

.cases-outcomes h2 {
  color: #fff;
}

.cases-outcome-list {
  display: grid;
  gap: 18px;
}

.cases-outcome-list article {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(74, 149, 91, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 42px rgba(0, 0, 0, 0.14);
}

.cases-outcome-list span {
  color: var(--primary-3);
  font-size: 13px;
  font-weight: 900;
}

.cases-outcome-list h3 {
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
}

.cases-outcome-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
}

.cases-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 6vw, 82px) 7.5vw;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 16, 9, 0.98), rgba(24, 86, 48, 0.94)),
    #08120c;
}

.cases-cta-section h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #fff;
}

.cases-cta-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
}

.case-card.reveal-card,
.cases-outcome-list article.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.case-card.reveal-card.is-visible,
.cases-outcome-list article.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card.reveal-card:nth-child(2),
.cases-outcome-list article.reveal-card:nth-child(2) {
  transition-delay: 80ms;
}

.case-card.reveal-card:nth-child(3),
.cases-outcome-list article.reveal-card:nth-child(3) {
  transition-delay: 140ms;
}

@media (prefers-reduced-motion: reduce) {
  .case-card.reveal-card,
  .cases-outcome-list article.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.content-page {
  overflow: hidden;
  background: #fff;
}

.content-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 116px 7.5vw 68px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 44%, rgba(232, 232, 176, 0.16), transparent 30%),
    linear-gradient(112deg, rgba(5, 17, 10, 0.96) 0%, rgba(18, 76, 43, 0.94) 48%, rgba(50, 117, 70, 0.88) 100%),
    #07120b;
}

.content-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 92px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.5;
}

.content-hero-mark {
  position: absolute;
  right: max(-64px, -4vw);
  bottom: -52px;
  width: min(520px, 58vw);
  opacity: 0.13;
  pointer-events: none;
}

.content-hero-mark img {
  width: 100%;
  filter: saturate(0.92) contrast(1.02);
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
}

.content-hero .section-kicker,
.content-band .section-kicker,
.content-cta-section .section-kicker {
  color: var(--primary-3);
}

.content-hero h1 {
  max-width: 800px;
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.05;
}

.content-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 600;
  line-height: 1.62;
}

html[lang="zh-CN"] .about-hero h1,
html[lang="zh-CN"] .cases-hero h1,
html[lang="zh-CN"] .content-hero h1,
html[lang="zh-Hant"] .about-hero h1,
html[lang="zh-Hant"] .cases-hero h1,
html[lang="zh-Hant"] .content-hero h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.1;
}

.content-library {
  background:
    linear-gradient(180deg, #fff 0%, rgba(246, 250, 247, 0.94) 100%),
    #fff;
}

.content-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, auto);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.content-heading-row h2 {
  max-width: 880px;
}

.content-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  max-width: 460px;
}

.content-filter-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  white-space: nowrap;
}

.content-filter-pills span:first-child {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(34px, 4vw, 52px);
}

.content-card {
  display: grid;
  min-height: 330px;
  align-content: start;
  gap: 16px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(40, 112, 64, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(232, 232, 176, 0.12), transparent 22%),
    linear-gradient(145deg, #fff 0%, #fff 48%, rgba(232, 244, 235, 0.92) 100%);
  box-shadow:
    0 18px 44px rgba(16, 20, 17, 0.1),
    0 8px 22px rgba(40, 112, 64, 0.1);
}

.content-card span {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  padding: 0 13px;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-card h3 {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.1;
}

.content-card p {
  margin: 0;
  font-size: clamp(15px, 1.14vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.content-card a {
  position: relative;
  justify-self: start;
  margin-top: 8px;
  color: var(--primary);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  text-decoration: none;
}

.content-card a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: var(--primary);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(34px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(232, 232, 176, 0.16), transparent 30%),
    linear-gradient(135deg, #123522 0%, #236f43 52%, #4c955e 100%);
}

.content-band h2 {
  color: #fff;
}

.content-step-list {
  display: grid;
  gap: 18px;
}

.content-step-list article {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(74, 149, 91, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 42px rgba(0, 0, 0, 0.14);
}

.content-step-list span {
  color: var(--primary-3);
  font-size: 13px;
  font-weight: 900;
}

.content-step-list h3 {
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
}

.content-step-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
}

.creator-solution-page .content-hero {
  min-height: 560px;
  background:
    radial-gradient(circle at 74% 38%, rgba(232, 232, 176, 0.24), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(74, 178, 101, 0.24), transparent 30%),
    linear-gradient(112deg, rgba(5, 17, 10, 0.96) 0%, rgba(20, 84, 47, 0.94) 46%, rgba(83, 177, 105, 0.9) 100%),
    #07120b;
}

.creator-solution-page .content-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

html[lang="zh-CN"] .creator-solution-page .content-hero h1,
html[lang="zh-Hant"] .creator-solution-page .content-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
}

.creator-solution-page .content-hero p {
  max-width: 860px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.creator-section-heading {
  max-width: 980px;
}

.creator-section-heading h2,
.creator-capability-section h2,
.creator-benchmark-section h2,
.creator-sop-section h2 {
  color: #0d1a11;
  font-size: clamp(30px, 2.85vw, 44px);
  line-height: 1.14;
  font-weight: 820;
  text-wrap: balance;
}

.creator-pain-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(232, 232, 176, 0.26), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(40, 112, 64, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, rgba(244, 249, 245, 0.94) 100%),
    #fff;
}

.creator-pain-section .content-heading-row {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.creator-pain-section .content-heading-row h2 {
  max-width: 800px;
}

.creator-pain-section .content-filter-pills {
  justify-content: center;
  max-width: none;
}

.creator-pain-section .content-filter-pills span,
.creator-pain-section .content-filter-pills span:first-child {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #1f6f3e, #45a765);
  box-shadow:
    0 12px 28px rgba(31, 111, 62, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.creator-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(42px, 5vw, 70px);
}

.creator-pain-card {
  display: grid;
  gap: 18px;
}

.creator-pain-problem {
  position: relative;
  min-height: 112px;
  padding: 8px 4px 10px 24px;
  border: 0;
  color: rgba(13, 22, 15, 0.78);
  background: transparent;
  box-shadow: none;
  font-size: clamp(17px, 1.42vw, 22px);
  font-weight: 900;
  line-height: 1.55;
}

.creator-pain-problem::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 6px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, #f0c76a, var(--primary-2));
  box-shadow: 0 10px 24px rgba(40, 112, 64, 0.22);
}

.creator-pain-answer {
  position: relative;
  min-height: 310px;
  padding: clamp(34px, 3.8vw, 52px) clamp(26px, 3.4vw, 42px);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.34), transparent 25%),
    radial-gradient(circle at 12% 100%, rgba(232, 232, 176, 0.34), transparent 32%),
    linear-gradient(148deg, rgba(19, 84, 44, 0.99), rgba(48, 141, 78, 0.98) 58%, rgba(127, 201, 137, 0.94)),
    var(--primary);
  box-shadow:
    0 34px 76px rgba(15, 57, 29, 0.3),
    0 12px 26px rgba(232, 182, 91, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.creator-pain-answer::after {
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.creator-pain-answer img {
  position: absolute;
  top: -30px;
  right: clamp(22px, 3vw, 40px);
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20, 70, 38, 0.16);
  object-fit: contain;
  padding: 12px;
}

.creator-pain-answer h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.05;
}

.creator-pain-answer p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 650;
  line-height: 1.78;
}

.creator-capability-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 70% 10%, rgba(232, 232, 176, 0.28), transparent 24%),
    radial-gradient(circle at 4% 92%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #123522 0%, #236f43 54%, #65b879 100%),
    var(--primary);
}

.creator-capability-section h2,
.creator-capability-section h3 {
  color: #fff;
}

.creator-capability-section > div:first-child p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.75;
}

.creator-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.creator-capability-grid article {
  min-height: 250px;
  padding: clamp(26px, 3.2vw, 40px);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 82% 8%, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(ellipse at 10% 92%, rgba(232, 232, 176, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(248, 252, 246, 0.88), rgba(216, 240, 222, 0.66));
  color: #101812;
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.12),
    0 10px 24px rgba(232, 232, 176, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.creator-capability-grid h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: clamp(21px, 1.9vw, 30px);
  line-height: 1.08;
}

.creator-capability-grid p {
  margin: 0;
  color: rgba(16, 24, 18, 0.82);
  font-size: clamp(15px, 1.14vw, 18px);
  font-weight: 650;
  line-height: 1.72;
}

.creator-benchmark-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 232, 176, 0.24), transparent 24%),
    linear-gradient(180deg, #fff 0%, rgba(248, 250, 241, 0.96) 100%),
    #fff;
}

.creator-benchmark-table {
  display: grid;
  gap: 10px;
  margin-top: clamp(38px, 4.6vw, 64px);
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow:
    0 34px 82px rgba(16, 54, 28, 0.12),
    0 16px 40px rgba(241, 177, 78, 0.1);
}

.creator-benchmark-table > div,
.creator-benchmark-table article {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) repeat(2, minmax(150px, 1fr));
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 0%, rgba(232, 232, 176, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 232, 0.88));
  box-shadow:
    0 20px 48px rgba(16, 54, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.creator-benchmark-table .creator-benchmark-head {
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #124725, #2d8a51 76%, #62b978);
  box-shadow: 0 22px 52px rgba(16, 54, 28, 0.22);
}

.creator-benchmark-table span,
.creator-benchmark-table strong,
.creator-benchmark-table em {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  font-style: normal;
  line-height: 1.2;
  text-align: center;
}

.creator-benchmark-table span {
  justify-content: start;
  padding: 0 18px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #e79c32, #ffd27a 66%, #e8a03b);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 850;
  text-align: left;
}

.creator-benchmark-table strong {
  color: var(--primary);
  background: linear-gradient(145deg, rgba(255, 255, 246, 0.86), rgba(234, 247, 219, 0.72));
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 950;
}

.creator-benchmark-table em {
  color: rgba(11, 19, 14, 0.84);
  background: linear-gradient(145deg, rgba(246, 252, 242, 0.78), rgba(224, 243, 216, 0.62));
  font-size: clamp(17px, 1.32vw, 23px);
  font-weight: 850;
}

.creator-benchmark-table .creator-benchmark-head span,
.creator-benchmark-table .creator-benchmark-head strong,
.creator-benchmark-table .creator-benchmark-head em {
  min-height: 46px;
  color: #fff;
  background: transparent;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 900;
}

.creator-sop-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(40, 112, 64, 0.1), transparent 24%),
    radial-gradient(circle at 86% 92%, rgba(232, 232, 176, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(244, 249, 245, 0.96) 0%, #fff 100%),
    #fff;
}

.creator-sop-heading {
  margin-inline: auto;
  text-align: center;
}

.creator-sop-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(42px, 5vw, 70px);
}

.creator-sop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-width: 0;
}

.creator-sop-arrow {
  position: relative;
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px 34px 12px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #124b27, #2f8f55 68%, #83ca8c);
  border-radius: 999px;
  box-shadow:
    0 24px 54px rgba(16, 54, 28, 0.28),
    0 10px 22px rgba(232, 182, 91, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.creator-sop-arrow::after {
  position: absolute;
  right: 14px;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-right: 3px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

.creator-sop-body {
  position: relative;
  min-height: 460px;
  padding: clamp(26px, 2.6vw, 34px);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 8%, rgba(40, 112, 64, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 243, 0.92));
  box-shadow:
    0 24px 58px rgba(16, 54, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.creator-sop-card.is-dark .creator-sop-body {
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(232, 232, 176, 0.18), transparent 28%),
    linear-gradient(145deg, #1d6939, #2d8650 58%, #4a9b61);
  box-shadow:
    0 28px 64px rgba(16, 72, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.creator-sop-body span {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 0 26px auto;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(16, 54, 28, 0.1);
}

.creator-sop-card:not(.is-dark) .creator-sop-body span {
  color: #fff;
  background: var(--primary);
}

.creator-sop-body ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding-left: 18px;
}

.creator-sop-body li {
  color: rgba(17, 23, 19, 0.64);
  font-size: clamp(15px, 1.02vw, 17px);
  font-weight: 650;
  line-height: 1.7;
}

.creator-sop-card.is-dark .creator-sop-body li {
  color: rgba(255, 255, 255, 0.9);
}

.creator-sop-body strong {
  color: inherit;
  font-weight: 950;
}

.creator-pain-card.reveal-card,
.creator-capability-grid article.reveal-card,
.creator-benchmark-table.reveal-card,
.creator-sop-card.reveal-card {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
  will-change: opacity, transform;
}

.creator-pain-card.reveal-card.is-visible,
.creator-capability-grid article.reveal-card.is-visible,
.creator-benchmark-table.reveal-card.is-visible,
.creator-sop-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.creator-pain-card.reveal-card:nth-child(2),
.creator-capability-grid article.reveal-card:nth-child(2),
.creator-sop-card.reveal-card:nth-child(2) {
  transition-delay: 80ms;
}

.creator-pain-card.reveal-card:nth-child(3),
.creator-capability-grid article.reveal-card:nth-child(3),
.creator-sop-card.reveal-card:nth-child(3) {
  transition-delay: 150ms;
}

.creator-capability-grid article.reveal-card:nth-child(4),
.creator-sop-card.reveal-card:nth-child(4) {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  .creator-pain-card.reveal-card,
  .creator-capability-grid article.reveal-card,
  .creator-benchmark-table.reveal-card,
  .creator-sop-card.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.content-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 6vw, 82px) 7.5vw;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 16, 9, 0.98), rgba(24, 86, 48, 0.94)),
    #08120c;
}

.content-cta-section h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #fff;
}

.content-cta-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
}

.content-card.reveal-card,
.content-step-list article.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.content-card.reveal-card.is-visible,
.content-step-list article.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-card.reveal-card:nth-child(2),
.content-step-list article.reveal-card:nth-child(2) {
  transition-delay: 80ms;
}

.content-card.reveal-card:nth-child(3),
.content-step-list article.reveal-card:nth-child(3) {
  transition-delay: 140ms;
}

@media (prefers-reduced-motion: reduce) {
  .content-card.reveal-card,
  .content-step-list article.reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.tiktok-solution-page {
  background: #fff;
}

.tiktok-solution-hero {
  min-height: 560px;
  background:
    radial-gradient(circle at 72% 28%, rgba(232, 232, 176, 0.18), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(56, 142, 86, 0.34), transparent 28%),
    linear-gradient(112deg, rgba(6, 18, 11, 0.98) 0%, rgba(16, 78, 43, 0.95) 52%, rgba(54, 124, 74, 0.9) 100%),
    #07120b;
}

.tiktok-solution-overview {
  background:
    linear-gradient(180deg, #fff 0%, rgba(246, 250, 247, 0.96) 100%),
    #fff;
}

.tiktok-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(30px, 4vw, 50px);
}

.tiktok-feature-grid article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 232, 176, 0.16), transparent 28%),
    linear-gradient(145deg, #fff 0%, rgba(240, 248, 242, 0.92) 100%);
  box-shadow: 0 16px 38px rgba(16, 20, 17, 0.08);
}

.tiktok-feature-grid span,
.tiktok-flow-card span,
.tiktok-mini-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 13px;
  font-weight: 900;
}

.tiktok-feature-grid h3,
.tiktok-flow-card h3,
.tiktok-mini-flow h3 {
  color: var(--primary);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.18;
}

.tiktok-feature-grid p,
.tiktok-flow-card p,
.tiktok-mini-flow p,
.tiktok-section-copy p,
.tiktok-check-list {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.68;
}

.tiktok-solution-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

.tiktok-solution-section-alt {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.96), #fff),
    #fff;
}

.tiktok-section-copy {
  display: grid;
  gap: 18px;
}

.tiktok-section-copy h2 {
  max-width: 760px;
  margin: 0;
}

.tiktok-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.tiktok-check-list li {
  position: relative;
  padding-left: 30px;
}

.tiktok-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 28%, transparent 30%),
    var(--primary);
  box-shadow: 0 0 0 5px rgba(40, 112, 64, 0.1);
}

.tiktok-flow-card,
.tiktok-mini-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(40, 112, 64, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 100%, rgba(56, 142, 86, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(247, 251, 248, 0.98), #fff);
  box-shadow: 0 22px 50px rgba(16, 20, 17, 0.1);
}

.tiktok-flow-card::before,
.tiktok-mini-flow::before {
  position: absolute;
  left: clamp(42px, 7vw, 78px);
  right: clamp(42px, 7vw, 78px);
  top: 62px;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(40, 112, 64, 0.35) 0 10px, transparent 10px 18px);
}

.tiktok-flow-card article,
.tiktok-mini-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(40, 112, 64, 0.1), 0 12px 28px rgba(40, 112, 64, 0.08);
}

.tiktok-flow-card-compact {
  grid-template-columns: 1fr;
}

.tiktok-flow-card-compact::before {
  top: 58px;
  bottom: 58px;
  left: 58px;
  right: auto;
  width: 2px;
  height: auto;
  background: repeating-linear-gradient(180deg, rgba(40, 112, 64, 0.35) 0 10px, transparent 10px 18px);
}

.tiktok-flow-card-compact article {
  min-height: 0;
  padding-left: clamp(70px, 6vw, 92px);
}

.tiktok-flow-card-compact span {
  position: absolute;
  left: 24px;
  top: 24px;
}

.tiktok-mini-flow {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tiktok-mini-flow::before {
  top: 24px;
  bottom: 24px;
  left: 22px;
  right: auto;
  width: 2px;
  height: auto;
  background: repeating-linear-gradient(180deg, rgba(40, 112, 64, 0.34) 0 10px, transparent 10px 18px);
}

.tiktok-mini-flow article {
  min-height: 0;
  padding: 22px 22px 22px 70px;
}

.tiktok-mini-flow span {
  position: absolute;
  left: 0;
  top: 22px;
}

.tiktok-mini-flow-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiktok-mini-flow-two::before {
  left: 42px;
  right: 42px;
  top: 39px;
  bottom: auto;
  width: auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(40, 112, 64, 0.34) 0 10px, transparent 10px 18px);
}

.tiktok-visual-stack,
.tiktok-dashboard-grid,
.tiktok-material-gallery {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.tiktok-visual-stack {
  grid-template-columns: 1fr;
}

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

.tiktok-dashboard-grid figure:first-child {
  grid-column: 1 / -1;
}

.tiktok-material-gallery {
  grid-template-columns: 1fr;
}

.tiktok-visual-stack figure,
.tiktok-dashboard-grid figure,
.tiktok-material-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 20, 17, 0.1);
}

.tiktok-visual-stack img,
.tiktok-dashboard-grid img,
.tiktok-material-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.tiktok-dashboard-grid img {
  aspect-ratio: 16 / 9;
}

.tiktok-material-gallery img {
  max-height: 420px;
  object-fit: contain;
  background: #fff;
}

.tiktok-solution-page .section-kicker {
  letter-spacing: 0.06em;
}

.tiktok-solution-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

html[lang="zh-CN"] .tiktok-solution-hero h1,
html[lang="zh-Hant"] .tiktok-solution-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
}

.tiktok-solution-hero p {
  max-width: 760px;
  font-size: clamp(17px, 1.45vw, 21px);
}

.tiktok-solution-overview {
  position: relative;
  padding-top: clamp(70px, 7vw, 112px);
  background:
    radial-gradient(ellipse at 18% 18%, rgba(214, 242, 221, 0.84), transparent 38%),
    radial-gradient(ellipse at 84% 74%, rgba(232, 232, 176, 0.22), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}

.tiktok-solution-overview .content-heading-row h2 {
  max-width: 780px;
  font-size: clamp(30px, 2.85vw, 44px);
  line-height: 1.12;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.tiktok-solution-overview .content-filter-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: end;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  width: min(100%, 560px);
  max-width: none;
}

.tiktok-solution-overview .content-filter-pills span {
  min-width: 0;
  min-height: 36px;
  padding-inline: clamp(12px, 1.1vw, 18px);
  overflow: hidden;
  font-size: clamp(11px, 0.82vw, 14px);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiktok-feature-grid {
  gap: clamp(18px, 2.6vw, 34px);
}

.tiktok-feature-grid article {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  padding: clamp(24px, 2.5vw, 34px);
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tiktok-feature-grid article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(244, 244, 204, 0.76), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(198, 236, 209, 0.9), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 243, 0.78));
  box-shadow:
    0 24px 60px rgba(26, 71, 40, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.tiktok-feature-grid span,
.tiktok-flow-card span,
.tiktok-mini-flow span {
  width: 40px;
  height: 32px;
  background: linear-gradient(135deg, #1c6a3d, #52a567);
  box-shadow: 0 10px 24px rgba(40, 112, 64, 0.22);
}

.tiktok-feature-grid h3 {
  margin-top: 6px;
  font-size: clamp(21px, 1.9vw, 30px);
  line-height: 1.12;
}

.tiktok-feature-grid p {
  max-width: 92%;
  font-size: clamp(14px, 1vw, 16px);
}

.tiktok-solution-section {
  position: relative;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 74% 28%, rgba(212, 241, 220, 0.66), transparent 34%),
    linear-gradient(180deg, #fff 0%, rgba(250, 252, 248, 0.92) 100%);
}

.tiktok-support-section {
  column-gap: clamp(42px, 7vw, 104px);
  row-gap: clamp(12px, 1.4vw, 22px);
  align-items: start;
}

.tiktok-support-section .tiktok-section-copy {
  grid-row: 1 / span 2;
}

.tiktok-support-section .tiktok-flow-card {
  padding: 0;
}

.tiktok-solution-section-alt {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  background:
    radial-gradient(ellipse at 22% 66%, rgba(210, 240, 218, 0.62), transparent 36%),
    linear-gradient(180deg, rgba(247, 251, 248, 0.98), #fff);
}

.tiktok-solution-section::before {
  position: absolute;
  inset: 8% auto auto 7.5vw;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 112, 64, 0.11), transparent 68%);
  pointer-events: none;
}

.tiktok-section-copy {
  position: relative;
  z-index: 2;
  gap: 20px;
}

.tiktok-section-copy h2 {
  max-width: 720px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.12;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.tiktok-section-copy p,
.tiktok-check-list {
  max-width: 680px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.78;
}

.tiktok-check-list {
  gap: 10px;
  margin-top: 2px;
}

.tiktok-check-list li {
  padding-left: 34px;
  font-weight: 650;
}

.tiktok-flow-card,
.tiktok-mini-flow {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tiktok-flow-card::before,
.tiktok-mini-flow::before {
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(40, 112, 64, 0.28), transparent);
}

.tiktok-flow-card article,
.tiktok-mini-flow article {
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 232, 176, 0.35), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 241, 0.7));
  box-shadow:
    0 22px 52px rgba(21, 67, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.tiktok-flow-card article {
  min-height: 238px;
}

.tiktok-flow-card h3,
.tiktok-mini-flow h3 {
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.16;
}

.tiktok-flow-card p,
.tiktok-mini-flow p {
  font-size: clamp(14px, 1vw, 16px);
}

.tiktok-mini-flow {
  gap: 16px;
}

.tiktok-mini-flow article {
  min-height: 112px;
}

.tiktok-mini-flow-two {
  gap: 18px;
}

.tiktok-flow-card-compact {
  gap: 18px;
}

.tiktok-flow-card-compact::before {
  background: linear-gradient(180deg, transparent, rgba(40, 112, 64, 0.28), transparent);
}

.tiktok-flow-card-compact article {
  min-height: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(196, 235, 207, 0.76), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 249, 244, 0.76));
}

.tiktok-visual-stack,
.tiktok-support-visuals,
.tiktok-account-visual,
.tiktok-dashboard-grid,
.tiktok-material-gallery {
  position: relative;
  z-index: 1;
}

.tiktok-visual-stack::before,
.tiktok-support-visuals::before,
.tiktok-account-visual::before,
.tiktok-dashboard-grid::before,
.tiktok-material-gallery::before {
  position: absolute;
  inset: 10% 8% 4%;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(40, 112, 64, 0.16), transparent 68%);
  filter: blur(18px);
}

.tiktok-visual-stack figure,
.tiktok-support-visuals figure,
.tiktok-account-visual figure,
.tiktok-dashboard-grid figure,
.tiktok-material-gallery figure {
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(16, 37, 23, 0.14),
    0 10px 28px rgba(40, 112, 64, 0.08);
}

.tiktok-support-visuals {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
  margin-top: 0;
  padding: 0;
}

.tiktok-support-visuals figure:first-child {
  width: 100%;
  margin: 0;
}

.tiktok-support-visuals figure:nth-child(2) {
  width: 100%;
  margin: 0;
}

.tiktok-support-visuals figure {
  height: clamp(88px, 6.5vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 241, 222, 0.72), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 247, 0.9));
  box-shadow:
    0 18px 42px rgba(16, 37, 23, 0.12),
    0 8px 20px rgba(40, 112, 64, 0.08);
}

.tiktok-account-visual {
  align-self: center;
  display: grid;
  padding: clamp(10px, 1.4vw, 18px);
}

.tiktok-account-visual figure {
  width: 94%;
  margin: 0 auto;
}

.tiktok-visual-stack figure:first-child {
  width: 92%;
}

.tiktok-visual-stack figure:nth-child(2) {
  width: 86%;
  margin-top: -28px;
  margin-left: auto;
}

.tiktok-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.tiktok-dashboard-grid figure:first-child {
  grid-column: auto;
  width: 100%;
  margin-left: 0;
}

.tiktok-dashboard-grid figure:nth-child(2) {
  grid-column: auto;
  width: 100%;
  margin-top: 0;
}

.tiktok-dashboard-grid figure:nth-child(3) {
  grid-column: auto;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
}

.tiktok-material-gallery {
  gap: 0;
}

.tiktok-material-gallery figure:first-child {
  width: 90%;
}

.tiktok-material-gallery figure:nth-child(2) {
  width: 86%;
  margin-top: -24px;
  margin-left: auto;
}

.tiktok-visual-stack img,
.tiktok-support-visuals img,
.tiktok-account-visual img,
.tiktok-dashboard-grid img,
.tiktok-material-gallery img {
  max-height: 390px;
}

.tiktok-support-visuals img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.tiktok-account-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.tiktok-dashboard-grid img {
  object-fit: contain;
  background: #fff;
}

.tiktok-material-gallery img {
  object-fit: contain;
  padding: 6px;
}

.tiktok-section-copy.reveal-card,
.tiktok-feature-grid article.reveal-card,
.tiktok-flow-card article.reveal-card,
.tiktok-mini-flow article.reveal-card,
.tiktok-visual-stack figure.reveal-card,
.tiktok-support-visuals figure.reveal-card,
.tiktok-account-visual figure.reveal-card,
.tiktok-dashboard-grid figure.reveal-card,
.tiktok-material-gallery figure.reveal-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(36px) scale(0.985);
  transition: opacity 680ms ease, filter 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.tiktok-section-copy.reveal-card.is-visible,
.tiktok-feature-grid article.reveal-card.is-visible,
.tiktok-flow-card article.reveal-card.is-visible,
.tiktok-mini-flow article.reveal-card.is-visible,
.tiktok-visual-stack figure.reveal-card.is-visible,
.tiktok-support-visuals figure.reveal-card.is-visible,
.tiktok-account-visual figure.reveal-card.is-visible,
.tiktok-dashboard-grid figure.reveal-card.is-visible,
.tiktok-material-gallery figure.reveal-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.tiktok-feature-grid article.reveal-card:nth-child(2),
.tiktok-flow-card article.reveal-card:nth-child(2),
.tiktok-mini-flow article.reveal-card:nth-child(2),
.tiktok-support-visuals figure.reveal-card:nth-child(2),
.tiktok-dashboard-grid figure.reveal-card:nth-child(2),
.tiktok-material-gallery figure.reveal-card:nth-child(2) {
  transition-delay: 90ms;
}

.tiktok-feature-grid article.reveal-card:nth-child(3),
.tiktok-flow-card article.reveal-card:nth-child(3),
.tiktok-mini-flow article.reveal-card:nth-child(3),
.tiktok-dashboard-grid figure.reveal-card:nth-child(3) {
  transition-delay: 170ms;
}

.tiktok-feature-grid article.reveal-card:nth-child(4) {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .tiktok-section-copy.reveal-card,
  .tiktok-feature-grid article.reveal-card,
  .tiktok-flow-card article.reveal-card,
  .tiktok-mini-flow article.reveal-card,
  .tiktok-visual-stack figure.reveal-card,
  .tiktok-support-visuals figure.reveal-card,
  .tiktok-account-visual figure.reveal-card,
  .tiktok-dashboard-grid figure.reveal-card,
  .tiktok-material-gallery figure.reveal-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.about-cta-section,
.cases-cta-section,
.content-cta-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, rgba(244, 248, 241, 0.96) 100%),
    var(--soft);
}

.about-cta-section .section-kicker,
.cases-cta-section .section-kicker,
.content-cta-section .section-kicker {
  color: var(--primary);
}

.about-cta-section h2,
.cases-cta-section h2,
.content-cta-section h2 {
  color: var(--ink);
}

.about-cta-section p,
.cases-cta-section p,
.content-cta-section p {
  color: var(--muted);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 82px) clamp(32px, 7vw, 96px) clamp(30px, 4vw, 44px);
  color: #fff;
  background: linear-gradient(180deg, #143822 0%, #09170e 22%, #040705 64%, #020302 100%);
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(500px, 1.86fr) minmax(190px, 0.68fr);
  gap: clamp(24px, 2.5vw, 42px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand-panel {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.1vw, 28px);
  text-align: center;
}

.footer-brand-panel img {
  width: min(178px, 44vw);
  height: auto;
  max-height: 54px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.footer-brand-panel p {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.34vw, 22px);
  font-weight: 820;
  line-height: 1.48;
  letter-spacing: 0;
}

.footer-brand-platforms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.platform-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.platform-icon svg {
  width: 22px;
  height: 22px;
}

.platform-tiktok {
  width: 36px;
  height: 36px;
  background: #050505;
}

.platform-tiktok svg {
  width: 26px;
  height: 26px;
  transform: translate(1px, 0);
}

.platform-tiktok svg path:not(.tiktok-shadow-cyan):not(.tiktok-shadow-pink) {
  fill: #fff;
}

.tiktok-shadow-cyan {
  fill: #25f4ee;
  transform: translate(-0.8px, 0.8px);
}

.tiktok-shadow-pink {
  fill: #fe2c55;
  transform: translate(0.8px, -0.8px);
}

.platform-youtube {
  background: #ff0033;
  color: #fff;
}

.platform-youtube svg {
  fill: currentColor;
}

.platform-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 34%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.platform-instagram svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.25vw, 34px);
  min-width: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  width: max-content;
  max-width: 100%;
  font-size: clamp(13px, 0.98vw, 18px);
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.02vw, 18px);
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.16s ease, transform 0.16s ease;
}

.footer-column a:hover {
  color: #dff3d9;
  transform: translateX(2px);
}

@media (min-width: 1181px) {
  .footer-links-grid .footer-column:nth-child(4) {
    transform: translateX(-14px);
  }
}

.footer-action-panel {
  --footer-social-width: 166px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: clamp(14px, 1.7vw, 24px);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--footer-social-width));
  margin-top: -13px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1f6337 0%, #2e8b54 62%, #46a96a 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: clamp(12px, 0.92vw, 16px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.footer-cta:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: var(--footer-social-width);
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.16s ease, filter 0.16s ease;
}

.footer-socials a:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link.linkedin {
  background: #0a66c2;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.x-twitter {
  color: #050806;
  background: #fff;
}

.social-link.youtube {
  background: #ff0033;
}

.footer-side-link {
  color: #fff;
  font-size: clamp(14px, 1.12vw, 20px);
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.16s ease;
}

.footer-side-link:hover {
  color: #dff3d9;
}

.footer-email {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 0.96vw, 17px);
  text-transform: none;
  word-break: break-word;
}

.footer-addresses {
  display: grid;
  gap: 10px;
  margin-top: -4px;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-addresses p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  line-height: 1.48;
}

.footer-addresses strong,
.footer-addresses span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.footer-legal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px clamp(18px, 2.4vw, 34px);
  width: min(100%, 1180px);
  margin: clamp(92px, 9vw, 138px) auto 0;
  padding-top: clamp(16px, 1.8vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(11px, 0.86vw, 16px);
  font-weight: 500;
  line-height: 1.28;
  text-align: center;
}

.footer-legal p {
  flex: 0 1 auto;
  margin: 0;
}

.footer-legal a,
.footer-legal span {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.56);
  flex: 0 0 auto;
  font: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.56);
}

.footer-legal a {
  transition: color 0.16s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 28px;
  }

  .nav {
    gap: 18px;
    font-size: 14px;
  }

  .language-button {
    width: 38px;
    height: 38px;
  }

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

  .cases-hero-layout {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
  }

  .cases-orbit-visual {
    max-width: 430px;
  }

  .about-manifesto,
  .about-footprint,
  .cases-outcomes,
  .content-band,
  .creator-capability-section,
  .tiktok-solution-section,
  .tiktok-solution-section-alt {
    grid-template-columns: 1fr;
  }

  .tiktok-support-visuals {
    grid-column: auto;
    margin-top: 0;
  }

  .tiktok-support-section .tiktok-section-copy {
    grid-row: auto;
  }

  .about-stat-grid,
  .case-grid,
  .content-card-grid,
  .tiktok-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-heading-row,
  .content-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-filter-pills,
  .content-filter-pills {
    justify-content: flex-start;
  }

  .creator-pain-grid,
  .creator-sop-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-benchmark-table > div,
  .creator-benchmark-table article {
    grid-template-columns: minmax(160px, 0.8fr) repeat(2, minmax(150px, 1fr));
  }

  .creator-sop-body {
    min-height: 360px;
  }

  .tiktok-solution-section-alt .tiktok-section-copy {
    order: 1;
  }

  .tiktok-solution-section-alt .tiktok-visual-stack,
  .tiktok-solution-section-alt .tiktok-material-gallery {
    order: 2;
  }

  .footer-shell {
    grid-template-columns: minmax(150px, 0.56fr) minmax(0, 1.44fr);
    column-gap: 34px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .footer-action-panel {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: flex;
    max-height: calc(100vh - 98px);
    margin: 0;
    padding: 12px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 10, 7, 0.97);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.mobile-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown.open::after,
  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 6px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: min(124px, 46vw);
  }

  .language-menu {
    right: -54px;
  }

  .language-menu::before {
    right: 67px;
  }

  .hero {
    min-height: 640px;
    padding: 110px 20px 70px;
  }

  .about-hero,
  .cases-hero,
  .content-hero {
    min-height: 430px;
    padding: 104px 20px 56px;
  }

  .cases-hero {
    min-height: 0;
    padding-top: 92px;
  }

  .cases-hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .cases-orbit-visual {
    width: min(86vw, 330px);
    order: 1;
  }

  .cases-hero-inner {
    order: 2;
    margin-inline: auto;
  }

  .about-hero {
    min-height: 400px;
    padding: 98px 20px 48px;
  }

  .about-hero h1,
  .cases-hero h1,
  .content-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 9.6vw, 52px);
    line-height: 1.08;
  }

  .about-hero p,
  .cases-hero p,
  .content-hero p {
    font-size: clamp(15px, 3.9vw, 18px);
    line-height: 1.58;
  }

  .about-hero p {
    margin-bottom: 16px;
  }

  .tiktok-feature-grid,
  .tiktok-flow-card,
  .tiktok-mini-flow-two,
  .tiktok-support-visuals,
  .tiktok-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-feature-grid article {
    min-height: 0;
  }

  .tiktok-solution-hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.08;
  }

  .tiktok-solution-overview .content-heading-row h2,
  .tiktok-section-copy h2 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.12;
  }

  .tiktok-feature-grid article::before {
    box-shadow:
      0 18px 42px rgba(26, 71, 40, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .tiktok-solution-section,
  .tiktok-solution-section-alt {
    gap: 30px;
  }

  .tiktok-flow-card,
  .tiktok-mini-flow {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .tiktok-flow-card::before,
  .tiktok-mini-flow-two::before {
    top: 24px;
    bottom: 24px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, rgba(40, 112, 64, 0.34) 0 10px, transparent 10px 18px);
  }

  .tiktok-flow-card article,
  .tiktok-mini-flow article {
    min-height: 0;
    padding: 22px 22px 22px 70px;
  }

  .tiktok-flow-card article,
  .tiktok-mini-flow article,
  .tiktok-feature-grid article {
    background:
      radial-gradient(circle at 100% 0%, rgba(232, 232, 176, 0.32), transparent 38%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 243, 0.78));
  }

  .tiktok-flow-card span,
  .tiktok-mini-flow span,
  .tiktok-flow-card-compact span {
    position: absolute;
    left: 0;
    top: 22px;
  }

  .tiktok-flow-card-compact article {
    padding-left: 70px;
  }

  .tiktok-visual-stack img,
  .tiktok-support-visuals img,
  .tiktok-account-visual img,
  .tiktok-dashboard-grid img {
    max-height: 240px;
  }

  .tiktok-material-gallery img {
    max-height: 260px;
  }

  .tiktok-visual-stack figure:first-child,
  .tiktok-visual-stack figure:nth-child(2),
  .tiktok-support-visuals figure:first-child,
  .tiktok-support-visuals figure:nth-child(2),
  .tiktok-account-visual figure,
  .tiktok-dashboard-grid figure:first-child,
  .tiktok-dashboard-grid figure:nth-child(2),
  .tiktok-dashboard-grid figure:nth-child(3),
  .tiktok-material-gallery figure:first-child,
  .tiktok-material-gallery figure:nth-child(2) {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .about-copy-block h2,
  .about-stats-heading h2,
  .about-footprint h2,
  .about-cta-section h2,
  .cases-heading-row h2,
  .cases-outcomes h2,
  .cases-cta-section h2,
  .content-heading-row h2,
  .content-band h2,
  .content-cta-section h2 {
    font-size: clamp(30px, 7.7vw, 38px);
    line-height: 1.14;
  }

  .about-hero .button.primary {
    min-height: 40px;
    padding: 0 20px;
    font-size: 12px;
  }

  .about-hero-mark,
  .cases-hero-mark,
  .content-hero-mark {
    right: -28vw;
    bottom: -30px;
    width: 86vw;
    opacity: 0.09;
  }

  .about-manifesto,
  .about-footprint,
  .cases-outcomes,
  .content-band,
  .creator-capability-section {
    gap: 30px;
  }

  .about-principle-list {
    gap: 16px;
  }

  .about-card,
  .about-timeline-item,
  .case-card-body,
  .content-card,
  .creator-pain-problem,
  .creator-pain-answer,
  .creator-capability-grid article,
  .cases-outcome-list article,
  .content-step-list article {
    padding: 24px;
  }

  .about-stat-grid,
  .case-grid,
  .content-card-grid,
  .creator-pain-grid,
  .creator-capability-grid,
  .creator-sop-flow {
    grid-template-columns: 1fr;
  }

  .creator-solution-page .content-hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
  }

  html[lang="zh-CN"] .creator-solution-page .content-hero h1,
  html[lang="zh-Hant"] .creator-solution-page .content-hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.06;
  }

  html[lang="zh-CN"] .tiktok-solution-hero h1,
  html[lang="zh-Hant"] .tiktok-solution-hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.08;
  }

  .creator-pain-problem {
    min-height: auto;
  }

  .creator-pain-answer {
    min-height: auto;
    padding-top: 46px;
  }

  .creator-pain-answer img {
    top: -28px;
    width: 64px;
    height: 64px;
    padding: 10px;
  }

  .creator-benchmark-table {
    overflow-x: auto;
  }

  .creator-benchmark-table > div,
  .creator-benchmark-table article {
    grid-template-columns: minmax(118px, 0.86fr) repeat(2, minmax(96px, 1fr));
    min-height: 62px;
    padding: 12px 10px;
    font-size: clamp(14px, 4.1vw, 20px);
  }

  .creator-benchmark-table .creator-benchmark-head {
    font-size: clamp(13px, 3.8vw, 18px);
  }

  .creator-sop-arrow {
    min-height: 58px;
    padding-right: 24px;
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .creator-sop-body {
    min-height: auto;
  }

  .creator-sop-body span {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

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

  .about-stat {
    min-height: 132px;
  }

  .about-footprint {
    padding-bottom: 72px;
  }

  .about-cta-section,
  .cases-cta-section,
  .content-cta-section {
    grid-template-columns: 1fr;
    padding: 58px 20px;
  }

  .trusted-logos {
    padding: 48px 0 44px;
  }

  .trusted-heading {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 18px;
  }

  .trusted-dots {
    width: 90px;
    background-size: 15px 8px;
    background-position: 5px 50%;
  }

  .trusted-dots:first-child {
    background-position: 10px 50%;
  }

  .logo-set {
    gap: 16px;
    padding-right: 16px;
  }

  .logo-frame {
    width: 104px;
    height: 62px;
  }

  .eyebrow {
    min-height: 44px;
    padding: 8px 20px;
    font-size: 15px;
  }

  .hero p br {
    display: none;
  }

  .section-pad {
    padding: 62px 20px;
  }

  .concept-grid,
  .service-grid,
  .step-grid,
  .stats,
  .booking {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .span-2 {
    grid-column: span 1;
  }

  .footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 166px);
    column-gap: 22px;
    row-gap: 32px;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .footer-brand-panel {
    grid-column: 1 / -1;
    justify-items: start;
    gap: 18px;
    text-align: left;
  }

  .footer-brand-panel img {
    margin-inline: 0;
    object-position: left center;
  }

  .footer-brand-panel p {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.52;
  }

  .footer-links-grid {
    display: contents;
    width: 100%;
  }

  .footer-column {
    width: auto;
    max-width: 100%;
    gap: 11px;
  }

  .footer-column:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-column:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-column:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-column:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }

  .footer-column h3 {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.08;
    white-space: nowrap;
  }

  .footer-column a {
    font-size: 15px;
    font-weight: 500;
  }

  .footer-action-panel {
    display: contents;
  }

  .footer-cta {
    grid-column: 2;
    grid-row: 4;
    align-self: start;
    width: var(--footer-social-width);
    margin-top: -13px;
    min-height: 42px;
    padding-inline: 18px;
  }

  .footer-socials {
    grid-column: 2;
    grid-row: 4;
    align-self: start;
    margin-top: 45px;
  }

  .footer-email {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: 4px;
  }

  .footer-addresses {
    grid-column: 1 / -1;
    grid-row: 6;
    max-width: 100%;
  }

  .footer-legal {
    justify-content: center;
    width: min(88%, 420px);
    max-width: 420px;
    gap: 8px 18px;
    margin-top: 82px;
    padding-top: 16px;
    padding-inline: 10px;
    font-size: 11px;
    line-height: 1.34;
    text-align: center;
  }

  .footer-legal p {
    flex-basis: 100%;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  html[lang="zh-CN"] h1,
  html[lang="zh-Hant"] h1 {
    font-size: clamp(42px, 10.7vw, 58px);
    line-height: 1.18;
  }

  html[lang="zh-CN"] .hero p,
  html[lang="zh-Hant"] .hero p {
    font-size: clamp(17px, 4.5vw, 21px);
    line-height: 1.7;
  }

  html[lang="zh-CN"] .about-hero h1,
  html[lang="zh-CN"] .cases-hero h1,
  html[lang="zh-CN"] .content-hero h1,
  html[lang="zh-Hant"] .about-hero h1,
  html[lang="zh-Hant"] .cases-hero h1,
  html[lang="zh-Hant"] .content-hero h1 {
    font-size: clamp(32px, 8.8vw, 48px);
    line-height: 1.14;
  }

  html[lang="zh-CN"] body[data-page="tiktokAdsSolution"] .tiktok-solution-hero h1,
  html[lang="zh-Hant"] body[data-page="tiktokAdsSolution"] .tiktok-solution-hero h1,
  html[lang="zh-CN"] body[data-page="creatorSolution"] .creator-solution-page .content-hero h1,
  html[lang="zh-Hant"] body[data-page="creatorSolution"] .creator-solution-page .content-hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
  }
}

@media (max-width: 360px) {
  .footer-shell {
    grid-template-columns: 1fr;
    row-gap: 32px;
    width: min(100%, 420px);
  }

  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 25px;
    width: 100%;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(2),
  .footer-column:nth-child(3),
  .footer-column:nth-child(4),
  .footer-cta,
  .footer-socials,
  .footer-email,
  .footer-addresses {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-action-panel {
    display: grid;
    gap: 18px;
  }

  .footer-cta {
    width: min(100%, var(--footer-social-width));
    margin-top: 0;
  }

  .footer-socials {
    margin-top: 0;
  }
}

body[data-page="blog"] .blog-library {
  min-height: calc(100vh - 92px);
  padding-top: clamp(112px, 9vw, 144px);
  padding-bottom: clamp(40px, 7vw, 76px);
  background:
    radial-gradient(circle at 14% 8%, rgba(40, 112, 64, 0.08), transparent 22%),
    linear-gradient(180deg, #f4f7f5 0%, #eef5ef 100%);
}

body[data-page="blog"] .blog-panel {
  width: min(100%, 872px);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 48px) clamp(24px, 3.4vw, 44px);
  border: 1px solid rgba(40, 112, 64, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 52px rgba(13, 29, 17, 0.08),
    0 10px 24px rgba(40, 112, 64, 0.08);
}

body[data-page="blog"] .blog-search {
  position: relative;
  margin-bottom: 4px;
}

body[data-page="blog"] .blog-search-input {
  width: 100%;
  height: 52px;
  padding: 0 74px 0 54px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #101512;
  background:
    linear-gradient(#f7faf7, #f7faf7) padding-box,
    linear-gradient(135deg, rgba(40, 112, 64, 0.14), rgba(93, 160, 104, 0.08)) border-box;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

body[data-page="blog"] .blog-search::before {
  position: absolute;
  top: 50%;
  left: 23px;
  width: 17px;
  height: 17px;
  content: "";
  border: 2px solid rgba(40, 112, 64, 0.54);
  border-radius: 50%;
  transform: translateY(-50%);
}

body[data-page="blog"] .blog-search::after {
  position: absolute;
  top: calc(50% + 7px);
  left: 37px;
  width: 8px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: rgba(40, 112, 64, 0.54);
  transform: rotate(45deg);
}

body[data-page="blog"] .blog-search-input:focus {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(40, 112, 64, 0.42), rgba(93, 160, 104, 0.22)) border-box;
  box-shadow: 0 0 0 4px rgba(40, 112, 64, 0.08);
}

body[data-page="blog"] .blog-search-button {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body[data-page="blog"] .blog-search-button:hover {
  box-shadow: 0 12px 26px rgba(40, 112, 64, 0.2);
  transform: translateY(calc(-50% - 1px));
}

body[data-page="blog"] .blog-search-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

body[data-page="blog"] .blog-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 0;
}

body[data-page="blog"] .blog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(156px, 27vw, 238px);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: 232px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-bottom: 1px solid rgba(13, 29, 17, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

body[data-page="blog"] .blog-card:hover {
  background: linear-gradient(90deg, rgba(40, 112, 64, 0.045), rgba(40, 112, 64, 0));
  transform: translateY(-2px);
}

body[data-page="blog"] .blog-card:last-of-type {
  border-bottom: 0;
}

body[data-page="blog"] .blog-card[hidden] {
  display: none;
}

body[data-page="blog"] .blog-card-body {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 32px) 0;
}

body[data-page="blog"] .blog-card-media {
  position: relative;
  width: 100%;
  height: 168px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(232, 232, 176, 0.6), transparent 26%),
    linear-gradient(135deg, rgba(225, 242, 229, 0.98), rgba(248, 252, 248, 0.92));
  box-shadow: 0 16px 34px rgba(13, 29, 17, 0.09);
  transform: translateZ(0);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

body[data-page="blog"] .blog-card:hover .blog-card-media {
  box-shadow: 0 20px 40px rgba(13, 29, 17, 0.13);
  transform: scale(1.035);
}

body[data-page="blog"] .blog-card-media::before,
body[data-page="blog"] .blog-card-media::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

body[data-page="blog"] .blog-card-media::before {
  inset: 20px 22px auto auto;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(40, 112, 64, 0.16);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.14),
    0 0 42px rgba(40, 112, 64, 0.08);
}

body[data-page="blog"] .blog-card-media::after {
  left: 24px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  background:
    linear-gradient(135deg, rgba(40, 112, 64, 0.86), rgba(93, 160, 104, 0.72));
  box-shadow: 0 16px 28px rgba(40, 112, 64, 0.18);
}

body[data-page="blog"] .blog-card-media span,
body[data-page="blog"] .blog-card a span {
  display: inline-flex;
  min-height: 0;
  max-width: none;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-overflow: clip;
  white-space: nowrap;
}

body[data-page="blog"] .blog-card-media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: #f6fbf7;
}

body[data-page="blog"] .blog-card-media-image::before,
body[data-page="blog"] .blog-card-media-image::after {
  display: none;
}

body[data-page="blog"] .blog-card-media-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="blog"] .blog-card-orb {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 30%, #e8e8b0 0 7px, transparent 8px),
    linear-gradient(135deg, #287040, #5da068);
  box-shadow: 0 14px 24px rgba(40, 112, 64, 0.16);
  transition: transform 260ms ease;
}

body[data-page="blog"] .blog-card-line {
  position: absolute;
  right: 24px;
  bottom: 26px;
  width: 44%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 112, 64, 0), rgba(40, 112, 64, 0.62));
}

body[data-page="blog"] .blog-card-icon {
  position: absolute;
  right: 42px;
  bottom: 35px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 34% 28%, rgba(232, 232, 176, 0.44), transparent 25%),
    linear-gradient(145deg, rgba(12, 56, 31, 0.9), rgba(93, 160, 104, 0.84));
  box-shadow: 0 16px 28px rgba(13, 29, 17, 0.18);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

body[data-page="blog"] .blog-card:hover .blog-card-orb {
  transform: translate(7px, -5px) rotate(-6deg);
}

body[data-page="blog"] .blog-card:hover .blog-card-icon {
  box-shadow: 0 24px 42px rgba(13, 29, 17, 0.22);
  transform: translate(-4px, -6px) rotate(4deg);
}

body[data-page="blog"] .blog-card-media-ads {
  background:
    radial-gradient(circle at 70% 30%, rgba(40, 112, 64, 0.18), transparent 24%),
    radial-gradient(circle at 26% 70%, rgba(232, 232, 176, 0.5), transparent 25%),
    linear-gradient(135deg, rgba(238, 248, 240, 0.98), rgba(218, 239, 225, 0.92));
}

body[data-page="blog"] .blog-card-media-commerce::after {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(12, 56, 31, 0.88), rgba(80, 141, 88, 0.74));
}

body[data-page="blog"] .blog-card-media-strategy {
  background:
    radial-gradient(circle at 72% 34%, rgba(232, 232, 176, 0.58), transparent 24%),
    linear-gradient(135deg, rgba(218, 238, 224, 0.98), rgba(250, 252, 247, 0.94));
}

body[data-page="blog"] .blog-card-media-system {
  background:
    radial-gradient(circle at 28% 28%, rgba(40, 112, 64, 0.2), transparent 23%),
    radial-gradient(circle at 76% 72%, rgba(232, 232, 176, 0.5), transparent 24%),
    linear-gradient(135deg, rgba(235, 246, 238, 0.98), rgba(244, 250, 246, 0.92));
}

body[data-page="blog"] .blog-card-media-growth {
  background:
    radial-gradient(circle at 72% 30%, rgba(232, 232, 176, 0.5), transparent 24%),
    radial-gradient(circle at 22% 70%, rgba(40, 112, 64, 0.22), transparent 25%),
    linear-gradient(135deg, rgba(222, 239, 228, 0.98), rgba(249, 252, 249, 0.94));
}

body[data-page="blog"] .blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
}

body[data-page="blog"] .blog-card-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

body[data-page="blog"] .blog-card-meta time {
  color: rgba(18, 31, 22, 0.5);
  font-size: 13px;
  font-weight: 800;
}

body[data-page="blog"] .blog-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #101512;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="blog"] .blog-card p {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: rgba(18, 31, 22, 0.62);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="blog"] .blog-card-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

body[data-page="blog"] .blog-card-stats {
  display: flex;
  gap: clamp(13px, 1.2vw, 20px);
  align-items: center;
  color: #aeb6bb;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}

body[data-page="blog"] .blog-card-stats > span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto;
  padding: 0;
  color: inherit;
  background: transparent !important;
  line-height: 18px;
}

body[data-page="blog"] .blog-card-stats > .blog-share-button {
  cursor: pointer;
  outline: none;
  transition: color 180ms ease, transform 180ms ease;
}

body[data-page="blog"] .blog-card-stats > .blog-share-button:hover,
body[data-page="blog"] .blog-card-stats > .blog-share-button:focus-visible {
  color: #7f8990;
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-card-stats strong {
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

body[data-page="blog"] .blog-card-stats .blog-stat-symbol {
  display: block;
  width: 16px;
  height: 16px;
  min-height: 0 !important;
  max-width: none;
  padding: 0 !important;
  overflow: visible;
  flex: 0 0 16px;
  border: 0;
  border-radius: 0 !important;
  color: inherit;
  background: transparent !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="blog"] .blog-stat-chat path:nth-child(2) {
  stroke-width: 2.1;
}

body[data-page="blog"] .blog-share-toast {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 1200;
  padding: 6px 14px;
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 999px;
  background: rgba(250, 253, 251, 0.96);
  box-shadow: 0 10px 28px rgba(14, 34, 20, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

body[data-page="blog"] .blog-share-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body[data-page="blog"] .blog-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--primary);
  min-height: 20px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

body[data-page="blog"] .blog-card a::after {
  display: none;
}

body[data-page="blog"] .blog-card a span[aria-hidden="true"] {
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #3f8059;
  font-size: 12px;
  transition: transform 180ms ease;
}

body[data-page="blog"] .blog-card:hover a span[aria-hidden="true"] {
  transform: translate(2px, -2px);
}

body[data-page="blog"] .content-card.reveal-card:nth-child(4) {
  transition-delay: 200ms;
}

body[data-page="blog"] .content-card.reveal-card:nth-child(5) {
  transition-delay: 260ms;
}

body[data-page="blog"] .content-card.reveal-card:nth-child(6) {
  transition-delay: 320ms;
}

body[data-page="blog"] .blog-card.blog-page-enter {
  animation: blogCardPageIn 420ms ease both;
}

body[data-page="blog"] .blog-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(24px, 3.6vw, 42px);
}

body[data-page="blog"] .blog-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(40, 112, 64, 0.12);
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  transition:
    color 180ms ease,
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

body[data-page="blog"] .blog-pagination button:hover,
body[data-page="blog"] .blog-pagination button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-pagination button:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

body[data-page="blog"] .blog-empty {
  margin: 36px 0 0;
  color: rgba(18, 31, 22, 0.56);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

body[data-page="blog"] .blog-article-page {
  min-height: 100vh;
  padding: clamp(108px, 8vw, 140px) 20px clamp(72px, 7vw, 104px);
  background:
    radial-gradient(circle at 16% 8%, rgba(40, 112, 64, 0.06), transparent 28%),
    linear-gradient(180deg, #edf7ef 0%, #f8faf8 42%, #ffffff 100%);
}

body[data-page="blog"] .blog-article-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

body[data-page="blog"] .blog-article-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(18, 31, 22, 0.09);
}

body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-card::before {
  position: absolute;
  top: -76px;
  right: -124px;
  z-index: 0;
  width: min(64%, 640px);
  height: clamp(270px, 36vw, 430px);
  background:
    radial-gradient(ellipse at 58% 46%, rgba(225, 246, 229, 0.54) 0%, rgba(239, 250, 241, 0.34) 42%, rgba(255, 255, 255, 0) 73%),
    radial-gradient(ellipse at 82% 18%, rgba(206, 237, 207, 0.2) 0%, rgba(255, 255, 255, 0) 58%);
  content: "";
  filter: blur(14px);
  pointer-events: none;
}

body[data-page="blog"] .blog-article-card > h1 {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 56px));
  margin: clamp(38px, 5vw, 64px) auto 0;
  color: #101511;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}

body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-card > h1 {
  width: min(520px, calc(100% - 56px));
  margin-left: clamp(28px, 8vw, 80px);
  margin-right: auto;
}

body[data-page="blog"] .case-article-floating-logo {
  position: absolute;
  top: clamp(24px, 3.5vw, 44px);
  right: clamp(66px, 8vw, 110px);
  z-index: 1;
  width: clamp(132px, 14vw, 188px);
  max-width: 22%;
  height: auto;
  opacity: 0.18;
  filter: saturate(0.68) blur(0.2px) drop-shadow(0 16px 26px rgba(58, 116, 69, 0.05));
  mix-blend-mode: multiply;
  pointer-events: none;
}

body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-card > h1,
body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-meta,
body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-feature-media,
body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-body,
body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-comments {
  position: relative;
  z-index: 2;
}

body[data-page="blog"] .blog-article-meta {
  display: flex;
  width: min(820px, calc(100% - 56px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px auto 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #aab1b5;
  font-size: 15px;
  font-weight: 500;
}

body[data-page="blog"] .blog-article-meta time {
  color: #8c9692;
  font-weight: 600;
}

body[data-page="blog"] .blog-article-stats {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #aeb6bb;
}

body[data-page="blog"] .blog-article-stat,
body[data-page="blog"] .blog-article-share {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

body[data-page="blog"] .blog-article-stat {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
}

body[data-page="blog"] button.blog-article-stat {
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

body[data-page="blog"] button.blog-article-stat:hover,
body[data-page="blog"] button.blog-article-stat:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-article-like-button.like-pulse {
  animation: blogArticleLikePulse 520ms ease;
}

body[data-page="blog"] .blog-article-like-button.like-pulse svg {
  color: #d83f3f;
  fill: currentColor;
}

body[data-page="blog"] .blog-article-like-button.like-pulse svg path {
  fill: #d83f3f;
  stroke: #d83f3f;
}

@keyframes blogArticleLikePulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

body[data-page="blog"] .blog-article-stats svg,
body[data-page="blog"] .blog-article-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="blog"] .blog-article-stats svg path,
body[data-page="blog"] .blog-article-stats svg circle {
  fill: none;
}

body[data-page="blog"] .blog-article-stats .blog-article-like-button.like-pulse svg path {
  fill: #d83f3f;
  stroke: #d83f3f;
}

body[data-page="blog"] .blog-article-share {
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

body[data-page="blog"] .blog-article-share:hover,
body[data-page="blog"] .blog-article-share:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-article-feature-media {
  width: min(820px, calc(100% - 56px));
  margin: clamp(18px, 2.6vw, 30px) auto clamp(28px, 3.6vw, 42px);
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244, 250, 246, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 42px rgba(22, 48, 31, 0.08);
}

body[data-page="blog"] .blog-article-feature-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(96px, 14vw, 164px);
  object-fit: contain;
}

body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-feature-media {
  width: min(900px, calc(100% - 48px));
  background: #f7faf6;
}

body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-feature-media img {
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.creator-case-template {
  --case-accent: var(--primary);
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.creator-case-window {
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250, 252, 250, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 78% 0%, color-mix(in srgb, var(--case-accent) 14%, transparent), transparent 34%);
  box-shadow:
    0 24px 60px rgba(18, 31, 22, 0.1),
    0 10px 26px rgba(40, 112, 64, 0.08);
}

.creator-case-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  background: #dcebe5;
}

.creator-case-window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.creator-case-window-bar span:nth-child(1) { background: #ff5f57; }
.creator-case-window-bar span:nth-child(2) { background: #ffbd2e; }
.creator-case-window-bar span:nth-child(3) { background: #28c840; }

.creator-case-window h2,
.creator-case-results h2,
.creator-case-spotlight h2,
.creator-case-examples > h2 {
  margin: 0;
  color: #0f1511;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.creator-case-window h2 {
  margin-top: clamp(26px, 3vw, 36px);
}

.creator-case-window p {
  margin: 0;
  padding: clamp(24px, 4vw, 44px) clamp(24px, 5vw, 58px) clamp(34px, 5vw, 58px);
  color: rgba(15, 21, 17, 0.84);
  font-size: clamp(16px, 1.34vw, 20px);
  font-weight: 650;
  line-height: 1.82;
}

.creator-case-results {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  text-align: center;
}

.creator-case-results h2,
.creator-case-spotlight h2 {
  justify-self: center;
  padding: 9px 26px 10px;
  border-radius: 999px;
  color: #fff;
  background: #030303;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--case-accent) 22%, transparent);
}

.creator-case-results h2::before,
.creator-case-results h2::after,
.creator-case-spotlight h2::before,
.creator-case-spotlight h2::after {
  color: var(--case-accent);
  content: "◆";
  font-size: 0.62em;
  vertical-align: 0.08em;
}

.creator-case-results h2::before,
.creator-case-spotlight h2::before {
  margin-right: 10px;
}

.creator-case-results h2::after,
.creator-case-spotlight h2::after {
  margin-left: 10px;
}

.creator-case-stats {
  display: grid;
  grid-template-columns: repeat(var(--case-stat-count, 4), minmax(112px, 1fr));
  gap: clamp(10px, 1.8vw, 22px);
  overflow-x: visible;
  padding-bottom: 4px;
}

.creator-case-stat {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  justify-items: center;
  min-width: 0;
}

.creator-case-stat span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(190px, 100%);
  min-height: 30px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(15, 21, 17, 0.7);
  background: #bfe3ad;
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
}

.creator-case-stat strong {
  color: var(--case-accent);
  font-size: clamp(34px, 4.9vw, 66px);
  line-height: 1;
}

.creator-case-gallery {
  display: grid;
  grid-template-columns: repeat(var(--case-gallery-count, 4), minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 28px);
  align-items: start;
  padding: 4px clamp(8px, 1.4vw, 18px) 12px;
}

.creator-case-gallery img {
  width: 100%;
  height: auto;
  align-self: start;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  box-shadow:
    0 18px 34px rgba(18, 31, 22, 0.12),
    0 0 0 1px rgba(40, 112, 64, 0.06);
}

.creator-case-stage {
  display: grid;
  gap: clamp(24px, 3.4vw, 42px);
}

.creator-case-stage-note {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(16px, 2.8vw, 30px) 16px;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--case-accent) 22%, transparent) 0%, rgba(255, 255, 255, 0.76) 58%, transparent 78%);
}

.creator-case-stage-note h2 {
  margin: 0;
  padding: 8px 24px 9px;
  border-radius: 999px;
  color: #fff;
  background: #030303;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.creator-case-stage-note h2::before,
.creator-case-stage-note h2::after {
  color: var(--case-accent);
  content: "◆";
  font-size: 0.62em;
  vertical-align: 0.08em;
}

.creator-case-stage-note h2::before {
  margin-right: 10px;
}

.creator-case-stage-note h2::after {
  margin-left: 10px;
}

.creator-case-stage-note p {
  margin: 0;
  color: #0f1511;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.creator-case-stage-note.is-plain h2 {
  display: none;
}

.creator-case-stage-note.is-plain p {
  font-size: clamp(20px, 2.2vw, 30px);
}

.creator-case-spotlight {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(26px, 4vw, 44px) clamp(18px, 3vw, 36px);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--case-accent) 18%, transparent) 0%, rgba(204, 247, 225, 0.36) 34%, transparent 70%);
}

.creator-case-spotlight p {
  margin: 0;
  color: rgba(15, 21, 17, 0.78);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 800;
  text-align: center;
}

.creator-case-spotlight ul {
  display: grid;
  gap: 10px;
  width: min(720px, 100%);
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.creator-case-spotlight li {
  color: rgba(15, 21, 17, 0.72);
  font-size: clamp(15px, 1.16vw, 17px);
  font-weight: 650;
  line-height: 1.72;
  text-align: center;
}

.creator-case-examples {
  display: grid;
  gap: clamp(18px, 2.8vw, 30px);
}

.creator-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(172px, 260px);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  min-height: clamp(280px, 28vw, 390px);
  padding: clamp(22px, 3vw, 36px) clamp(22px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 249, 0.96)),
    radial-gradient(circle at 88% 22%, color-mix(in srgb, var(--case-accent) 13%, transparent), transparent 36%);
  box-shadow:
    0 22px 50px rgba(16, 20, 17, 0.1),
    0 8px 20px rgba(40, 112, 64, 0.08);
}

.creator-case-card-copy {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.creator-case-chip {
  justify-self: start;
  min-width: 94px;
  padding: 9px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #287040, color-mix(in srgb, var(--case-accent) 62%, #72c8a1));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--case-accent) 22%, transparent);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 900;
  text-align: center;
}

.creator-case-card-copy p {
  margin: 0;
  color: rgba(15, 21, 17, 0.78);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.72;
}

.creator-case-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(22px, 3vw, 46px);
}

.creator-case-mini-stats div {
  display: grid;
  gap: 4px;
}

.creator-case-mini-stats span {
  color: rgba(15, 21, 17, 0.7);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 800;
}

.creator-case-mini-stats strong {
  color: var(--case-accent);
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1;
}

.creator-case-card figure {
  display: grid;
  gap: clamp(12px, 1.4vw, 16px);
  justify-items: center;
  align-items: start;
  margin: 0;
  min-width: 0;
}

.creator-case-card figcaption {
  color: rgba(15, 21, 17, 0.82);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.creator-case-card figure img {
  display: block;
  width: auto;
  max-width: min(100%, 240px);
  max-height: clamp(190px, 21vw, 300px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow:
    0 18px 34px rgba(16, 20, 17, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.8);
}

@media (max-width: 760px) {
  .case-visual img {
    object-position: center;
  }

  body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-feature-media img {
    aspect-ratio: 16 / 8;
  }

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

  .creator-case-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .creator-case-card figure {
    order: -1;
  }

  .creator-case-card figure img {
    max-width: min(100%, 220px);
    max-height: 270px;
  }
}

body[data-page="blog"] .blog-article-cover {
  display: none;
}

body[data-page="blog"] .blog-article-cover-visual {
  position: relative;
  min-height: clamp(260px, 38vw, 410px);
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 232, 176, 0.34), transparent 25%),
    radial-gradient(circle at 20% 76%, rgba(40, 112, 64, 0.17), transparent 24%),
    linear-gradient(145deg, rgba(240, 249, 242, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 24px 52px rgba(18, 31, 22, 0.1);
}

body[data-page="blog"] .blog-article-cover-visual::before,
body[data-page="blog"] .blog-article-cover-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

body[data-page="blog"] .blog-article-cover-visual::before {
  inset: 42px 58px auto auto;
  width: 188px;
  height: 188px;
  border: 2px solid rgba(40, 112, 64, 0.12);
}

body[data-page="blog"] .blog-article-cover-visual::after {
  left: 76px;
  bottom: 54px;
  width: 148px;
  height: 148px;
  background: linear-gradient(135deg, rgba(40, 112, 64, 0.78), rgba(102, 164, 111, 0.7));
  box-shadow: 0 22px 48px rgba(40, 112, 64, 0.16);
}

body[data-page="blog"] .blog-article-cover-orb,
body[data-page="blog"] .blog-article-cover-ring,
body[data-page="blog"] .blog-article-cover-card,
body[data-page="blog"] .blog-article-cover-icon {
  position: absolute;
  z-index: 1;
}

body[data-page="blog"] .blog-article-cover-orb {
  top: 50px;
  left: 58px;
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 32%, #eff0b9 0 12px, transparent 13px),
    linear-gradient(145deg, rgba(40, 112, 64, 0.78), rgba(108, 168, 114, 0.68));
  transform: rotate(-7deg);
}

body[data-page="blog"] .blog-article-cover-ring {
  right: 88px;
  top: 82px;
  width: 148px;
  height: 148px;
  border: 2px solid rgba(40, 112, 64, 0.14);
  border-radius: 50%;
}

body[data-page="blog"] .blog-article-cover-card {
  right: 124px;
  bottom: 62px;
  width: 116px;
  height: 116px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 34px rgba(18, 31, 22, 0.1);
  transform: rotate(3deg);
}

body[data-page="blog"] .blog-article-cover-icon {
  right: 150px;
  bottom: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #0f1511;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(232, 232, 176, 0.28));
  font-size: 30px;
  font-weight: 700;
}

body[data-page="blog"] .blog-article-cover-visual img {
  position: absolute;
  top: 46%;
  left: 50%;
  width: clamp(88px, 10vw, 124px);
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

body[data-page="blog"] .blog-article-body,
body[data-page="blog"] .blog-article-comments {
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;
}

body[data-page="blog"] .blog-article-body {
  padding-top: clamp(28px, 4vw, 42px);
}

body[data-page="blog"] .blog-article-section {
  padding: 0 0 clamp(26px, 4vw, 42px);
}

body[data-page="blog"] .blog-article-section + .blog-article-section {
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 0;
}

body[data-page="blog"] .blog-article-section h2,
body[data-page="blog"] .blog-article-comments h2 {
  margin: 0 0 14px;
  color: #0f1511;
  font-size: clamp(22px, 2.35vw, 30px);
  font-weight: 800;
  line-height: 1.26;
}

body[data-page="blog"] .blog-article-section p,
body[data-page="blog"] .blog-article-section li,
body[data-page="blog"] .blog-article-comment-box {
  color: rgba(18, 31, 22, 0.68);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.9;
}

body[data-page="blog"] .blog-article-section p {
  margin: 0 0 14px;
}

body[data-page="blog"] .blog-article-inline-media {
  width: 100%;
  margin: clamp(18px, 2.8vw, 28px) 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(247, 250, 246, 0.9);
  box-shadow: 0 16px 34px rgba(20, 45, 29, 0.08);
}

body[data-page="blog"] .blog-article-inline-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body[data-page="blog"] .blog-article-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="blog"] .blog-article-section li {
  position: relative;
  padding-left: 24px;
}

body[data-page="blog"] .blog-article-section li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

body[data-page="blog"] .blog-article-comments {
  margin-top: 8px;
  padding: clamp(22px, 3.5vw, 34px) 0 clamp(32px, 5vw, 56px);
  border-top: 0;
}

body[data-page="blog"] .blog-article-comment-input-wrap {
  position: relative;
}

body[data-page="blog"] .blog-article-comment-box {
  display: block;
  width: 100%;
  min-height: 112px;
  padding: 14px 16px 58px;
  border: 1px solid rgba(40, 112, 64, 0.1);
  border-radius: 12px;
  background: rgba(247, 250, 246, 0.84);
  font-family: inherit;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  resize: vertical;
}

body[data-page="blog"] .blog-article-comment-box:focus {
  border-color: rgba(40, 112, 64, 0.36);
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 112, 64, 0.08);
}

body[data-page="blog"] .blog-article-comment-form {
  display: grid;
  gap: 14px;
}

body[data-page="blog"] .blog-article-comment-form.replying .blog-article-comment-box {
  border-color: rgba(40, 112, 64, 0.32);
  box-shadow: 0 0 0 4px rgba(40, 112, 64, 0.06);
}

body[data-page="blog"] .blog-article-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="blog"] .blog-article-attachment {
  position: relative;
  width: 92px;
  height: 70px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 10px;
  background: rgba(247, 250, 246, 0.9);
  cursor: pointer;
}

body[data-page="blog"] .blog-article-attachment img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="blog"] .blog-article-attachment span {
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 21, 17, 0.72);
  font-size: 14px;
  line-height: 1;
}

body[data-page="blog"] .blog-article-comment-submit {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-width: 94px;
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  font-size: 12px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="blog"] .blog-article-comment-submit.sent {
  animation: blogArticleSendSuccess 760ms ease;
}

@keyframes blogArticleSendSuccess {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(0.96);
    box-shadow: 0 0 0 5px rgba(40, 112, 64, 0.1);
  }

  100% {
    transform: scale(1);
  }
}

body[data-page="blog"] .blog-article-comment-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

body[data-page="blog"] .blog-article-comment-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 30px;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(40, 112, 64, 0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 242, 0.86));
}

body[data-page="blog"] .blog-article-comment-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.1);
  font-size: 11px;
  font-weight: 600;
}

body[data-page="blog"] .blog-article-comment-item p {
  margin: 0;
  color: rgba(18, 31, 22, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

body[data-page="blog"] .blog-article-comment-content {
  min-width: 0;
}

body[data-page="blog"] .blog-article-comment-reply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(40, 112, 64, 0.72);
  background: rgba(40, 112, 64, 0.08);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

body[data-page="blog"] .blog-article-comment-reply:hover,
body[data-page="blog"] .blog-article-comment-reply:focus-visible {
  color: var(--primary);
  background: rgba(40, 112, 64, 0.13);
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-article-comment-reply svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="blog"] .blog-article-comment-replies {
  display: grid;
  grid-column: 2 / -1;
  gap: 8px;
  margin-top: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(40, 112, 64, 0.12);
}

body[data-page="blog"] .blog-article-comment-reply-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 26px;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(40, 112, 64, 0.035);
}

body[data-page="blog"] .blog-article-comment-reply-item .blog-article-comment-reply {
  width: 24px;
  height: 24px;
}

body[data-page="blog"] .blog-article-comment-reply-item .blog-article-comment-reply svg {
  width: 13px;
  height: 13px;
}

body[data-page="blog"] .blog-article-comment-reply-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.09);
  font-size: 10px;
  font-weight: 600;
}

body[data-page="blog"] .blog-article-comment-reply-item p {
  font-size: 12px;
}

body[data-page="blog"] .blog-article-comment-replies.collapsed,
body[data-page="blog"] .blog-article-comment-content[data-comment-expand-thread] {
  cursor: pointer;
}

body[data-page="blog"] .blog-article-comment-expand {
  justify-self: start;
  width: auto;
  min-width: 34px;
  height: 24px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(40, 112, 64, 0.08);
  font: 700 10px/1 inherit;
  cursor: pointer;
}

body[data-page="blog"] .blog-article-inline-reply-form {
  display: flex;
  grid-column: 2 / -1;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

body[data-page="blog"] .blog-article-inline-reply-input {
  flex: 1;
  min-width: 0;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(18, 31, 22, 0.74);
  font: 500 12px/1.2 inherit;
  outline: none;
}

body[data-page="blog"] .blog-article-inline-reply-input:focus {
  border-color: rgba(40, 112, 64, 0.38);
  box-shadow: 0 0 0 3px rgba(40, 112, 64, 0.08);
}

body[data-page="blog"] .blog-article-inline-reply-send {
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(40, 112, 64, 0.88);
  font: 700 11px/1 inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

body[data-page="blog"] .blog-article-inline-reply-send:hover,
body[data-page="blog"] .blog-article-inline-reply-send:focus-visible {
  background: var(--primary);
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-article-comment-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

body[data-page="blog"] .blog-article-comment-images img {
  max-width: min(220px, 100%);
  max-height: 180px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(18, 31, 22, 0.12);
}

body[data-page="blog"] .blog-article-comment-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

body[data-page="blog"] .blog-article-comment-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(40, 112, 64, 0.14);
  border-radius: 10px;
  color: var(--primary);
  background: rgba(247, 250, 246, 0.88);
  font: 700 13px/1 inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

body[data-page="blog"] .blog-article-comment-page:hover,
body[data-page="blog"] .blog-article-comment-page:focus-visible,
body[data-page="blog"] .blog-article-comment-page.active {
  color: #fff;
  background: var(--primary);
  transform: translateY(-1px);
}

body[data-page="blog"] .blog-article-comment-page:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

@keyframes blogCardPageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 1100px) {
  body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-card > h1 {
    width: min(480px, calc(100% - 56px));
  }

  body[data-page="blog"] .case-article-floating-logo {
    right: clamp(44px, 5vw, 64px);
    width: clamp(112px, 13vw, 148px);
    opacity: 0.14;
  }
}

@media (max-width: 920px) {
  body[data-page="blog"] .blog-library {
    padding-top: 102px;
  }

  body[data-page="blog"] .blog-card {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 18px;
    min-height: 148px;
  }

  body[data-page="blog"] .blog-card-body {
    min-height: 132px;
    padding: 18px 0;
  }

  body[data-page="blog"] .blog-card-media {
    height: 132px;
  }

  body[data-page="blog"] .blog-card p {
    display: none;
  }

  body[data-page="blog"] .blog-card-footer {
    margin-top: 16px;
  }

  body[data-page="blog"] .blog-article-page {
    padding: 100px 16px 64px;
  }

  body[data-page="blog"] .blog-article-card > h1,
  body[data-page="blog"] .blog-article-meta,
  body[data-page="blog"] .blog-article-feature-media,
  body[data-page="blog"] .blog-article-cover,
  body[data-page="blog"] .blog-article-body,
  body[data-page="blog"] .blog-article-comments {
    width: min(100%, calc(100% - 32px));
  }

  body[data-page="blog"] .blog-article-card > h1 {
    margin-top: 28px;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.45;
  }

  body[data-page="blog"] .blog-article-page[data-case-detail] .blog-article-card > h1 {
    width: min(100%, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="blog"] .case-article-floating-logo {
    display: none;
  }

  body[data-page="blog"] .blog-article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="blog"] .blog-article-stats {
    gap: 14px;
    flex-wrap: wrap;
  }

  body[data-page="blog"] .blog-article-cover-visual {
    min-height: 260px;
  }

  body[data-page="blog"] .blog-article-cover-visual::before {
    right: 26px;
    width: 124px;
    height: 124px;
  }

  body[data-page="blog"] .blog-article-cover-visual::after {
    left: 34px;
    bottom: 34px;
    width: 104px;
    height: 104px;
  }

  body[data-page="blog"] .blog-article-cover-orb {
    top: 34px;
    left: 34px;
    width: 78px;
    height: 78px;
  }

  body[data-page="blog"] .blog-article-cover-ring {
    right: 42px;
    top: 58px;
    width: 112px;
    height: 112px;
  }

  body[data-page="blog"] .blog-article-cover-card {
    right: 54px;
    bottom: 42px;
    width: 88px;
    height: 88px;
  }

  body[data-page="blog"] .blog-article-cover-icon {
    right: 72px;
    bottom: 60px;
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

}

@media (max-width: 560px) {
  body[data-page="blog"] .blog-library {
    padding-right: 18px;
    padding-left: 18px;
  }

  body[data-page="blog"] .blog-panel {
    padding: 18px 18px 26px;
    border-radius: 12px;
  }

  body[data-page="blog"] .blog-search-input {
    height: 48px;
    padding-right: 62px;
    font-size: 15px;
  }

  body[data-page="blog"] .blog-search-button {
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  body[data-page="blog"] .blog-card {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 14px;
  }

  body[data-page="blog"] .blog-card-media {
    height: 104px;
  }

  body[data-page="blog"] .blog-card-icon {
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  body[data-page="blog"] .blog-card-orb {
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  body[data-page="blog"] .blog-card h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  body[data-page="blog"] .blog-card-meta {
    gap: 8px;
    margin-bottom: 8px;
  }

  body[data-page="blog"] .blog-card-meta span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 11px;
  }

  body[data-page="blog"] .blog-card-meta time {
    font-size: 12px;
  }

  body[data-page="blog"] .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body[data-page="blog"] .blog-card-stats {
    gap: 10px;
    font-size: 12px;
  }

  body[data-page="blog"] .blog-article-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  body[data-page="blog"] .blog-article-card {
    border-radius: 12px;
  }

  body[data-page="blog"] .blog-article-card > h1 {
    width: min(100%, calc(100% - 28px));
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.42;
  }

  body[data-page="blog"] .blog-article-meta,
  body[data-page="blog"] .blog-article-feature-media,
  body[data-page="blog"] .blog-article-cover,
  body[data-page="blog"] .blog-article-body,
  body[data-page="blog"] .blog-article-comments {
    width: min(100%, calc(100% - 28px));
  }

  body[data-page="blog"] .blog-article-stat,
  body[data-page="blog"] .blog-article-share {
    font-size: 13px;
  }
}
