@font-face {
  font-family: LocalHeavy;
  src: local("Arial Black");
  font-display: swap;
}

:root {
  --primary: #6d14ff;
  --primary-2: #b88cff;
  --blue: #0071e9;
  --text: #333;
  --muted: #666;
  --page: 1300px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 1300px;
  margin: 0;
  color: var(--text);
  background: #f1f1f7;
  font-family: "PingFang SC", BlinkMacSystemFont, Arial, "Microsoft YaHei", sans-serif;
  user-select: none;
}
a { color: inherit; text-decoration: none; }
.w-page { width: var(--page); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 calc((100% - var(--page)) / 2);
  background: rgba(255,255,255,.9);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  backdrop-filter: blur(18px);
}
.logo { display: flex; align-items: center; gap: 10px; width: 210px; }
.logo strong { font-size: 22px; }
.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1cc9ff);
  overflow: hidden;
}
.logo-mark.logo-image {
  background: #fff;
  box-shadow: 0 8px 20px rgba(109,20,255,.12);
}
.logo-mark.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-mark.logo-image i {
  display: none;
}
.logo-mark i {
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  animation: logoPulse 1.8s ease-in-out infinite;
}
.logo-mark i:nth-child(2) { animation-delay: .3s; }
.logo-mark i:nth-child(3) { animation-delay: .6s; }
.menu { display: flex; align-items: center; gap: 42px; font-size: 15px; }
.menu a { transition: color .2s ease; }
.menu a:hover { color: var(--primary); }
.menu-product {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
}
.menu-product::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -16px;
  height: 18px;
}
.product-dropdown {
  position: absolute;
  top: 58px;
  left: -220px;
  z-index: 40;
  width: 920px;
  padding: 22px;
  border: 1px solid rgba(109,20,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 70px rgba(45, 27, 91, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.985);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.menu-product:hover .product-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-title {
  height: 38px;
  color: #1d2129;
  font-size: 18px;
  font-weight: 700;
  line-height: 38px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.product-tile {
  display: block;
  min-height: 142px;
  padding: 18px 16px;
  border: 1px solid #f0edf8;
  border-radius: 14px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.product-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(109,20,255,.28);
  background: linear-gradient(180deg, #fbf9ff, #fff);
  box-shadow: 0 14px 34px rgba(110,88,182,.12);
}
.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 13px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
.tile-icon.purple { background: linear-gradient(135deg, #6d14ff, #b88cff); }
.tile-icon.blue { background: linear-gradient(135deg, #0071e9, #69bdff); }
.tile-icon.red { background: linear-gradient(135deg, #ff4d6d, #ff9bb0); }
.tile-icon.cyan { background: linear-gradient(135deg, #00a3ff, #39e3ff); }
.tile-icon.dark { background: linear-gradient(135deg, #222, #63616e); }
.tile-icon.green { background: linear-gradient(135deg, #16a34a, #7ed957); }
.tile-icon.orange { background: linear-gradient(135deg, #ff7a00, #ffc46b); }
.tile-icon.violet { background: linear-gradient(135deg, #7c3aed, #dbb8ff); }
.product-tile strong {
  display: block;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}
.product-tile small {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 13px;
  line-height: 21px;
}
.menu-solution,
.menu-resource {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
}
.menu-solution::after,
.menu-resource::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -16px;
  height: 18px;
}
.solution-dropdown,
.resource-dropdown {
  position: absolute;
  top: 58px;
  z-index: 40;
  border: 1px solid rgba(109,20,255,.08);
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 70px rgba(45,27,91,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.985);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.menu-solution:hover .solution-dropdown,
.menu-resource:hover .resource-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.solution-dropdown {
  left: -180px;
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 720px;
  min-height: 250px;
  padding: 18px;
  border-radius: 18px;
}
.solution-main {
  padding: 24px;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.25), transparent 130px),
    linear-gradient(135deg, var(--primary), #20105a);
}
.solution-main strong {
  display: block;
  font-size: 24px;
  line-height: 34px;
}
.solution-main p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 25px;
}
.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-left: 16px;
}
.solution-list a {
  padding: 18px;
  border: 1px solid #f0edf8;
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.solution-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(109,20,255,.28);
  background: #fbf9ff;
}
.solution-list b,
.solution-list span {
  display: block;
}
.solution-list b {
  color: #333;
  font-size: 16px;
  line-height: 26px;
}
.solution-list span {
  margin-top: 6px;
  color: #777;
  font-size: 13px;
  line-height: 22px;
}
.resource-dropdown {
  left: -60px;
  width: 260px;
  padding: 10px;
  border-radius: 14px;
}
.resource-dropdown a {
  display: block;
  padding: 14px;
  border-radius: 10px;
}
.resource-dropdown a:hover {
  background: #f7f3ff;
}
.resource-dropdown span,
.resource-dropdown small {
  display: block;
}
.resource-dropdown span {
  color: #333;
  font-size: 15px;
  font-weight: 700;
}
.resource-dropdown small {
  margin-top: 5px;
  color: #777;
  font-size: 12px;
  line-height: 20px;
}
.header-actions { display: flex; gap: 12px; margin-left: auto; }
.login, .trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 600;
}
.login { color: var(--primary); }
.trial { color: #fff; background: var(--primary); box-shadow: 0 8px 20px rgba(109,20,255,.24); }

.home-banner {
  position: relative;
  height: 595px;
  padding-top: 64px;
  overflow: hidden;
  background: #fff;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fafafa 0%, rgba(250,250,250,0) 22%, rgba(250,250,250,0) 78%, #fafafa 100%),
    radial-gradient(circle at 68% 44%, rgba(109,20,255,.12), transparent 330px),
    radial-gradient(circle at 86% 8%, rgba(0,113,233,.13), transparent 290px),
    #fafafa;
  overflow: hidden;
}
.banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,20,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,20,255,.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 65% 45%, #000 0, transparent 60%);
}
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: .55;
  animation: float 7s ease-in-out infinite;
}
.halo-a { right: 210px; top: 86px; width: 260px; height: 260px; background: rgba(109,20,255,.2); }
.halo-b { right: 20px; bottom: 54px; width: 280px; height: 280px; background: rgba(0,113,233,.16); animation-delay: -2s; }
.flow-ribbon {
  position: absolute;
  right: -120px;
  top: 110px;
  width: 760px;
  height: 320px;
  border: 1px solid rgba(109,20,255,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.flow-ribbon::before, .flow-ribbon::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(0,113,233,.14);
  border-radius: inherit;
}
.flow-ribbon::after { inset: 78px; }
.model-orbit { position: absolute; right: calc(50% - 660px); top: 85px; width: 510px; height: 390px; }
.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(109,20,255,.18);
  border-radius: 50%;
  animation: rotate 22s linear infinite;
}
.orbit-1 { width: 430px; height: 260px; }
.orbit-2 { width: 330px; height: 330px; animation-duration: 28s; animation-direction: reverse; }
.orbit-3 { width: 470px; height: 150px; transform: rotate(28deg); animation-duration: 18s; }
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(155deg, var(--primary), #00b4ff);
  box-shadow: 0 24px 60px rgba(109,20,255,.34);
  font-family: LocalHeavy, Arial, sans-serif;
  font-size: 42px;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding: 13px;
}
.core img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: #fff;
}
.model-orbit b {
  position: absolute;
  left: var(--x);
  top: var(--y);
  min-width: 86px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 30px rgba(110,88,182,.16);
  font-size: 13px;
  line-height: 34px;
  text-align: center;
  animation: chipFloat 3.4s ease-in-out infinite;
}
.model-orbit b:nth-of-type(2n) { animation-delay: -1.2s; }
.banner-main { position: relative; z-index: 2; padding-top: 94px; pointer-events: none; }
.title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: #333;
  font-family: LocalHeavy, Arial, sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.title-row.single-title {
  font-size: 92px;
  letter-spacing: 0;
}
.title-row.single-title span {
  color: #252a31;
}
.title-row span:first-child, .title-row em { color: var(--primary); font-style: normal; }
.title-row.single-title span:first-child {
  color: #252a31;
}
.banner-title h1 {
  margin: 8px 0 0;
  color: #333;
  font-family: LocalHeavy, Arial, sans-serif;
  font-size: 80px;
  line-height: 1;
}
.title-badge {
  height: 34px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 20px;
  color: var(--primary);
  background: rgba(109,20,255,.1);
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
}
.feature-grid-mini { display: flex; gap: 30px; margin-top: 32px; }
.feature-col { display: flex; flex-direction: column; gap: 20px; }
.feature-col p { display: inline-flex; align-items: center; height: 24px; margin: 0; color: #000; font-size: 14px; }
.feature-col span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 22px;
  margin-right: 10px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), #9d73ff);
  font-size: 12px;
  font-weight: 700;
}

.populars {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1920px;
  height: 128px;
  margin: 0 auto;
  padding: 0 80px;
  background: #fff;
}
.popular-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
  min-width: 0;
  transition: transform .2s ease;
}
.popular-item + .popular-item { border-left: 1px solid rgba(0,0,0,.06); padding-left: 44px; }
.popular-item:hover { z-index: 3; transform: translateY(-2px); }
.popular-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  font-style: normal;
  transition: all .2s ease;
}
.popular-item h3 { margin: 0; font-size: 18px; line-height: 25px; }
.popular-item p { margin: 4px 0 0; color: #666; font-size: 14px; line-height: 25px; }
.popular-item:hover i { border-color: var(--primary); color: #fff; background: var(--primary); }
.popular-item:hover h3, .popular-item:hover p { color: var(--primary); }
.preview-card {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 410px;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;
  pointer-events: none;
}
.popular-item:hover .preview-card { opacity: 1; visibility: visible; transform: translateY(0); }
.preview-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 390px;
  height: 206px;
  padding: 18px;
  border-radius: 10px;
  overflow: hidden;
}
.preview-window span { border-radius: 12px; background: rgba(255,255,255,.76); }
.preview-window.purple { background: linear-gradient(135deg, #eee7ff, #fff); }
.preview-window.blue { background: linear-gradient(135deg, #e7f3ff, #fff); }
.preview-window.dark { background: linear-gradient(135deg, #1f1b3b, #0d1224); }
.preview-card h4 { margin: 10px 0 0; font-size: 18px; line-height: 25px; }

.trust-strip {
  padding: 28px 0;
  background: #f7f7fc;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-grid article {
  min-height: 112px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(110,88,182,.08);
}
.trust-grid span {
  display: block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.trust-grid strong {
  display: block;
  margin-top: 14px;
  color: #333;
  font-size: 16px;
  line-height: 26px;
}

.scenario-section { padding: 40px 0; background: linear-gradient(90deg, #f8fcff, #faf7ff); }
.section-head { display: flex; flex-direction: column; align-items: center; }
.section-head h2, .center-title { margin: 0; font-size: 36px; font-weight: 600; line-height: 50px; text-align: center; }
.section-head p { margin: 16px 0 0; color: #666; font-size: 14px; line-height: 25px; }
.scenario-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.scenario-board article {
  height: 310px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.scenario-board article:hover { transform: translateY(-6px); box-shadow: 0 14px 50px rgba(110,88,182,.18); }
.scenario-board span {
  display: inline-flex;
  height: 33px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(109,20,255,.1);
  font-weight: 600;
}
.scenario-board h3 { margin: 26px 0 30px; font-size: 24px; line-height: 36px; }
.mini-chart { display: flex; align-items: end; gap: 16px; height: 110px; }
.mini-chart i, .wave-card i {
  flex: 1;
  height: 40%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  animation: barMove 2.3s ease-in-out infinite;
}
.mini-chart i:nth-child(2) { height: 76%; animation-delay: -.7s; }
.mini-chart i:nth-child(3) { height: 54%; animation-delay: -1.1s; }
.mini-chart i:nth-child(4) { height: 92%; animation-delay: -1.5s; }
.answer-lines i {
  display: block;
  height: 18px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ece7ff, #fff);
  animation: shimmer 2.4s linear infinite;
}
.answer-lines i:nth-child(1) { width: 88%; }
.answer-lines i:nth-child(2) { width: 64%; }
.answer-lines i:nth-child(3) { width: 76%; }
.post-stack { position: relative; height: 130px; }
.post-stack i {
  position: absolute;
  width: 220px;
  height: 86px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f0eaff);
  box-shadow: 0 12px 36px rgba(110,88,182,.13);
}
.post-stack i:nth-child(1) { left: 16px; top: 10px; }
.post-stack i:nth-child(2) { left: 72px; top: 32px; }
.post-stack i:nth-child(3) { left: 128px; top: 56px; }

.service-section { position: relative; overflow: hidden; background: #fff; }
.service-bg-one, .service-bg-two {
  position: absolute;
  width: 1000px;
  height: 1190px;
  background: radial-gradient(circle at 50% 50%, rgba(109,20,255,.12), transparent 55%);
  pointer-events: none;
}
.service-bg-one { left: -360px; top: 190px; }
.service-bg-two { right: -360px; bottom: -150px; }
.service-head {
  position: relative;
  z-index: 1;
  height: 196px;
  padding: 38px 0;
  background: radial-gradient(circle at 78% 50%, rgba(109,20,255,.18), transparent 300px), linear-gradient(90deg, #f8f6ff, #fff);
}
.dso-head {
  margin-top: 30px;
  background:
    radial-gradient(circle at 78% 50%, rgba(0,113,233,.16), transparent 300px),
    linear-gradient(90deg, #f2f8ff, #fff);
}
.service-tag-blue {
  background: linear-gradient(1deg, #69bdff, var(--blue));
  background-clip: text;
}
.service-head .w-page { display: flex; justify-content: space-between; align-items: flex-start; }
.service-tag {
  height: 58px;
  font-family: LocalHeavy, Arial, sans-serif;
  font-size: 48px;
  line-height: 58px;
  background: linear-gradient(1deg, var(--primary-2), var(--primary));
  background-clip: text;
  color: transparent;
}
.service-head h2 { margin: 0; font-size: 36px; line-height: 58px; }
.service-head p { margin: 4px 0 0; color: #666; font-size: 14px; line-height: 25px; }
.stat-cards { display: flex; gap: 20px; }
.stat-cards article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 150px;
  border: 1px solid rgba(109,20,255,.18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
  transition: transform .2s ease;
}
.stat-cards article:hover { transform: translateY(-4px); }
.stat-cards strong {
  font-family: LocalHeavy, Arial, sans-serif;
  font-size: 30px;
  line-height: 54px;
  background: linear-gradient(1deg, var(--primary-2), var(--primary));
  background-clip: text;
  color: transparent;
}
.stat-cards-blue strong {
  background: linear-gradient(1deg, #69bdff, var(--blue));
  background-clip: text;
}
.stat-cards-blue article {
  border-color: rgba(0,113,233,.16);
}
.stat-cards span { font-size: 14px; }
.service-body { position: relative; z-index: 2; display: flex; gap: 40px; min-height: 650px; padding: 34px 0 40px; }
.service-body-alt {
  min-height: 590px;
}
.feature-copy { width: 560px; flex: 0 0 560px; }
.feature-heading { display: flex; align-items: center; gap: 10px; }
.feature-heading b { color: var(--primary); font-size: 24px; }
.feature-heading h3 { margin: 0; font-size: 24px; line-height: 38px; }
.feature-line { position: relative; width: 100%; height: 1px; margin-top: 10px; background: rgba(0,0,0,.1); }
.feature-line::before { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 4px; background: var(--primary); }
.feature-line-blue::before { background: var(--blue); }
.feature-copy article { display: flex; gap: 10px; padding: 40px 0 20px; border-bottom: 1px solid rgba(47,53,64,.1); }
.feature-copy article i { width: 28px; height: 28px; margin-top: 4px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.feature-copy article i.blue-dot { background: linear-gradient(135deg, var(--blue), #69bdff); }
.feature-copy h4 { margin: 0 0 10px; font-size: 18px; line-height: 32px; }
.feature-copy p { margin: 0; color: #666; font-size: 14px; line-height: 25px; }
.product-preview {
  flex: 1;
  min-width: 680px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(110,88,182,.18);
}
.browser-bar { display: flex; align-items: center; gap: 8px; height: 54px; padding: 0 18px; background: #f7f7fc; border-bottom: 1px solid #eee; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d8d8e8; }
.browser-bar em { margin-left: 12px; color: #999; font-style: normal; font-size: 13px; }
.dashboard-layout { display: grid; grid-template-columns: 220px 1fr; height: 520px; background: linear-gradient(135deg, #fff, #f8f6ff); }
.side-panel {
  padding: 18px;
  border-right: 1px solid rgba(109,20,255,.08);
  background: rgba(255,255,255,.48);
}
.mock-brand {
  display: flex;
  align-items: center;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 13px;
  color: var(--primary);
  background: rgba(109,20,255,.08);
  font-size: 18px;
  font-weight: 900;
}
.side-panel button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: #596070;
  font: inherit;
  text-align: left;
}
.side-panel button.active,
.side-panel button:hover {
  border-color: rgba(109,20,255,.14);
  background: #fff;
  box-shadow: 0 8px 24px rgba(110,88,182,.1);
}
.side-panel button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}
.side-panel button em {
  overflow: hidden;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.main-panel { padding: 26px; }
.search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 16px 0 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(110,88,182,.08);
}
.search-row button { height: 36px; padding: 0 20px; border: 0; border-radius: 8px; color: #fff; background: var(--primary); font-weight: 700; }
.rank-list { margin-top: 24px; }
.rank-list p {
  display: flex;
  align-items: center;
  height: 58px;
  margin: 0 0 12px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(110,88,182,.08);
}
.rank-list b { color: var(--primary); margin-right: 16px; }
.rank-list span { flex: 1; }
.rank-list em { padding: 4px 10px; border-radius: 999px; color: var(--primary); background: rgba(109,20,255,.1); font-style: normal; font-size: 12px; }
.wave-card { display: flex; align-items: end; gap: 15px; height: 170px; margin-top: 28px; padding: 24px; border-radius: 16px; background: linear-gradient(135deg, rgba(109,20,255,.08), rgba(0,113,233,.08)), #fff; }
.wave-card i:nth-child(2) { height: 80%; animation-delay: -.4s; }
.wave-card i:nth-child(3) { height: 62%; animation-delay: -.8s; }
.wave-card i:nth-child(4) { height: 96%; animation-delay: -1.2s; }
.wave-card i:nth-child(5) { height: 70%; animation-delay: -1.6s; }

.content-preview {
  flex: 0 0 680px;
  min-width: 680px;
}
.content-dashboard {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  height: 520px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(0,113,233,.14), transparent 220px),
    linear-gradient(135deg, #fff, #f4f9ff);
}
.keyword-map {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,113,233,.08);
}
.keyword-map strong {
  display: block;
  margin-bottom: 30px;
  font-size: 22px;
}
.keyword-map div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #555;
  font-size: 14px;
}
.keyword-map i {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: #eef5ff;
  overflow: hidden;
}
.keyword-map i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #63d8ff);
  transform-origin: left;
  animation: widthIn 1.6s ease both;
}
.platform-rings {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, #10213f, #07111f);
  overflow: hidden;
}
.platform-rings::before,
.platform-rings::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}
.platform-rings::after {
  inset: 82px 28px;
  animation-direction: reverse;
}
.platform-rings b {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 13px;
}
.platform-rings b:nth-child(1) { left: 32px; top: 64px; }
.platform-rings b:nth-child(2) { right: 28px; top: 130px; }
.platform-rings b:nth-child(3) { left: 44px; bottom: 122px; }
.platform-rings b:nth-child(4) { right: 42px; bottom: 54px; }

.reviews-section { padding: 40px 0; overflow: hidden; background: #f7f7fc; }
.review-track { display: flex; width: max-content; gap: 10px; margin-top: 40px; animation: reviewScroll 38s linear infinite; }
.review-track:hover { animation-play-state: paused; }
.review-group { display: flex; gap: 10px; }
.review-group article {
  width: 260px;
  height: 256px;
  padding: 24px;
  border: 2px solid #f5f7fa;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(160deg, var(--primary), #15102b);
}
.review-group strong { display: block; margin-top: 30px; font-size: 44px; }
.review-group span { display: block; margin-top: 8px; font-size: 18px; font-weight: 600; }
.review-group p { color: rgba(255,255,255,.72); font-size: 13px; line-height: 22px; }

.articles-section { padding: 40px 0 60px; background: radial-gradient(circle at 50% 0, rgba(109,20,255,.12), transparent 460px), #fff; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.article-grid article {
  min-height: 250px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
  transition: transform .2s ease;
}
.article-grid article:hover { transform: translateY(-5px); }
.article-grid b { display: inline-flex; height: 33px; align-items: center; padding: 0 10px; border-radius: 8px; color: var(--primary); background: rgba(109,20,255,.1); }
.article-grid h3 { margin: 42px 0 46px; font-size: 22px; line-height: 34px; }
.article-grid p { color: #999; font-size: 12px; }
.article-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
}

.partners-section {
  padding: 40px 0;
  overflow: hidden;
  background: #f7f7fc;
}
.partners-section .center-title {
  margin-bottom: 40px;
}
.marquee-row {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 180px, #000 calc(100% - 180px), transparent);
}
.partner-group {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding-right: 40px;
}
.partner-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 141px;
  height: 43px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 3px 16px rgba(110,88,182,.08);
}
.scroll-left { animation: partnerLeft 70s linear infinite; }
.scroll-right { animation: partnerRight 70s linear infinite; }
.marquee-row:hover .partner-group {
  animation-play-state: paused;
}

.consult-section { padding: 0 0 48px; background: #fff; }
.consult-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 265px;
  border-radius: 24px;
  color: #fff;
  background: radial-gradient(circle at 75% 40%, rgba(255,255,255,.26), transparent 260px), linear-gradient(135deg, var(--primary), #25115d);
}
.consult-card.consult-panel {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 34px;
  align-items: stretch;
  height: auto;
  min-height: 430px;
  padding: 34px;
  text-align: left;
}
.consult-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-eyebrow {
  display: inline-flex;
  width: fit-content;
  height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.consult-card h2 { margin: 0; font-size: 36px; line-height: 50px; }
.consult-card p { margin: 12px 0 22px; font-size: 24px; line-height: 43px; }
.consult-copy h2 {
  margin-top: 18px;
}
.consult-copy p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 32px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.consult-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  border-radius: 8px;
  color: #333;
  background: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 600;
  transition: transform .2s ease, color .2s ease;
}
.consult-card a:hover { color: var(--primary); transform: translateY(-2px); }
.lead-form {
  padding: 24px;
  border-radius: 20px;
  color: #333;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lead-form label {
  display: block;
  color: #444;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #e5e1f0;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: #222;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input,
.lead-form select {
  height: 42px;
  padding: 0 12px;
}
.lead-form textarea {
  min-height: 96px;
  margin-top: 8px;
  padding: 12px;
  resize: vertical;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(109,20,255,.55);
  box-shadow: 0 0 0 4px rgba(109,20,255,.08);
}
.lead-form > label {
  margin-top: 14px;
}
.lead-form button {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(109,20,255,.22);
}
.form-output {
  margin: 12px 0 0 !important;
  color: #777 !important;
  font-size: 13px !important;
  line-height: 22px !important;
}
.form-output.success {
  color: #17803b !important;
}
.form-output.error {
  color: #c02626 !important;
}

.right-tools {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}
.right-tools button {
  position: relative;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 1px solid rgba(109,20,255,.1);
  border-radius: 14px;
  color: #333;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(45,27,91,.08);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.right-tools button:hover {
  color: #fff;
  background: var(--primary);
  transform: translateX(-4px);
  box-shadow: 0 16px 36px rgba(109,20,255,.24);
}
.right-tools span,
.right-tools em {
  display: block;
  font-style: normal;
}
.right-tools span {
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
}
.right-tools em {
  margin-top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.tool-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.38);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.tool-modal.open {
  opacity: 1;
  visibility: visible;
}
.tool-modal-card {
  position: relative;
  width: 360px;
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  transform: translateY(18px);
  transition: transform .22s ease;
}
.tool-modal.open .tool-modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f7;
  color: #666;
  font-size: 22px;
  cursor: pointer;
}
.modal-tabs {
  display: flex;
  gap: 8px;
  margin: 0 34px 18px;
  padding: 4px;
  border-radius: 999px;
  background: #f5f3fa;
}
.modal-tabs button {
  flex: 1;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #666;
  font-weight: 700;
}
.modal-tabs button.active {
  color: #fff;
  background: var(--primary);
}
.qr-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 8px;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  padding: 18px;
  border: 10px solid #f4f0ff;
  border-radius: 14px;
  background: #fff;
}
.wechat-qr {
  display: block;
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
  border: 10px solid #f4f0ff;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(109,20,255,.12);
}
.qr-box i {
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--primary), #111 48%, var(--primary));
}
.tool-modal-card h3 {
  margin: 0;
  font-size: 22px;
}
.tool-modal-card p {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
}

.footer {
  color: rgba(255,255,255,.78);
  background: #10131d;
}
.footer-main {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  padding: 50px 0 34px;
}
.footer-logo {
  width: auto;
  color: #fff;
}
.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 26px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-columns li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-columns li:first-child {
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}
.footer-links span {
  color: #fff;
  font-weight: 700;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  height: 58px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  line-height: 58px;
  text-align: center;
}

.reveal-up { opacity: 0; transform: translateY(48px); transition: opacity .55s linear, transform .55s linear; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.split-chars { opacity: 0; filter: blur(18px); transform: translateY(28px); transition: opacity .35s linear, filter .35s linear, transform .35s linear; }
.split-chars.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

@keyframes logoPulse { 0% { transform: scale(.45); opacity: 0; } 40% { opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px,-18px); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes barMove { 0%,100% { transform: scaleY(.82); opacity: .78; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes shimmer { 0% { filter: brightness(.98); transform: translateX(0); } 50% { filter: brightness(1.08); transform: translateX(8px); } 100% { filter: brightness(.98); transform: translateX(0); } }
@keyframes reviewScroll { to { transform: translateX(-50%); } }
@keyframes partnerLeft { to { transform: translateX(-100%); } }
@keyframes partnerRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes widthIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.admin-body {
  min-height: 100vh;
  background: #f7f7fc;
}
.admin-main {
  width: var(--page);
  margin: 0 auto;
  padding: 42px 0 70px;
}
.admin-hero {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.24), transparent 260px),
    linear-gradient(135deg, var(--primary), #221157);
}
.admin-hero h1 {
  margin: 18px 0 10px;
  font-size: 46px;
  line-height: 58px;
}
.admin-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 30px;
}
.admin-hero code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,.14);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.admin-stats article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.12);
}
.admin-stats strong {
  font-size: 42px;
  line-height: 54px;
}
.admin-stats span {
  color: rgba(255,255,255,.72);
}
.admin-toolbar {
  display: grid;
  grid-template-columns: 190px 360px 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.admin-toolbar label {
  color: #444;
  font-size: 13px;
  font-weight: 700;
}
.admin-toolbar select,
.admin-toolbar input {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid #e5e1f0;
  border-radius: 10px;
  outline: none;
  font: inherit;
}
.admin-toolbar p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.admin-toolbar p.success {
  color: #17803b;
}
.admin-toolbar p.error {
  color: #c02626;
}
.lead-table-wrap {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.lead-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lead-table th,
.lead-table td {
  padding: 16px;
  border-bottom: 1px solid #f0edf8;
  vertical-align: top;
  text-align: left;
}
.lead-table th {
  color: #555;
  background: #fbf9ff;
  font-size: 13px;
}
.lead-table td span {
  color: #888;
}
.lead-table a {
  color: var(--primary);
}
.lead-table select {
  height: 34px;
  border: 1px solid #e5e1f0;
  border-radius: 8px;
  background: #fff;
}
.need-cell {
  max-width: 300px;
  line-height: 24px;
}
.empty-cell {
  height: 120px;
  color: #888;
  text-align: center !important;
  vertical-align: middle !important;
}
.article-hero {
  margin-top: 38px;
}
.article-cms {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}
.article-editor {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.article-editor label {
  display: block;
  margin-bottom: 14px;
  color: #444;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
}
.article-editor input,
.article-editor select,
.article-editor textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #e5e1f0;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: #222;
  font: inherit;
}
.article-editor input,
.article-editor select {
  height: 42px;
  padding: 0 12px;
}
.article-editor textarea {
  min-height: 86px;
  padding: 12px;
  resize: vertical;
}
.article-editor .article-content-input {
  min-height: 300px;
  line-height: 1.7;
}
.ai-writing-box {
  display: grid;
  grid-template-columns: 1fr 110px 130px;
  gap: 12px;
  align-items: center;
  margin: 4px 0 16px;
  padding: 16px;
  border: 1px solid #e8defe;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(109,20,255,.08), rgba(0,140,255,.06)),
    #fff;
}
.ai-writing-box span {
  display: block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.ai-writing-box p {
  margin: 4px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 22px;
}
.ai-writing-box button {
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(109,20,255,.18);
}
.ai-writing-box button:first-of-type {
  color: var(--primary);
  background: #f1e9ff;
  box-shadow: none;
}
.article-actions {
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 12px;
  align-items: end;
}
.article-actions button {
  height: 42px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}
.article-actions button[type="button"] {
  color: var(--primary);
  background: #f3edff;
}
.article-admin-list {
  min-width: 0;
}
.article-toolbar {
  grid-template-columns: 320px 1fr;
  margin-top: 0;
}
.article-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.article-admin-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(110,88,182,.08);
}
.article-status {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #777;
  background: #f3f3f7;
  font-size: 12px;
  font-weight: 800;
}
.article-status.published {
  color: #17803b;
  background: #e8f8ee;
}
.article-admin-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 30px;
}
.article-admin-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 25px;
}
.article-admin-card small {
  display: block;
  margin-top: 12px;
  color: #999;
  line-height: 22px;
}
.article-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card-actions button,
.article-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 0;
  border-radius: 9px;
  color: #333;
  background: #f5f3fa;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.article-card-actions a {
  color: #fff;
  background: var(--primary);
}
.article-card-actions button[data-delete-article] {
  color: #c02626;
}
.article-admin-empty {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #888;
  background: #fff;
}
.public-main,
.article-page {
  width: var(--page);
  margin: 0 auto;
  padding: 46px 0 70px;
}
.formal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.formal-grid article,
.formal-content,
.formal-service-list article,
.contact-formal {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.formal-grid article {
  min-height: 180px;
  padding: 24px;
}
.formal-grid b {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(109,20,255,.1);
}
.formal-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 22px;
  line-height: 32px;
}
.formal-grid span {
  display: block;
  margin-top: 12px;
  color: #666;
  line-height: 26px;
}
.formal-content {
  margin-top: 24px;
  padding: 34px;
}
.formal-content h2 {
  margin: 0 0 14px;
  font-size: 30px;
}
.formal-content h2 + p,
.formal-content li {
  color: #555;
  font-size: 16px;
  line-height: 32px;
}
.formal-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.formal-service-list article {
  min-height: 220px;
  padding: 26px;
}
.formal-service-list span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.formal-service-list h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}
.formal-service-list p {
  color: #666;
  font-size: 16px;
  line-height: 30px;
}
.contact-formal {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
}
.contact-formal h2 {
  margin: 0 0 18px;
  font-size: 32px;
}
.contact-formal p {
  color: #555;
  font-size: 17px;
  line-height: 32px;
}
.contact-formal a {
  color: var(--primary);
  font-weight: 800;
}
.contact-formal img {
  width: 220px;
  height: 220px;
  border: 12px solid #f4f0ff;
  border-radius: 18px;
  object-fit: cover;
}
.public-hero {
  padding: 42px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.24), transparent 260px),
    linear-gradient(135deg, var(--primary), #221157);
}
.public-hero h1 {
  margin: 18px 0 12px;
  font-size: 52px;
  line-height: 64px;
}
.public-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 32px;
}
.public-toolbar {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.public-toolbar label {
  color: #444;
  font-size: 13px;
  font-weight: 700;
}
.public-toolbar input {
  width: 100%;
  height: 42px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid #e5e1f0;
  border-radius: 10px;
  outline: none;
  font: inherit;
}
.public-toolbar p {
  margin: 0;
  color: #666;
  line-height: 24px;
}
.public-toolbar p.success { color: #17803b; }
.public-toolbar p.error { color: #c02626; }
.public-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.public-article-card {
  min-height: 280px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
  transition: transform .22s ease, box-shadow .22s ease;
}
.public-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(110,88,182,.16);
}
.public-article-card span,
.article-category {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(109,20,255,.1);
  font-size: 13px;
  font-weight: 800;
}
.public-article-card h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 36px;
}
.public-article-card p {
  color: #666;
  font-size: 14px;
  line-height: 25px;
}
.public-article-card small {
  display: block;
  margin-top: 26px;
  color: #999;
  line-height: 22px;
}
.article-detail {
  width: 900px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(110,88,182,.1);
}
.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 800;
}
.article-detail h1 {
  margin: 24px 0 16px;
  font-size: 44px;
  line-height: 56px;
}
.article-summary {
  color: #666;
  font-size: 18px;
  line-height: 32px;
}
.article-meta {
  margin: 22px 0 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
  color: #999;
  font-size: 14px;
}
.article-body h2 {
  margin: 34px 0 14px;
  font-size: 28px;
  line-height: 40px;
}
.article-body p,
.article-body li {
  color: #444;
  font-size: 16px;
  line-height: 32px;
}
.article-body ul {
  padding-left: 22px;
}
.article-faq {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}
.article-faq h2 {
  margin: 0 0 18px;
  font-size: 28px;
}
.article-faq details {
  margin-top: 12px;
  border: 1px solid #ece7fb;
  border-radius: 12px;
  background: #fbfaff;
}
.article-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #222;
  font-weight: 900;
}
.article-faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: #555;
  font-size: 16px;
  line-height: 30px;
}
.login-body {
  background:
    radial-gradient(circle at 70% 20%, rgba(109,20,255,.16), transparent 320px),
    linear-gradient(135deg, #f9fbff, #f4f0ff);
}
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
}
.login-panel {
  width: 460px;
  padding: 34px;
  border: 1px solid rgba(109,20,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 80px rgba(62,35,130,.16);
}
.login-panel .logo {
  margin-bottom: 30px;
}
.login-panel h1 {
  margin: 16px 0 10px;
  font-size: 34px;
  line-height: 44px;
}
.login-panel p {
  color: #666;
  line-height: 28px;
}
.login-panel label {
  display: block;
  margin-top: 24px;
  color: #333;
  font-size: 13px;
  font-weight: 800;
}
.login-panel input {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid #e5e1f0;
  border-radius: 10px;
  outline: none;
  font: inherit;
}
.login-panel button {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.login-panel .form-output {
  margin-top: 14px;
  font-size: 13px;
}
