:root {
  --ink: #0f182a;
  --muted: #64748b;
  --soft: #f1f3f5;
  --line: #e3e9f1;
  --red: #f52222;
  --deep: #080610;
  --blue: #2457f2;
  --radius: 8px;
  --shadow: 0 12px 56px rgba(0, 0, 0, 0.08), 0 0 3px rgba(0, 0, 0, 0.05);
  --number-font: "IBM Plex Mono", "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

section,
footer {
  scroll-margin-top: 88px;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(960px, calc(100% - 48px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  color: #fff;
  background: rgba(12, 18, 33, 0.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  animation: headerDropIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headerDropIn {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

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

.site-header.is-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 2vw, 40px);
  gap: clamp(42px, 3.2vw, 66px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 108px;
  width: 108px;
  height: 44px;
}

.site-logo img {
  display: block;
  width: 107px;
  height: auto;
}

.site-nav {
  position: static;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.site-header.is-light .site-nav a {
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-light .site-nav a.active,
.site-header.is-light .site-nav a:hover {
  color: var(--ink);
  background: #f1f3f5;
}

.site-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 12px;
}

.site-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.login-link {
  color: #fff;
  background: rgba(241, 243, 245, 0.28);
}

.trial-link {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, rgba(48, 47, 54, 0.96), rgba(8, 6, 16, 0.96)) padding-box,
    linear-gradient(270deg, #bee2c7, #d3baeb 10%, #953aef 20%, #6e18c3 29%, #e62222 63%, #f7a589 84%, #eeeea4 93%, #6de08a) border-box;
  border: 1px solid transparent;
}

.site-header.is-light .login-link {
  color: var(--ink);
  background: #f1f3f5;
}

.site-header.is-light .trial-link {
  color: #fff;
  background: #0f182a;
  border-color: #0f182a;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 930px;
  overflow: hidden;
  color: #fff;
  background-color: #080610;
  background-image: url("./assets/hero-bg-figma.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-light,
.hero-rays {
  display: none;
}

.hero-light {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.55;
}

.hero-light-a {
  left: 6%;
  top: -60px;
  width: 760px;
  height: 420px;
  background: linear-gradient(38deg, transparent 42%, rgba(79, 215, 170, 0.24) 45%, rgba(112, 60, 245, 0.18) 49%, transparent 54%);
  transform: rotate(5deg);
}

.hero-light-b {
  right: 8%;
  top: 80px;
  width: 620px;
  height: 520px;
  background: linear-gradient(48deg, transparent 50%, rgba(68, 116, 255, 0.22) 52%, transparent 58%);
  transform: rotate(-10deg);
}

.hero-rays {
  position: absolute;
  right: -6%;
  top: 185px;
  width: 720px;
  height: 420px;
  opacity: 0.36;
  background:
    linear-gradient(37deg, transparent 52%, rgba(255, 255, 255, 0.15) 53%, transparent 55%),
    linear-gradient(43deg, transparent 58%, rgba(255, 255, 255, 0.13) 59%, transparent 61%),
    linear-gradient(50deg, transparent 64%, rgba(255, 255, 255, 0.1) 65%, transparent 67%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 122px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.4;
}

.hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 64px;
  font-weight: 100;
  line-height: 1.2;
}

.hero-value i {
  font-style: normal;
  font-weight: 100;
}

.hero-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
}

.hero-ribbons-art {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 283px;
  width: max(100%, 1920px);
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-edge-flow {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 283px;
  display: block;
  width: max(100%, 1920px);
  height: auto;
  overflow: visible;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-edge-comet-line,
.hero-edge-comet-soft {
  mix-blend-mode: screen;
}

.hero-edge-comet-line {
  opacity: 0.96;
}

.hero-edge-comet-soft {
  filter: url(#heroEdgeFlowBlur);
}

.hero-cta {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 666px;
  top: max(666px, calc(283px + 19.95vw));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 212px;
  height: 48px;
  padding: 0 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #ff5a38 0%, #f52222 100%);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 44px rgba(245, 34, 34, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-cta::before {
  content: "↗";
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.hero-kicker,
.hero h1,
.hero-value span,
.hero-value i,
.hero-desc,
.hero-cta,
[data-motion-heading],
.ai-card,
.system-tabs,
.system-panel,
.trust-grid article,
.tabs,
.case-card,
.final-cta a {
  will-change: transform, opacity, filter;
}

.ai-card img,
.trust-grid img,
.case-cover img {
  will-change: transform;
}

body.motion-ready [data-motion-section] [data-motion-heading],
body.motion-ready [data-motion-section] [data-motion-image],
body.motion-ready [data-motion-section] .system-tabs,
body.motion-ready [data-motion-section] .tabs,
body.motion-ready [data-motion-section] .system-panel,
body.motion-ready [data-motion-section] .trust-grid article,
body.motion-ready [data-motion-section] .case-card,
body.motion-ready [data-motion-section] .cases-more,
body.motion-ready [data-motion-section] .final-cta a {
  opacity: 0;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready [data-motion-section] [data-motion-heading] {
  transform: translateY(42px);
  transform-origin: 50% 0;
  filter: blur(5px);
}

body.motion-ready [data-motion-section] [data-motion-heading] strong {
  display: inline-block;
  transform: translateY(18px);
  opacity: 0.35;
  transition:
    opacity 880ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--motion-delay, 0ms) + 180ms);
}

body.motion-ready [data-motion-section] [data-motion-image],
body.motion-ready [data-motion-section] .system-panel {
  transform: translateY(38px) scale(1.015);
  filter: blur(4px);
}

body.motion-ready [data-motion-section] .system-tabs,
body.motion-ready [data-motion-section] .tabs {
  transform: translateY(16px);
  filter: blur(2px);
}

body.motion-ready [data-motion-section] .trust-grid article,
body.motion-ready [data-motion-section] .case-card,
body.motion-ready [data-motion-section] .cases-more,
body.motion-ready [data-motion-section] .final-cta a {
  transform: translateY(32px) scale(0.985);
  filter: blur(3px);
}

body.motion-ready [data-motion-section] .ai-card {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 840ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1080ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1080ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready [data-motion-section] .chip {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready [data-motion-section].is-visible [data-motion-heading],
body.motion-ready [data-motion-section].is-visible [data-motion-image],
body.motion-ready [data-motion-section].is-visible .system-tabs,
body.motion-ready [data-motion-section].is-visible .tabs,
body.motion-ready [data-motion-section].is-visible .system-panel,
body.motion-ready [data-motion-section].is-visible .trust-grid article,
body.motion-ready [data-motion-section].is-visible .case-card,
body.motion-ready [data-motion-section].is-visible .cases-more,
body.motion-ready [data-motion-section].is-visible .final-cta a,
body.motion-ready [data-motion-section].is-visible .ai-card,
body.motion-ready [data-motion-section].is-visible .chip {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.motion-ready [data-motion-section].is-visible [data-motion-heading] strong {
  opacity: 1;
  transform: translateY(0);
}

.section-gray {
  background: var(--soft);
}

.growth {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  overflow: visible;
}

.growth-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbit-wrap {
  position: relative;
  width: min(1060px, 100%);
  margin-top: -379px;
  aspect-ratio: 1;
  pointer-events: none;
  overflow: visible;
}

.orbit-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: visible;
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px 0 50px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.chip::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9f9eb;
}

.chip::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 6px;
  height: 11px;
  border-right: 2px solid #34c759;
  border-bottom: 2px solid #34c759;
  transform: translateY(-64%) rotate(45deg);
}

.chip-a {
  left: 0;
  top: 75%;
}

.chip-b {
  left: 43%;
  top: 80%;
}

.chip-c {
  right: 0;
  top: 75%;
}

.chip-d {
  left: 15%;
  top: 89%;
}

.chip-e {
  right: 15%;
  top: 89%;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

h2 strong {
  font-weight: 600;
}

.growth h2 {
  margin-top: 100px;
  margin-bottom: 34px;
}

.ai-card-viewport {
  align-self: center;
  width: 100vw;
  max-width: none;
  margin-left: 0;
  overflow: hidden;
  padding-bottom: 6px;
}

.ai-card-grid {
  --card-width: 304px;
  --card-gap: 24px;
  --loop-distance: calc((var(--card-width) + var(--card-gap)) * 6);
  position: relative;
  display: flex;
  gap: var(--card-gap);
  width: max-content;
  padding: 0;
  animation: cardMarquee var(--marquee-duration, 34s) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.ai-card-viewport:hover .ai-card-grid,
.ai-card-grid:hover {
  animation-play-state: paused;
}

.ai-card-grid:not([data-loop-ready="true"]) {
  animation: none;
  transform: translate3d(0, 0, 0);
}

.ai-card {
  flex: 0 0 var(--card-width);
  aspect-ratio: 304 / 366;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: none;
}

.ai-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.ai-card small {
  display: block;
  color: #2457f2;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ai-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.ai-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes cardMarquee {
  from {
    transform: translate3d(calc(-1 * var(--loop-distance)), 0, 0);
  }

  to {
    transform: translate3d(calc(-2 * var(--loop-distance)), 0, 0);
  }
}

.card-yellow {
  background: #feefd6;
}

.card-cyan {
  background: #dbf5fe;
}

.card-violet {
  background: #eef0fe;
}

.card-green {
  background: #e9f9eb;
}

.card-pink {
  background: #ffe2ea;
}

.card-lavender {
  background: #f3eefe;
}

.mini-chat {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 112px;
}

.mini-chat span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  margin-bottom: 14px;
}

.mini-chat span:first-child {
  width: 86%;
}

.mini-chat span:nth-child(2) {
  width: 64%;
}

.mini-chat i {
  position: absolute;
  right: 4px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2457f2, #ff4242);
}

.mini-panel,
.mini-form {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 152px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(36, 87, 242, 0.12);
}

.mini-panel b {
  display: block;
  width: 82px;
  height: 32px;
  border-radius: 5px;
  margin-bottom: 18px;
}

.mini-panel span,
.mini-form span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e3e9f1;
  margin-top: 12px;
}

.mini-panel span:last-child {
  width: 62%;
}

.blue-panel b {
  background: #2457f2;
}

.violet-panel b {
  background: #9a54f5;
}

.poster-stack {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 170px;
  height: 132px;
}

.poster-stack i {
  position: absolute;
  width: 112px;
  height: 108px;
  border-radius: 6px;
  background: linear-gradient(150deg, #fff, #fba59e 38%, #f52222);
  box-shadow: 0 8px 20px rgba(242, 88, 36, 0.18);
}

.poster-stack i:first-child {
  left: 0;
  top: 22px;
}

.poster-stack i:last-child {
  right: 0;
  top: 0;
}

.icon-board {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 140px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 24%, #f52222 0 5px, transparent 6px),
    radial-gradient(circle at 35% 30%, #f28b24 0 5px, transparent 6px),
    radial-gradient(circle at 55% 22%, #34c759 0 5px, transparent 6px),
    radial-gradient(circle at 75% 28%, #2cc4e2 0 5px, transparent 6px),
    radial-gradient(circle at 20% 64%, #9a54f5 0 5px, transparent 6px),
    radial-gradient(circle at 48% 66%, #feb02c 0 5px, transparent 6px),
    radial-gradient(circle at 78% 62%, #2457f2 0 5px, transparent 6px),
    #fff;
}

.mini-form span:first-child {
  width: 92%;
}

.mini-form span:last-child {
  width: 70%;
}

.system {
  padding: 86px 0 80px;
  background: #fff;
}

.system .narrow {
  width: min(1200px, calc(100% - 48px));
}

.system h2 {
  margin-bottom: 32px;
}

.system-tabs {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 38px;
  padding: 4px;
  gap: 12px;
  border-radius: 24px;
  background: #0c081c;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.system-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 128px;
  min-width: 128px;
  min-height: 112px;
  padding: 16px 20px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.system-tabs button.active {
  color: var(--ink);
  background: #fff;
  font-weight: 600;
}

.system-tabs button span {
  white-space: nowrap;
}

.system-tabs button:hover {
  transform: translateY(-1px);
}

.system-tabs img {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.system-tabs i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  clip-path: polygon(20% 0, 100% 50%, 20% 100%);
  background: rgba(255, 255, 255, 0.3);
}

.system-panel {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  min-height: 482px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.system-panel-image {
  display: block;
  width: 100%;
  height: auto;
}

.system-copy {
  display: flex;
  min-height: 482px;
  flex-direction: column;
  padding: 32px;
}

.system-tab-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 21px;
}

.system-copy h3 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42;
}

.system-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.system-copy li + li {
  margin-top: 16px;
}

.system-copy li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #34c759;
  vertical-align: 1px;
}

.panel-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.panel-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.panel-actions a:first-child {
  color: #fff;
  background: #0f182a;
}

.panel-actions a:last-child {
  color: var(--ink);
  background: #f2f5fa;
}

.dashboard {
  position: relative;
  min-height: 0;
  background: #f3eefe;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.visual-hybrid {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 482px;
  overflow: hidden;
  background: #f3eefe;
  isolation: isolate;
}

.visual-base {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity, clip-path;
}

.visual-stage {
  --visual-accent: #f52222;
  --visual-accent-deep: #bd1717;
  --visual-accent-soft: rgba(245, 34, 34, 0.12);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 482px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), var(--visual-accent-soft));
}

.visual-builder {
  --visual-accent: #f52222;
  --visual-accent-soft: rgba(245, 34, 34, 0.11);
}

.visual-purple {
  --visual-accent: #8b5cf6;
  --visual-accent-deep: #5b21b6;
  --visual-accent-soft: rgba(139, 92, 246, 0.14);
}

.visual-orange {
  --visual-accent: #ff8a1f;
  --visual-accent-deep: #c2410c;
  --visual-accent-soft: rgba(255, 138, 31, 0.13);
}

.visual-cyan {
  --visual-accent: #2cc4e2;
  --visual-accent-deep: #0e7490;
  --visual-accent-soft: rgba(44, 196, 226, 0.14);
}

.visual-blue {
  --visual-accent: #2457f2;
  --visual-accent-deep: #1d4ed8;
  --visual-accent-soft: rgba(36, 87, 242, 0.12);
}

.visual-grid {
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.38) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(255, 255, 255, 0.28) 57px 58px);
  opacity: 0.72;
}

.visual-window,
.visual-metric,
.visual-dark-card,
.visual-phone,
.visual-float,
.visual-palette {
  position: absolute;
  will-change: transform, opacity, clip-path;
}

.visual-window {
  left: 78px;
  top: 142px;
  width: 440px;
  height: 244px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 64px rgba(15, 24, 42, 0.1);
}

.visual-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.88);
}

.visual-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.visual-window-bar i:nth-child(1) {
  background: #fe6057;
}

.visual-window-bar i:nth-child(2) {
  background: #febb2c;
}

.visual-window-bar i:nth-child(3) {
  background: #25c944;
}

.visual-window-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 18px;
  margin-left: auto;
  border-radius: 999px;
  color: #64748b;
  background: #eef2f7;
  font-size: 10px;
  font-weight: 600;
}

.visual-window-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  height: calc(100% - 32px);
}

.visual-window aside {
  padding: 17px 14px;
  background: #0b1224;
}

.visual-window aside b {
  display: block;
  height: 9px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: #33415f;
}

.visual-window main {
  padding: 15px;
}

.visual-summary,
.visual-cards,
.visual-table {
  display: flex;
  gap: 9px;
}

.visual-summary span {
  height: 18px;
  flex: 1;
  border-radius: 7px;
  background: #eef2f7;
}

.visual-cards {
  margin-top: 13px;
}

.visual-cards i {
  height: 42px;
  flex: 1;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, var(--visual-accent-soft));
}

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 64px;
  margin-top: 16px;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f8fafc;
}

.visual-chart b {
  display: block;
  flex: 1;
  min-height: 10px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--visual-accent), rgba(36, 87, 242, 0.4));
}

.visual-table {
  margin-top: 14px;
}

.visual-table span {
  height: 16px;
  flex: 1;
  border-radius: 6px;
  background: #edf2f7;
}

.visual-metric {
  right: 48px;
  top: 86px;
  width: 184px;
  min-height: 116px;
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, var(--visual-accent), var(--visual-accent-deep));
  box-shadow: 0 18px 46px rgba(245, 34, 34, 0.22);
}

.visual-metric small,
.visual-metric span {
  display: block;
  opacity: 0.78;
  font-size: 11px;
  line-height: 1.4;
}

.visual-metric strong {
  display: block;
  margin: 8px 0;
  font-family: var(--number-font);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  font-variant-numeric: lining-nums tabular-nums;
}

.visual-dark-card {
  left: 58px;
  bottom: 56px;
  width: 176px;
  padding: 12px;
  border-radius: 10px;
  color: #dbeafe;
  background: linear-gradient(180deg, #1c2644, #050c22);
  box-shadow: 0 18px 46px rgba(15, 24, 42, 0.24);
}

.visual-dark-card span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 6px;
  background: rgba(36, 87, 242, 0.18);
  font-size: 10px;
}

.visual-dark-card span + span {
  margin-top: 6px;
}

.visual-dark-card em {
  color: #34c759;
  font-family: var(--number-font);
  font-style: normal;
}

.visual-phone {
  left: 324px;
  top: 178px;
  width: 118px;
  height: 214px;
  padding: 10px 8px 12px;
  border: 5px solid #101828;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 24, 42, 0.22);
}

.visual-phone-top {
  display: flex;
  justify-content: space-between;
  color: #0f182a;
  font-family: var(--number-font);
  font-size: 8px;
  font-weight: 700;
}

.visual-phone-top i {
  width: 22px;
  height: 5px;
  margin-top: 3px;
  border-radius: 999px;
  background: #0f182a;
}

.visual-phone-screen {
  height: calc(100% - 16px);
  margin-top: 8px;
  padding: 10px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 42%, #ffdb77 0 15%, transparent 16%),
    radial-gradient(circle at 78% 20%, #9a54f5 0 14%, transparent 15%),
    linear-gradient(145deg, #ff335c, #ff9b44);
}

.visual-phone-screen strong,
.visual-phone-screen p {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
}

.visual-phone-screen strong {
  font-size: 13px;
  line-height: 1.2;
}

.visual-phone-screen p {
  margin-top: 4px;
  font-size: 9px;
  opacity: 0.9;
}

.visual-phone-cover {
  height: 58px;
  margin-top: 14px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 72%, #ffe36c 0 12%, transparent 13%),
    radial-gradient(circle at 62% 35%, #6437ff 0 16%, transparent 17%),
    rgba(255, 255, 255, 0.22);
}

.visual-phone button {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #f52222;
  font-size: 9px;
  font-weight: 700;
}

.visual-float {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px 0 38px;
  border-radius: 12px;
  color: #0f182a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(15, 24, 42, 0.12);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.visual-float::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--visual-accent);
}

.visual-float-a {
  left: 54px;
  top: 122px;
}

.visual-float-b {
  right: 52px;
  bottom: 116px;
}

.visual-palette {
  left: 174px;
  top: 44px;
  display: grid;
  grid-template-columns: repeat(6, 36px);
  gap: 10px;
}

.visual-palette i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    var(--visual-accent-soft);
}

.visual-palette i:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28)),
    var(--visual-accent);
}

.dash-window {
  position: absolute;
  left: 48px;
  top: 58px;
  width: 470px;
  height: 220px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 24, 42, 0.14);
  overflow: hidden;
}

.dash-top {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 28px;
  padding-left: 14px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
}

.dash-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-top span:nth-child(1) {
  background: #fe6057;
}

.dash-top span:nth-child(2) {
  background: #febb2c;
}

.dash-top span:nth-child(3) {
  background: #25c944;
}

.dash-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  height: calc(100% - 28px);
}

.dash-body aside {
  padding: 16px 14px;
  background: #0a0f1e;
}

.dash-body aside i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #363b58;
  margin-bottom: 18px;
}

.dash-main {
  padding: 16px;
}

.dash-tabs,
.dash-cards {
  display: flex;
  gap: 10px;
}

.dash-tabs b {
  width: 54px;
  height: 22px;
  border-radius: 7px;
  background: #eef0fe;
}

.dash-cards {
  margin-top: 16px;
}

.dash-cards i {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff5f5, #fff);
  border: 1px solid #f2f5fa;
}

.dash-chart {
  height: 54px;
  margin-top: 18px;
  border-radius: 8px;
  background:
    linear-gradient(165deg, transparent 47%, rgba(245, 34, 34, 0.55) 48%, rgba(245, 34, 34, 0.55) 51%, transparent 52%),
    repeating-linear-gradient(to right, transparent 0 72px, #edf2f7 73px 74px),
    #fff;
  border: 1px solid #f2f5fa;
}

.dash-list {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.dash-list span {
  flex: 1;
  height: 20px;
  border-radius: 6px;
  background: #f2f5fa;
}

.red-metric,
.dark-metric,
.float-note {
  position: absolute;
  box-shadow: var(--shadow);
}

.red-metric {
  right: 38px;
  top: 50px;
  width: 148px;
  height: 104px;
  padding: 18px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #f52222, #bd1717);
}

.red-metric small,
.red-metric span {
  display: block;
  opacity: 0.78;
}

.red-metric strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
  font-family: var(--number-font);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

.dark-metric {
  left: 120px;
  bottom: 44px;
  width: 124px;
  height: 72px;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, #1c2644, #050c22);
}

.dark-metric strong {
  display: block;
  font-size: 22px;
  font-family: var(--number-font);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

.dark-metric span {
  color: #cbd5e1;
  font-size: 12px;
}

.float-note {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px 0 32px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.float-note::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2cc4e2;
}

.note-a {
  right: 26px;
  bottom: 78px;
}

.note-b {
  right: 152px;
  top: 146px;
}

.trust {
  padding: 82px 0;
}

.trust .narrow {
  width: min(1200px, calc(100% - 48px));
}

.trust h2 {
  margin-bottom: 38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-grid article {
  display: block;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}

.trust-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.cases {
  padding: 90px 0 84px;
  background: #fff;
}

.cases .narrow {
  width: min(1200px, calc(100% - 48px));
}

.cases h2 {
  margin-bottom: 32px;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 36px;
  margin: 0 auto 32px;
  padding: 3px;
  gap: 0;
  border-radius: 8px;
  background: #e3e9f1;
}

.tabs button {
  width: 102px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.tabs button.active {
  color: var(--ink);
  background: #fff;
  font-weight: 600;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.case-cover {
  height: 160px;
  overflow: hidden;
  background: #46212a;
}

.case-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-body {
  min-height: 302px;
  padding: 23px 16px 24px;
}

.case-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.case-logo {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f82020;
}

.case-logo::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 7px;
  width: 18px;
  height: 30px;
  background: #fff;
  clip-path: polygon(40% 0, 100% 0, 64% 42%, 100% 42%, 28% 100%, 43% 56%, 0 56%);
}

.case-card h3,
.case-card h4,
.case-card p {
  margin: 0;
}

.case-card h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.case-card h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.case-card p {
  min-height: 34px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 22px;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  color: var(--muted);
  background: var(--line);
  font-size: 12px;
  line-height: 1;
}

.case-tag.featured {
  color: #fff;
  background: linear-gradient(90deg, #e62222, #e65322);
  font-weight: 600;
}

.case-metrics {
  display: grid;
  grid-template-columns: 98px 90px 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.case-metrics strong,
.case-metrics span {
  display: block;
}

.case-metrics strong {
  color: var(--ink);
  font-family: var(--number-font);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  font-variant-numeric: lining-nums tabular-nums;
}

.case-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.case-metrics a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 88px;
  height: 36px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
  font-weight: 600;
}

.cases-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 198px;
  height: 48px;
  margin: 40px auto 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.cases-more::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 14.6L14.6 5.4M8.4 5.4H14.6V11.6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 14.6L14.6 5.4M8.4 5.4H14.6V11.6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 61px 0 39px;
  color: #0f182a;
  text-align: center;
  background: #f82020 url("./assets/final-cta-bg-centered.png") center center / cover no-repeat;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 37px;
  color: #0f182a;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: #0f182a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(15, 24, 42, 0.25);
}

.footer {
  min-height: 362px;
  color: #fff;
  background: #05030c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 72px);
  gap: 92px;
  min-height: 300px;
  padding: 22px 0 0;
}

.footer-brand img {
  width: 108px;
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.42;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 72px;
}

.footer-column strong {
  margin-bottom: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

.footer-column a + a {
  margin-top: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 17px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

.footer-legal a {
  color: inherit;
}

.inner-page {
  background: var(--soft);
}

.page-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.template-wide {
  width: min(1776px, calc(100% - 144px));
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.page-hero .page-container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0;
  font-family: "Alimama ShuHeiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.page-hero p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.market-hero {
  color: #fff;
  background: #0c081c;
}

.market-hero .page-container {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.market-hero p {
  color: rgba(255, 255, 255, 0.7);
}

.market-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.cases-hero {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
}

.cases-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases-hero p,
.template-hero p {
  color: rgba(15, 24, 42, 0.7);
}

.template-hero {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff0f0 url("./assets/templates-hero-bg-cut.png") center / cover no-repeat;
}

.template-hero::before {
  content: none;
}

.template-float {
  position: absolute;
  z-index: 1;
  display: none;
  border-radius: 30px;
  filter: drop-shadow(0 18px 24px rgba(230, 34, 34, 0.18));
}

.template-float::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff3d44, #ff8c58);
}

.float-a {
  left: 21%;
  top: 250px;
  width: 96px;
  height: 106px;
  background: rgba(255, 255, 255, 0.38);
}

.float-b {
  left: 64%;
  top: 32px;
  width: 76px;
  height: 72px;
  background: rgba(255, 255, 255, 0.44);
}

.float-c {
  right: 21%;
  top: 116px;
  width: 78px;
  height: 100px;
  background: rgba(235, 255, 221, 0.5);
}

.float-d {
  right: 28%;
  top: 252px;
  width: 98px;
  height: 116px;
  background: rgba(255, 247, 229, 0.56);
}

.catalog-toolbar,
.template-toolbar,
.template-subnav {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar,
.template-toolbar {
  min-height: 72px;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.catalog-tabs,
.template-category,
.template-subnav .template-wide {
  display: flex;
  align-items: center;
  gap: 32px;
}

.catalog-tabs a,
.template-subnav a {
  position: relative;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.catalog-tabs a.active,
.catalog-tabs a:hover,
.template-subnav a.active,
.template-subnav a:hover {
  color: var(--ink);
  font-weight: 600;
}

.catalog-tabs a.active::after,
.template-subnav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background: var(--ink);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: block;
}

.search-box input {
  width: 320px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.toolbar-button,
.select-like,
.detail-title-actions a,
.help-card a,
.info-actions a,
.next-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.toolbar-button,
.detail-title-actions .primary {
  color: #fff;
  background: var(--ink);
}

.page-section {
  padding: 24px 0 128px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.market-card {
  min-height: 207px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.market-card:hover,
.template-card:hover,
.case-list-grid .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 24, 42, 0.08);
}

.template-card:hover {
  box-shadow: none;
}

.market-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-card-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.market-card-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.market-card-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.tool-icon {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.tool-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tool-icon img[src*="ai-card"] {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}

.mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #eef0fe;
  color: #3c55d8;
  font-size: 12px;
  font-weight: 600;
}

.mini-tags span:nth-child(n + 2) {
  background: var(--soft);
  color: var(--muted);
}

.market-desc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  text-align: justify;
}

.pager {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.pager a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.pager a.active {
  color: #fff;
  background: var(--ink);
}

.case-list-section {
  padding: 24px 0 118px;
}

.case-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 36px;
  margin-bottom: 24px;
}

.case-filters a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.case-filters a.active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.case-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-list-grid .case-card {
  width: auto;
  border-radius: 24px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-list-grid .case-cover {
  display: block;
}

.template-category {
  gap: 12px;
}

.template-category a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px 0 6px;
  border-radius: 40px;
  background: #feefd6;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.template-category a.active {
  color: #fff;
  background: linear-gradient(90deg, #e62222, #e65322);
}

.template-category span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent center / contain no-repeat;
}

.template-category a:nth-child(1) span {
  background-image: url("./assets/template-cat-redpack.png");
}

.template-category a:nth-child(2) span {
  background-image: url("./assets/template-cat-poster.png");
}

.template-category a:nth-child(3) span {
  background-image: url("./assets/template-cat-group.png");
}

.template-category a:nth-child(4) span {
  background-image: url("./assets/template-cat-repeat.png");
}

.template-category a:nth-child(5) span {
  background-image: url("./assets/template-cat-member.png");
}

.template-subnav {
  height: 48px;
  background: #fff;
}

.template-subnav .template-wide {
  height: 48px;
  gap: 28px;
}

.template-subnav a {
  display: inline-flex;
  align-items: center;
  height: 48px;
  font-size: 14px;
  white-space: nowrap;
}

.template-subnav a.active::after {
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}

.template-list-section {
  padding: 30px 0 78px;
  background: #f0f2f5;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 7px;
}

.template-card {
  display: block;
  min-height: 344px;
  padding: 8px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.template-card img {
  display: block;
  width: 100%;
  aspect-ratio: 200 / 266;
  border-radius: 12px;
  object-fit: cover;
  background: #ebebeb;
}

.template-card strong {
  display: block;
  margin: 14px 0 4px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-card span {
  color: var(--muted);
  font-size: 12px;
}

.detail-titlebar {
  padding-top: 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.detail-titlebar .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 24px;
}

.detail-titlebar h1 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.detail-titlebar .mini-tags {
  margin-top: 8px;
}

.detail-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.detail-brand-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--soft);
}

.detail-brand-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.detail-title-actions {
  display: flex;
  gap: 12px;
}

.detail-main {
  padding: 24px 0 73px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 860px 316px;
  align-items: start;
  gap: 24px;
}

.detail-article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
}

.detail-article h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  text-align: left;
}

.detail-article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0 32px;
}

.detail-article h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--line);
}

.summary-grid div {
  min-height: 88px;
  padding: 18px;
  background: var(--soft);
}

.summary-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.summary-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.red-stat-card {
  position: relative;
  margin: 32px 0;
  padding: 24px 32px 26px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(227deg, #e62222 1%, #c71c1c 100%);
  box-shadow: 0 13px 7.5px -9px rgba(170, 35, 35, 0.31);
}

.red-stat-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -184px;
  width: 477px;
  height: 634px;
  opacity: 0.28;
  background: linear-gradient(180deg, #fff, transparent);
  transform: rotate(19deg);
}

.red-stat-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.red-stat-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 26px;
  font-family: var(--number-font);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

.stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 32px;
}

.stat-grid span {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

.stat-grid b {
  font-family: var(--number-font);
  font-size: 24px;
  font-style: italic;
}

.article-text p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
  text-align: justify;
}

.article-text img {
  display: block;
  width: 100%;
  margin: 22px 0 28px;
  border-radius: 16px;
}

.next-link {
  margin: 8px auto 0;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.phone-shell {
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
}

.detail-side .phone-shell {
  width: 316px;
  padding: 8px;
}

.phone-shell img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.help-card,
.template-info-panel {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
}

.help-card h3,
.template-info-panel h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
}

.help-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.help-card h3 {
  grid-column: 1 / -1;
}

.template-preview-section {
  padding: 24px 0 32px;
  background: #fff;
}

.template-preview-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  min-height: 823px;
  padding: 49px 70px 51px;
  border-radius: 24px;
  background: var(--soft);
}

.preview-phone {
  display: grid;
  justify-items: center;
  gap: 27px;
}

.preview-phone > strong {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.preview-phone .phone-shell {
  width: 316px;
  padding: 8px;
}

.template-recommend-section {
  padding: 0 0 73px;
  background: #fff;
}

.template-detail-grid {
  display: grid;
  grid-template-columns: 664px 400px;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}

.template-detail-grid h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 216px);
  gap: 8px;
}

.template-info-panel {
  min-height: 748px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f82020, #ff8a66);
}

.template-info-panel .meta {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.info-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.template-desc {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.template-desc p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

body.motion-ready [data-motion-section] .market-card,
body.motion-ready [data-motion-section] .template-card,
body.motion-ready [data-motion-section] .preview-phone,
body.motion-ready [data-motion-section] .detail-article,
body.motion-ready [data-motion-section] .detail-side,
body.motion-ready [data-motion-section] .template-info-panel {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready [data-motion-section].is-visible .market-card,
body.motion-ready [data-motion-section].is-visible .template-card,
body.motion-ready [data-motion-section].is-visible .preview-phone,
body.motion-ready [data-motion-section].is-visible .detail-article,
body.motion-ready [data-motion-section].is-visible .detail-side,
body.motion-ready [data-motion-section].is-visible .template-info-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1180px) {
  .page-container,
  .template-wide {
    width: min(100% - 48px, 960px);
  }

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

  .template-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

  .detail-side {
    position: static;
    grid-template-columns: 316px 1fr;
    align-items: start;
  }

  .template-info-panel {
    min-height: 0;
  }

  .template-preview-board {
    gap: 28px;
    padding-right: 36px;
    padding-left: 36px;
  }

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

  .ai-card-grid {
    --card-width: 304px;
  }

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

  .growth h2 {
    margin-top: 100px;
  }
}

@media (max-width: 900px) {
  .page-container,
  .template-wide {
    width: min(100% - 32px, 640px);
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .market-hero .page-container {
    padding-top: 0;
  }

  .toolbar-inner,
  .template-toolbar .toolbar-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
  }

  .catalog-tabs,
  .template-category,
  .template-subnav .template-wide {
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-tabs::-webkit-scrollbar,
  .template-category::-webkit-scrollbar,
  .template-subnav .template-wide::-webkit-scrollbar {
    display: none;
  }

  .catalog-tabs a,
  .template-subnav a,
  .template-category a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .toolbar-actions {
    flex-wrap: wrap;
  }

  .search-box,
  .search-box input {
    width: 100%;
  }

  .market-grid,
  .case-list-grid {
    grid-template-columns: 1fr;
  }

  .case-filters {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-filters::-webkit-scrollbar {
    display: none;
  }

  .case-filters a {
    flex: 0 0 auto;
  }

  .template-grid {
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  }

  .detail-titlebar .page-container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .detail-title-actions {
    flex-wrap: wrap;
  }

  .detail-article {
    padding: 20px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .detail-side .phone-shell {
    width: min(316px, 100%);
  }

  .help-card {
    width: 100%;
  }

  .template-preview-board {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 32px 20px;
  }

  .preview-phone .phone-shell {
    width: min(316px, 100%);
  }

  .template-detail-grid {
    gap: 28px;
  }

  .recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  }

  .info-actions {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    padding: 0 16px;
  }

  .site-nav {
    display: none;
  }

  .site-actions {
    gap: 8px;
  }

  .login-link {
    display: none !important;
  }

  .site-actions a {
    height: 38px;
    padding: 0 16px;
    border-radius: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-top: 118px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-value {
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.35;
  }

  .hero-desc {
    max-width: 480px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-desc br {
    display: none;
  }

  .hero-ribbons-art,
  .hero-edge-flow {
    top: 330px;
    width: max(100%, 1450px);
  }

  .hero-cta {
    top: 619px;
    min-width: 190px;
    height: 44px;
  }

  .orbit-wrap {
    margin-top: -300px;
  }

  .chip {
    display: none;
  }

  .growth h2 {
    margin-top: 72px;
  }

  .system-tabs {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 28px;
    border-radius: 20px;
  }

  .system-tabs button {
    width: 112px;
    min-width: 112px;
    min-height: 96px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .system-tabs img {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .system-panel,
  .trust-grid,
  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .system-copy {
    min-height: 360px;
  }

  .dashboard {
    min-height: 260px;
    border-radius: 0 0 20px 20px;
  }

  .visual-hybrid {
    min-height: 420px;
  }

  .visual-stage {
    min-height: 420px;
  }

  .visual-window {
    left: 34px;
    top: 128px;
    width: min(420px, calc(100% - 68px));
  }

  .visual-metric {
    right: 28px;
    top: 72px;
    width: 160px;
  }

  .visual-phone {
    left: auto;
    right: 44px;
    top: 188px;
  }

  .visual-dark-card {
    left: 34px;
    bottom: 38px;
  }

  .visual-float-a {
    left: 34px;
  }

  .visual-float-b {
    right: 34px;
    bottom: 92px;
  }

  .visual-palette {
    left: 130px;
    grid-template-columns: repeat(4, 34px);
  }

  .footer-grid {
    min-height: 0;
    gap: 28px;
    padding: 36px 0 30px;
  }

  .footer-column strong {
    margin-bottom: 14px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 24px;
  }
}

@media (max-width: 640px) {
  .page-container,
  .template-wide {
    width: min(100% - 32px, 480px);
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .market-hero {
    min-height: 0;
    padding-top: 64px;
    background: #0c081c;
  }

  .market-hero-art {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 1;
  }

  .catalog-toolbar {
    border-bottom: 0;
  }

  .catalog-toolbar .toolbar-inner {
    align-items: stretch;
    gap: 14px;
    min-height: 0;
    padding: 16px 0;
  }

  .catalog-toolbar .catalog-tabs {
    gap: 22px;
  }

  .catalog-toolbar .catalog-tabs a {
    font-size: 15px;
  }

  .catalog-toolbar .catalog-tabs a.active::after {
    display: none;
  }

  .catalog-toolbar .toolbar-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .catalog-toolbar .search-box {
    flex: 1 1 auto;
    min-width: 0;
  }

  .catalog-toolbar .search-box input {
    width: 100%;
    height: 38px;
  }

  .catalog-toolbar .toolbar-button {
    flex: 0 0 62px;
    width: 62px;
    height: 38px;
    padding: 0;
  }

  .template-float {
    display: none;
  }

  .page-section,
  .case-list-section {
    padding-bottom: 72px;
  }

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

  .market-card-head {
    align-items: flex-start;
  }

  .market-card-head > a {
    flex: 0 0 58px;
    width: 58px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
  }

  .case-list-grid .case-card {
    border-radius: 18px;
  }

  .template-card {
    border-radius: 0;
    background: transparent;
  }

  .detail-titlebar h1 {
    font-size: 18px;
  }

  .detail-brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .detail-brand-icon img {
    width: 50px;
    height: 50px;
  }

  .detail-article h2 {
    font-size: 22px;
  }

  .red-stat-card {
    padding: 22px;
  }

  .red-stat-card > strong {
    font-size: 30px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-grid b {
    font-size: 21px;
  }

  .help-card {
    grid-template-columns: 1fr;
  }

  .container,
  .narrow,
  .footer-legal {
    width: min(100% - 32px, 480px);
  }

  .ai-card-grid {
    --card-width: 260px;
    --card-gap: 16px;
  }

  .ai-card {
    min-height: 0;
    padding: 0;
  }

  .orbit-wrap {
    width: 100%;
    margin-top: -150px;
  }

  .growth h2 {
    margin-top: 44px;
    margin-bottom: 24px;
  }

  .system,
  .trust,
  .cases {
    padding: 64px 0;
  }

  .system-copy {
    padding: 34px 24px;
  }

  .system-panel {
    border-radius: 16px;
  }

  .dashboard {
    border-radius: 0 0 16px 16px;
  }

  .visual-hybrid {
    min-height: 360px;
  }

  .visual-stage {
    min-height: 360px;
  }

  .visual-window {
    left: 20px;
    top: 116px;
    width: calc(100% - 40px);
    height: 210px;
  }

  .visual-metric,
  .visual-dark-card,
  .visual-phone,
  .visual-float-b {
    display: none;
  }

  .visual-float-a {
    left: 20px;
    top: 70px;
  }

  .visual-palette {
    left: auto;
    right: 20px;
    top: 24px;
    grid-template-columns: repeat(3, 28px);
    gap: 8px;
  }

  .visual-palette i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .system-copy h3 {
    font-size: 22px;
  }

  .final-cta h2 {
    font-size: 28px;
  }
}

.mobile-hero-chrome,
.mobile-hero-visual,
.mobile-bottom-cta,
.system-mobile-controls {
  display: none;
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  body[data-page="home"] {
    --mobile-nav-h: 64px;
    --mobile-hero-body-h: min(760px, 202.667vw);
    --mobile-hero-dark-h: calc(var(--mobile-nav-h) + min(482px, 128.533vw));
    --mobile-visual-top: calc(var(--mobile-nav-h) + min(233px, 62.133vw));
    --mobile-visual-h: min(475px, 126.667vw);
    --mobile-ribbons-h: min(268px, 71.467vw);
    --mobile-orbit-size: min(316px, 84.267vw);
    --mobile-orbit-top: min(137px, 36.533vw);
    padding-bottom: 74px;
  }

  body[data-page="home"] .site-header {
    display: block;
    height: 64px;
    color: #fff;
    background: rgba(8, 10, 22, 0.96);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
  }

  body[data-page="home"] .site-header.is-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
  }

  body[data-page="home"] .site-header-inner {
    padding: 0 16px;
    gap: 0;
  }

  body[data-page="home"] .site-logo {
    flex: 0 0 104px;
    width: 104px;
    height: 42px;
  }

  body[data-page="home"] .site-logo img {
    width: 102px;
  }

  body[data-page="home"] .site-actions {
    margin-left: auto;
  }

  body[data-page="home"] .site-actions .trial-link {
    min-width: 92px;
    height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
  }

  .hero {
    min-height: calc(var(--mobile-nav-h) + var(--mobile-hero-body-h));
    height: calc(var(--mobile-nav-h) + var(--mobile-hero-body-h));
    background: #f1f4f6;
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--mobile-hero-dark-h);
    background: #0c081c url("./assets/hero-bg-figma.png") center top / cover no-repeat;
  }

  .mobile-hero-chrome {
    display: none;
  }

  .mobile-hero-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 36px 0 72px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-status-icons {
    position: relative;
    width: 88px;
    height: 24px;
  }

  .mobile-status-icons::before {
    content: "";
    position: absolute;
    right: 46px;
    bottom: 3px;
    width: 28px;
    height: 18px;
    background:
      linear-gradient(#0b0d12, #0b0d12) 0 10px / 4px 8px no-repeat,
      linear-gradient(#0b0d12, #0b0d12) 7px 6px / 4px 12px no-repeat,
      linear-gradient(#0b0d12, #0b0d12) 14px 2px / 4px 16px no-repeat,
      linear-gradient(#0b0d12, #0b0d12) 21px 0 / 4px 18px no-repeat;
    border-radius: 3px;
  }

  .mobile-status-icons::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1px;
    width: 35px;
    height: 18px;
    border: 2px solid #0b0d12;
    border-radius: 6px;
    box-shadow: inset 0 0 0 2px #fff, inset 4px 0 0 #0b0d12;
  }

  .mobile-hero-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(15, 24, 42, 0.08);
  }

  .mobile-back {
    width: 14px;
    height: 14px;
    border-left: 3px solid #0b0d12;
    border-bottom: 3px solid #0b0d12;
    transform: rotate(45deg);
  }

  .mobile-menu-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 82px;
    height: 32px;
    border: 1px solid rgba(15, 24, 42, 0.1);
    border-radius: 18px;
    background: #fff;
  }

  .mobile-menu-pill i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0b0d12;
  }

  .mobile-menu-pill b {
    position: relative;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    border: 3px solid #0b0d12;
    border-radius: 50%;
  }

  .mobile-menu-pill b::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #0b0d12;
  }

  .hero-content {
    position: absolute;
    z-index: 3;
    top: calc(var(--mobile-nav-h) + min(40px, 10.667vw));
    left: 0;
    width: 100%;
    padding: 0 20px;
  }

  .hero-kicker {
    margin: 0 0 9px;
    font-size: 12px;
    line-height: 17px;
  }

  .hero h1 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
  }

  .hero-value {
    gap: 6px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 26px;
    font-weight: 200;
    line-height: 36px;
    white-space: nowrap;
  }

  .hero-desc {
    width: 270px;
    max-width: 270px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 14px;
  }

  .hero-desc br {
    display: block;
  }

  .hero-ribbons-art {
    display: none;
  }

  .mobile-hero-visual {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: var(--mobile-visual-top);
    display: block;
    height: var(--mobile-visual-h);
    overflow: visible;
    pointer-events: none;
  }

  .mobile-ribbons-art {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: var(--mobile-ribbons-h);
    object-fit: cover;
  }

  .mobile-orbit-art {
    position: absolute;
    left: 50%;
    top: var(--mobile-orbit-top);
    display: block;
    width: var(--mobile-orbit-size);
    height: auto;
    transform: translateX(-50%);
  }

  .mobile-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px 0 29px;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 15px 28px rgba(15, 24, 42, 0.12);
  }

  .mobile-chip::before {
    content: "";
    position: absolute;
    left: 9px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #e9f9eb;
  }

  .mobile-chip::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 3px;
    height: 6px;
    border-right: 1.5px solid #34c759;
    border-bottom: 1.5px solid #34c759;
    transform: translateY(-64%) rotate(45deg);
  }

  .mobile-chip-a {
    left: 5.3%;
    top: 80.4%;
  }

  .mobile-chip-b {
    left: 38.7%;
    top: 78.3%;
  }

  .mobile-chip-c {
    right: 4.3%;
    top: 81.5%;
  }

  .mobile-chip-d {
    left: 25.9%;
    top: 90.1%;
  }

  .mobile-chip-e {
    left: 53.9%;
    top: 89.9%;
  }

  .hero-edge-flow,
  .hero-cta {
    display: none;
  }

  .mobile-bottom-cta {
    position: fixed;
    z-index: 9999;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 24px;
    color: #fff;
    background: #ed1c24;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(237, 28, 36, 0.24);
    isolation: isolate;
    animation: mobileBottomCtaIn 520ms cubic-bezier(0.2, 0.78, 0.22, 1) 140ms both;
    will-change: transform, opacity;
  }

  .mobile-bottom-cta::before {
    content: "✦";
    margin-right: 12px;
    font-size: 24px;
    line-height: 1;
  }

  .mobile-bottom-cta::before {
    content: "\2726";
    position: relative;
    z-index: 1;
  }

  body[data-page="home"]::after {
    content: "";
    position: fixed;
    z-index: 9998;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(104px + env(safe-area-inset-bottom));
    pointer-events: none;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.78) 42%,
      rgba(255, 255, 255, 0) 100%
    );
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 62%, transparent 100%);
    mask-image: linear-gradient(0deg, #000 0%, #000 62%, transparent 100%);
  }

  @keyframes mobileBottomCtaIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

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

  .growth {
    margin-top: 0;
    padding-top: 48px;
    padding-bottom: 58px;
    background: #f1f4f6;
  }

  .growth-inner {
    width: 100%;
  }

  .orbit-wrap {
    display: none;
  }

  .growth h2 {
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0 18px;
    font-size: 28px;
    line-height: 1.35;
  }

  .system {
    padding: 58px 0 64px;
  }

  .system .narrow {
    width: min(100% - 32px, 480px);
  }

  .system h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.36;
  }

  .system-tabs {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .system-panel {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 16px;
  }

  .system-copy {
    min-height: 0;
    padding: 28px 24px 20px;
  }

  .system-tab-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .system-copy h3 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.45;
  }

  .system-copy ul {
    font-size: 14px;
    line-height: 22px;
  }

  .system-copy li + li {
    margin-top: 10px;
  }

  .panel-actions {
    display: none;
  }

  .dashboard {
    min-height: 0;
    border-radius: 0 0 16px 16px;
  }

  .visual-hybrid {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .visual-base {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .visual-hybrid [data-visual-item] {
    display: none;
  }

  .system-mobile-controls {
    display: flex;
    gap: 20px;
    margin-top: 22px;
  }

  .system-mobile-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #05070d;
    background: #f0f1f5;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .system-mobile-controls button[data-system-play] {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .site-header {
    animation: none !important;
  }

  .ai-card-grid {
    animation: none;
    overflow-x: auto;
    max-width: 100vw;
  }

  .ai-card-grid [aria-hidden="true"] {
    display: none;
  }

  body.motion-ready [data-motion-section] [data-motion-heading],
  body.motion-ready [data-motion-section] [data-motion-heading] strong,
  body.motion-ready [data-motion-section] [data-motion-image],
  body.motion-ready [data-motion-section] .system-tabs,
  body.motion-ready [data-motion-section] .tabs,
  body.motion-ready [data-motion-section] .system-panel,
  body.motion-ready [data-motion-section] .trust-grid article,
  body.motion-ready [data-motion-section] .case-card,
  body.motion-ready [data-motion-section] .cases-more,
  body.motion-ready [data-motion-section] .market-card,
  body.motion-ready [data-motion-section] .template-card,
  body.motion-ready [data-motion-section] .preview-phone,
  body.motion-ready [data-motion-section] .detail-article,
  body.motion-ready [data-motion-section] .detail-side,
  body.motion-ready [data-motion-section] .template-info-panel,
  body.motion-ready [data-motion-section] .final-cta a,
  body.motion-ready [data-motion-section] .ai-card,
  body.motion-ready [data-motion-section] .chip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  .hero-edge-flow {
    display: none;
  }
}
