@charset "UTF-8";
.home-page {
  /* 首页纵向节奏：区块上下留白、标题与内容间距、栅格间隙 */
  --home-gutter: 24px;
  --home-section-y: 88px;
  --home-heading-mb: 36px;
  --home-grid-gap: 16px;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: #e2e8f0;
  background: radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.22), transparent 30%), radial-gradient(circle at 85% 12%, rgba(16, 185, 129, 0.14), transparent 28%), radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.2), transparent 36%), #050b16;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.home-container {
  width: min(1180px, 100% - 2 * var(--home-gutter));
  margin: 0 auto;
}

/* 主内容区内各 section 统一上下留白（首屏 .hero 单独加大顶栏避让） */
.home-page main > section {
  padding: var(--home-section-y) 0;
}

.home-page main > section.hero {
  padding: 132px 0 var(--home-section-y);
}

/* 全站级区块主标题（h2）：字号、字重、下边距一致 */
.home-section-heading {
  margin: 0 0 var(--home-heading-mb);
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  /* 避免粘性顶栏遮挡：点击锚点滚动时，标题下方留出偏移 */
  scroll-margin-top: 92px;
}

.home-cta-title {
  color: #f8fafc;
  text-shadow: 0 2px 20px rgba(15, 23, 42, 0.35);
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(5, 11, 22, 0.72);
  backdrop-filter: blur(12px);
  overflow: visible;
}
.home-header .home-container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: visible;
}
.header-actions a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header-actions a:hover {
  color: #ffffff;
}

/* 避免 flex 子项被拉高后，二维码误以整块导航高度做 top:100% 参照 */
.header-wechat {
  display: inline-flex;
  align-items: center;
  align-self: center;
  overflow: visible;
}

.header-wechat-anchor {
  display: inline-block;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.header-wechat-anchor:hover {
  color: #ffffff;
}

/* 仅包住文案，作二维码的定位参照（避免整行 flex 高度参与 top:100%） */
.header-wechat-label {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
}

/*
 * 弹出层必须写死宽高：否则 width:auto 会在窄包含块里 shrink-to-fit，
 * 叠加上 Tailwind preflight 的 img{max-width:100%} 会把二维码压成极小一块。
 */
.header-wechat-popover {
  --header-qr-size: min(150px, 78vw);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  width: var(--header-qr-size);
  height: var(--header-qr-size);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
.header-wechat-popover img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

@media (hover: hover) {
  .header-wechat-anchor:hover .header-wechat-popover,
  .header-wechat-anchor:focus-within .header-wechat-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.nav-btn {
  cursor: pointer;
  font-family: inherit;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-weight: 600;
  line-height: 1;
}

.btn.primary {
  color: #fff;
  border-color: rgba(99, 102, 241, 0.65);
  background: linear-gradient(135deg, #2563eb, #4f46e5 55%, #06b6d4);
}
.btn.primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.35);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.45);
}
.btn.ghost:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.8);
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 22px 20px 26px;
}

.hero-content h1 {
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.12;
  margin: 0 0 26px;
  color: #f8fafc;
  text-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}

.hero-highlight {
  display: inline-block;
  margin: 0 6px;
  color: #67e8f9;
  text-shadow: 0 0 16px rgba(103, 232, 249, 0.42);
}

.hero-desc {
  margin: 0 auto;
  max-width: 760px;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-metrics {
  margin: 44px auto 0;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--home-grid-gap);
}
.hero-metrics .metric-card {
  background: linear-gradient(180deg, rgba(25, 44, 74, 0.8), rgba(22, 36, 58, 0.88));
  border: 1px solid rgba(77, 114, 170, 0.32);
  border-radius: 16px;
  padding: 22px 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero-metrics div {
  text-align: center;
}
.hero-metrics strong {
  display: block;
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.2;
  color: #f8fafc;
  letter-spacing: 1px;
}
.hero-metrics span {
  color: #9bb2d5;
  font-size: 15px;
}

.metric-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #9ec3ff;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(180deg, rgba(58, 94, 176, 0.35), rgba(41, 66, 129, 0.5));
  border: 1px solid rgba(101, 149, 240, 0.28);
}

.home-metrics-section .hero-metrics {
  margin-top: 0;
}

.metrics-section {
  margin-top: 104px;
}

.scenario-cards {
  margin-top: var(--home-grid-gap);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--home-grid-gap);
}

.community-module {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.82)), linear-gradient(90deg, rgba(34, 197, 94, 0.08), rgba(59, 130, 246, 0.08));
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.32);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  overflow: hidden;
}

.community-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #7dd3fc;
  font-size: 26px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.75), rgba(2, 132, 199, 0.25));
}

.community-content {
  min-width: 0;
  flex: 1;
  text-align: left;
}
.community-content p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
}

.community-qr {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  margin-left: auto;
}
.community-qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

@media (min-width: 769px) {
  .community-qr {
    width: 96px;
    height: 96px;
  }
}
.scenario-card {
  position: relative;
  border-radius: 18px;
  padding: 26px 24px 22px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.35);
  overflow: hidden;
}
.scenario-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -42px;
  top: -52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.scenario-card h4 {
  margin: 10px 0 8px;
  color: #f8fafc;
  font-size: 28px;
  line-height: 1.24;
}
.scenario-card p {
  margin: 0;
  color: rgba(241, 245, 249, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.scenario-card.green {
  background: linear-gradient(135deg, #15b56f, #1a9a63 60%, #157d5d);
}

.scenario-card.orange {
  background: linear-gradient(135deg, #d39b24, #b97e12 58%, #9a680c);
}

.scenario-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 15, 30, 0.28);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

.scenario-btn {
  margin-top: 16px;
  height: 40px;
  min-width: 140px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(8, 15, 30, 0.2);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
.scenario-btn:hover {
  background: rgba(8, 15, 30, 0.32);
  transform: translateY(-1px);
}

.flow-showcase {
  margin-top: 56px;
  padding-top: 0;
}

.flow-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.flow-showcase-tab {
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(226, 232, 240, 0.28);
  background: rgba(51, 65, 85, 0.5);
  color: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  /* 与下方面板配色解耦：统一选中态（暗红褐底 + 玫红描边，字色与未选中一致为白） */
}
.flow-showcase-tab:hover {
  border-color: rgba(248, 250, 252, 0.42);
  color: #fff;
  background: rgba(51, 65, 85, 0.62);
}
.flow-showcase-tab.is-active {
  color: #ffffff;
  border-color: rgba(251, 113, 133, 0.88);
  background: rgba(94, 52, 58, 0.58);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.4);
}

.flow-showcase-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.flow-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}
.flow-showcase-panel > * {
  position: relative;
  z-index: 1;
}

/* 上架 → 服饰：略深的玫瑰粉 + 杏色 */
.flow-showcase-panel--listing {
  background: linear-gradient(148deg, rgba(254, 205, 211, 0.62) 0%, rgba(253, 164, 175, 0.58) 34%, rgba(252, 217, 189, 0.54) 100%);
}

/* 定制模板 → 家用纺织：略深的亚麻紫灰 */
.flow-showcase-panel--template {
  background: linear-gradient(148deg, rgba(232, 220, 232, 0.62) 0%, rgba(221, 208, 232, 0.58) 40%, rgba(226, 218, 242, 0.54) 100%);
}

/* 合规 → 铁皮画：略深的灰青 + 薄荷钢 */
.flow-showcase-panel--compliance {
  background: linear-gradient(148deg, rgba(197, 222, 218, 0.62) 0%, rgba(176, 208, 204, 0.58) 38%, rgba(200, 228, 223, 0.54) 100%);
}

/* 运营 → 挂钟：略深的香槟金（中段略压饱和，避免过亮） */
.flow-showcase-panel--ops {
  background: linear-gradient(148deg, rgba(253, 230, 138, 0.64) 0%, rgba(232, 197, 71, 0.6) 42%, rgba(212, 165, 116, 0.56) 100%);
}

/* 设计 / POD：略深的紫粉创意色 */
.flow-showcase-panel--design {
  background: linear-gradient(148deg, rgba(233, 213, 255, 0.62) 0%, rgba(216, 180, 254, 0.58) 38%, rgba(196, 181, 253, 0.54) 100%);
}

/* 贴标 → 手机壳：略深的薰衣紫 */
.flow-showcase-panel--label {
  background: linear-gradient(148deg, rgba(221, 214, 254, 0.62) 0%, rgba(208, 196, 247, 0.58) 36%, rgba(233, 213, 255, 0.54) 100%);
}

/* 发货：略深的雾蓝 */
.flow-showcase-panel--ship {
  background: linear-gradient(148deg, rgba(191, 219, 254, 0.62) 0%, rgba(147, 197, 253, 0.58) 40%, rgba(184, 217, 252, 0.54) 100%);
}

.flow-showcase-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.22;
}

.flow-showcase-subtitle {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

.flow-showcase-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.2) transparent;
}
.flow-showcase-steps::-webkit-scrollbar {
  height: 6px;
}
.flow-showcase-steps::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}

.flow-showcase-step-unit {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flow-showcase-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 6px;
  color: rgba(51, 65, 85, 0.72);
  font-size: 12px;
}

.flow-step-card {
  width: min(196px, 38vw);
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 10px 28px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.flow-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 16px 40px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.05);
}

.flow-step-card--function {
  width: min(260px, 48vw);
  display: flex;
  flex-direction: column;
  min-height: 148px;
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 28px rgba(15, 23, 42, 0.06), 0 2px 10px rgba(15, 23, 42, 0.03);
}
.flow-step-card--function::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.95), rgba(99, 102, 241, 0.95));
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.25);
  pointer-events: none;
}
.flow-step-card--function:hover {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.4) 52%, rgba(255, 255, 255, 0.3) 100%);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 16px 40px rgba(15, 23, 42, 0.08), 0 4px 14px rgba(15, 23, 42, 0.04);
}

.flow-step-caption--function {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 17px 18px;
  text-align: left;
  justify-content: flex-start;
}

.flow-fn-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 10px;
}

.flow-fn-idx {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: #4338ca;
  padding: 4px 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(99, 102, 241, 0.22);
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.flow-fn-title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.flow-fn-sub {
  margin: 0;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(30, 41, 59, 0.88);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.community-section {
  padding: var(--home-section-y) 0;
  margin-top: 0;
}

.community-card-title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.testimonials-marquee-head {
  text-align: center;
}

.testimonials-marquee-shell {
  position: relative;
}
.testimonials-marquee-shell--row2 {
  margin-top: var(--home-heading-mb);
}

.testimonials-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee-fade--left {
  left: 0;
  background: linear-gradient(90deg, #050b16 0%, rgba(5, 11, 22, 0) 100%);
}

.testimonials-marquee-fade--right {
  right: 0;
  background: linear-gradient(270deg, #050b16 0%, rgba(5, 11, 22, 0) 100%);
}

.testimonials-marquee-inner {
  overflow: hidden;
  padding: 8px 0 12px;
}
.testimonials-marquee-inner:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

.testimonials-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonials-marquee-track--rtl {
  animation: testimonials-marquee-x-rtl 58s linear infinite;
}

.testimonials-marquee-track--ltr {
  animation: testimonials-marquee-x-ltr 66s linear infinite;
}

@keyframes testimonials-marquee-x-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes testimonials-marquee-x-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-track article:nth-child(n+9) {
    display: none;
  }
  .testimonials-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 16px;
  }
  .testimonial-card {
    width: min(400px, 100%) !important;
  }
}
.testimonial-card {
  flex: 0 0 auto;
  width: min(400px, 100vw - 56px);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
}

.testimonial-card--tone-0 {
  background: linear-gradient(155deg, rgba(42, 38, 34, 0.96), rgba(24, 22, 20, 0.94));
}
.testimonial-card--tone-0 .testimonial-avatar {
  background: linear-gradient(145deg, #57534e, #3f3a36);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card--tone-1 {
  background: linear-gradient(155deg, rgba(38, 36, 32, 0.96), rgba(28, 26, 22, 0.94));
}
.testimonial-card--tone-1 .testimonial-avatar {
  background: linear-gradient(145deg, #64748b, #475569);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card--tone-2 {
  background: linear-gradient(155deg, rgba(34, 38, 36, 0.96), rgba(22, 26, 24, 0.94));
}
.testimonial-card--tone-2 .testimonial-avatar {
  background: linear-gradient(145deg, #4d7c6f, #365349);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card--tone-3 {
  background: linear-gradient(155deg, rgba(36, 34, 40, 0.96), rgba(24, 22, 28, 0.94));
}
.testimonial-card--tone-3 .testimonial-avatar {
  background: linear-gradient(145deg, #6b5b7a, #4a3d55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #f8fafc;
  flex-shrink: 0;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 17px;
  color: #f8fafc;
  line-height: 1.25;
}

.testimonial-role {
  margin-top: 4px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

.testimonial-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #e2e8f0;
}

.section-desc {
  margin: 0 0 34px;
  color: #94a3b8;
}

.cta .cta-inner {
  border-radius: 22px;
  border: 1px solid rgba(99, 102, 241, 0.5);
  background: linear-gradient(130deg, #1e1b4b, #1e3a8a 55%, #0f766e);
  color: #fff;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.55);
}
.cta .home-cta-title {
  margin-bottom: 12px;
}
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}
.cta .hero-actions {
  justify-content: center;
}
.cta .btn.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(15, 23, 42, 0.35);
}

.flow-showcase-panel[hidden] {
  display: none !important;
}

.flow-showcase-panels {
  position: relative;
}

.auth-guest[hidden],
.auth-logged-in[hidden],
.cta-register[hidden] {
  display: none !important;
}

.home-guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}

.home-guide-overlay[hidden] {
  display: none !important;
}

.home-guide-dialog {
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(160deg, rgba(8, 15, 30, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.65);
  padding: 22px;
  color: #dbeafe;
  position: relative;
}

.home-guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: #cbd5e1;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.home-guide-close:hover {
  color: #fff;
}

.home-guide-modal-root .ant-modal-container {
  background: linear-gradient(160deg, rgba(8, 15, 30, 0.82), rgba(15, 23, 42, 0.82)) !important;
}
.home-guide-modal-root .ant-modal-mask {
  background: rgba(2, 6, 23, 0.72) !important;
  backdrop-filter: blur(6px);
}

.home-guide-modal .ant-modal-content {
  padding: 0 !important;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25) !important;
  background: linear-gradient(160deg, rgba(8, 15, 30, 0.98), rgba(15, 23, 42, 0.98)) !important;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.32), 0 0 26px rgba(59, 130, 246, 0.32), 0 0 56px rgba(99, 102, 241, 0.22), 0 24px 60px rgba(2, 6, 23, 0.65) !important;
  overflow: hidden;
}
.home-guide-modal .ant-modal-body {
  padding: 22px !important;
  background: linear-gradient(160deg, rgba(8, 15, 30, 0.98), rgba(15, 23, 42, 0.98)) !important;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.24) !important;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14), 0 0 22px rgba(59, 130, 246, 0.2) !important;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.75;
}
.home-guide-modal .ant-modal-close {
  color: #cbd5e1;
}
.home-guide-modal .ant-modal-close:hover {
  color: #ffffff;
}

.guide-title {
  font-size: 30px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 16px;
}

.guide-block {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(30, 41, 59, 0.45);
}
.guide-block h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #f8fafc;
}
.guide-block p {
  margin: 4px 0;
  color: #cbd5e1;
}
.guide-block code {
  padding: 2px 8px;
  border-radius: 6px;
  color: #67e8f9;
  border: 1px solid rgba(103, 232, 249, 0.26);
  background: rgba(8, 47, 73, 0.45);
}

.guide-tip {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fef3c7;
  border: 1px solid rgba(251, 191, 36, 0.32);
  background: rgba(120, 53, 15, 0.26);
}

@media (max-width: 768px) {
  .home-page {
    --home-gutter: 14px;
    --home-section-y: 56px;
    --home-heading-mb: 28px;
  }
  .home-header .home-container {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .header-actions {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .home-page main > section.hero {
    padding: 96px 0 var(--home-section-y);
  }
  .hero-content {
    padding: 10px 2px 6px;
  }
  .hero-content h1 {
    font-size: clamp(32px, 8.6vw, 44px);
    line-height: 1.12;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.72;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .metrics-section {
    margin-top: 72px;
  }
  .flow-showcase {
    margin-top: 40px;
  }
  .scenario-cards {
    grid-template-columns: 1fr;
  }
  .community-module {
    align-items: flex-start;
    flex-direction: column;
  }
  .community-qr {
    width: 110px;
    height: 110px;
    margin-left: 0;
    align-self: flex-start;
  }
}

/*# sourceMappingURL=home.css.map */
