:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #dbeafe;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f1f5f9;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #eff6ff, var(--bg) 35%);
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.logo .brand {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0;
}

.logo .sep {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-top: -1px;
}

.logo .tag {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.2px;
}

nav a {
  margin-left: 10px;
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

nav a:hover,
nav a.active {
  color: #fff;
  background: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
  isolation: isolate;
  background: #eef2ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #dbeafe 0%, #eef2ff 32%, #e0ecff 58%, #f0efff 82%, #e8f4ff 100%);
  background-size: 320% 320%;
  animation: heroBgPan 16s ease-in-out infinite alternate;
}

@keyframes heroBgPan {
  0% {
    background-position: 0% 20%;
  }
  33% {
    background-position: 90% 40%;
  }
  66% {
    background-position: 55% 85%;
  }
  100% {
    background-position: 15% 60%;
  }
}

.hero-bg-sheen {
  position: absolute;
  inset: -45%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(99, 102, 241, 0.14) 55deg,
    transparent 115deg,
    rgba(59, 130, 246, 0.1) 200deg,
    transparent 295deg,
    transparent 360deg
  );
  opacity: 0.65;
  mix-blend-mode: soft-light;
  animation: heroSheenRotate 56s linear infinite;
}

@keyframes heroSheenRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.88;
  mix-blend-mode: multiply;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-bg-blob-a {
  width: min(82vw, 720px);
  height: min(82vw, 720px);
  left: max(-160px, -15vw);
  top: max(-220px, -22vh);
  background: radial-gradient(circle closest-side, rgba(37, 99, 235, 0.45), transparent 72%);
  animation-name: heroBlobDriftA;
  animation-duration: 14s;
}

.hero-bg-blob-b {
  width: min(70vw, 580px);
  height: min(70vw, 580px);
  right: max(-140px, -12vw);
  top: max(-120px, -10vh);
  background: radial-gradient(circle closest-side, rgba(99, 102, 241, 0.32), transparent 70%);
  animation-name: heroBlobDriftB;
  animation-duration: 16s;
  opacity: 0.78;
}

.hero-bg-blob-c {
  width: min(88vw, 760px);
  height: min(88vw, 760px);
  left: 8%;
  bottom: max(-260px, -28vh);
  background: radial-gradient(circle closest-side, rgba(14, 165, 233, 0.22), transparent 72%);
  animation-name: heroBlobDriftC;
  animation-duration: 18s;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

@keyframes heroBlobDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(min(120px, 18vw), min(96px, 14vh)) scale(1.12);
  }
}

@keyframes heroBlobDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(max(-130px, -18vw), min(104px, 15vh)) scale(1.15);
  }
}

@keyframes heroBlobDriftC {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(min(100px, 14vw), max(-96px, -12vh)) scale(1.1);
  }
}

.hero-bg-grid {
  position: absolute;
  inset: -40% -40% -40% -40%;
  opacity: 0.12;
  background-image: radial-gradient(rgba(15, 23, 42, 0.45) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: heroGridSlide 26s linear infinite;
}

@keyframes heroGridSlide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-112px, -112px);
  }
}

.hero-bg-glyphs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  margin-left: -55px;
  margin-top: -55px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.03) 62%, rgba(37, 99, 235, 0));
  animation: heroCorePulse 4.6s ease-in-out infinite;
}

.hero-bg-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68vw, 620px);
  height: min(68vw, 620px);
  margin-left: calc(min(68vw, 620px) / -2);
  margin-top: calc(min(68vw, 620px) / -2);
  border-radius: 999px;
  border: 1px dashed rgba(59, 130, 246, 0.16);
  animation: heroOrbitSpin 34s linear infinite;
}

@keyframes heroOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroCorePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.hero-glyph {
  position: absolute;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0.26;
}

.hero-glyph svg {
  display: block;
  transform: scale(1.58);
  transform-origin: center center;
  filter: drop-shadow(0 2px 10px rgba(30, 64, 175, 0.1));
}

.hero-glyph--speed {
  top: 20%;
  left: 11%;
  color: #0369a1;
  animation: heroDot1 13s ease-in-out infinite alternate;
}

.hero-glyph--ai {
  top: 9%;
  right: max(48px, 8vw);
  left: auto;
  color: #5b21b6;
  z-index: 0;
  animation: heroGlyphAi 17s linear infinite;
}

.hero-glyph--flow {
  top: 74%;
  left: 16%;
  color: #047857;
  animation: heroDot3 15s ease-in-out infinite alternate;
}

.hero-glyph--integrate {
  top: 54%;
  right: 8%;
  left: auto;
  color: #0e7490;
  animation: heroDot2 14s ease-in-out infinite alternate;
}

.hero-glyph--form {
  top: 80%;
  left: 54%;
  color: #4338ca;
  opacity: 0.2;
  animation: heroMiscForm 21s linear infinite;
}

.hero-glyph--report {
  top: 44%;
  left: 6%;
  color: #1d4ed8;
  opacity: 0.18;
  animation: heroMiscReport 19s linear infinite;
}

.hero-glyph--chart {
  top: 32%;
  right: max(52px, 7vw);
  left: auto;
  color: #b45309;
  opacity: 0.2;
  animation: heroMiscChart 18s linear infinite;
}

.hero-glyph--routing {
  top: 18%;
  left: 52%;
  color: #0369a1;
  opacity: 0.18;
  animation: heroMiscFlow 23s linear infinite;
}

.hero-glyph--bi {
  bottom: 12%;
  right: max(14px, 3vw);
  top: auto;
  left: auto;
  color: #0f766e;
  opacity: 0.19;
  animation: heroMiscBi 20s linear infinite;
}

.hero-glyph--ai-text {
  top: 36%;
  right: max(22px, 4vw);
  left: auto;
  color: #6d28d9;
  opacity: 0.22;
  animation: heroMiscAiText 16s linear infinite;
}

@keyframes heroMiscAiText {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(max(-120px, -14vw), max(-70px, -8vh));
  }
  65% {
    transform: translate(max(-210px, -24vw), min(90px, 10vh));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroGlyphAi {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(max(-72px, -9vw), min(88px, 10vh)) rotate(-3deg);
  }
  40% {
    transform: translate(min(36px, 5vw), min(136px, 15vh)) rotate(2deg);
  }
  60% {
    transform: translate(max(-48px, -6vw), min(172px, 18vh)) rotate(-2deg);
  }
  80% {
    transform: translate(min(20px, 3vw), min(72px, 8vh)) rotate(2.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes heroMiscForm {
  0% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(max(-140px, -16vw), max(-96px, -10vh));
  }
  66% {
    transform: translate(min(80px, 10vw), min(-48px, -5vh));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroMiscReport {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(min(180px, 22vw), min(48px, 6vh)) scale(1.05);
  }
  55% {
    transform: translate(min(96px, 12vw), max(-96px, -10vh)) scale(1);
  }
  85% {
    transform: translate(max(-40px, -5vw), min(132px, 14vh)) scale(1.03);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes heroMiscChart {
  0% {
    transform: translate(0, 0);
    opacity: 0.12;
  }
  33% {
    transform: translate(max(-200px, -24vw), min(176px, 18vh));
    opacity: 0.23;
  }
  66% {
    transform: translate(max(-120px, -14vw), max(-144px, -14vh));
    opacity: 0.18;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.12;
  }
}

@keyframes heroMiscFlow {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(max(-110px, -12vw), min(208px, 20vh));
  }
  60% {
    transform: translate(min(130px, 14vw), min(48px, 5vh));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroMiscBi {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(max(-260px, -28vw), max(-164px, -15vh));
  }
  80% {
    transform: translate(max(-108px, -12vw), min(56px, 6vh));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroDot1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.07;
  }
  100% {
    transform: translate(min(200px, 28vw), min(140px, 18vh));
    opacity: 0.2;
  }
}

@keyframes heroDot2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.06;
  }
  100% {
    transform: translate(max(-220px, -30vw), min(80px, 12vh));
    opacity: 0.18;
  }
}

@keyframes heroDot3 {
  0% {
    transform: translate(0, 0);
    opacity: 0.07;
  }
  100% {
    transform: translate(min(160px, 22vw), max(-140px, -16vh));
    opacity: 0.2;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
  justify-items: center;
  text-align: center;
}

.hero-main {
  max-width: 820px;
  margin-inline: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  font-style: normal;
}

.hero-title-main {
  font-style: normal;
}

.hero h1 em {
  font-style: italic;
}

.hero p.hero-lead,
.hero .hero-lead {
  margin: 0 auto;
  padding: 20px 0 24px;
  color: #334155;
  line-height: 1.78;
  max-width: 720px;
  text-wrap: balance;
}

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

.hero-badges .badge {
  margin-bottom: 0;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  color: #1d4ed8;
  background: #dbeafe;
  border-radius: 999px;
  padding: 6px 12px;
}

.badge.ghost {
  color: #334155;
  background: #e2e8f0;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b1220;
  background: linear-gradient(90deg, #fde68a, #fff7ed);
  border: 1px solid #f59e0b;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.2);
  font-weight: 700;
}

.beta-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f59e0b;
  position: relative;
}

.beta-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.28);
  animation: betaPulse 1.6s infinite;
}

@keyframes betaPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin-top: 0;
  font-size: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: #bfdbfe;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.06);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.fi-blue {
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
}
.fi-purple {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
}
.fi-emerald {
  background: linear-gradient(180deg, #059669, #047857);
}
.fi-amber {
  background: linear-gradient(180deg, #f59e0b, #b45309);
}

.product-page .badge {
  background: #dbeafe;
  color: #1d4ed8;
}

.product-page .card {
  border-color: #c7d2fe;
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.05);
}

.product-page .step {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.card h3 {
  margin-top: 0;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.button {
  display: inline-block;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--brand-dark);
}

.button:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}

.button.secondary {
  background: #fff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

form {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.contact-badge {
  background: linear-gradient(90deg, #dbeafe, #ede9fe);
  color: #3730a3;
  border: 1px solid #c7d2fe;
  font-weight: 700;
}

.contact-intro p {
  margin: 8px 0 0;
  color: #475569;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-form-card form {
  border: 1px solid #dbeafe;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
}

.contact-promo-card {
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 45%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.08);
}

.contact-promo-card h3 {
  margin: 0;
  font-size: 22px;
  color: #1e3a8a;
}

.contact-promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.launch-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fef3c7, #ffedd5);
  border: 1px solid #fdba74;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.28);
}

.launch-ping {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ea580c;
  position: relative;
}

.launch-ping::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.28);
  animation: launchPing 1.5s ease-out infinite;
}

.launch-pill {
  font-size: 12px;
  font-weight: 800;
  color: #9a3412;
  letter-spacing: 0.3px;
}

.launch-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fb7185;
  opacity: 0.8;
  animation: launchSparkFloat 2.2s ease-in-out infinite;
}

.launch-spark-a {
  top: -4px;
  right: 8px;
}

.launch-spark-b {
  bottom: -3px;
  right: 26px;
  animation-delay: 0.7s;
}

@keyframes launchPing {
  0% {
    transform: scale(0.5);
    opacity: 0.95;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes launchSparkFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.contact-promo-card p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.contact-benefits {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  color: #334155;
  border-bottom: 1px dashed #cbd5e1;
}

.contact-benefits li:last-child {
  border-bottom: 0;
}

.contact-tip {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 14px;
}

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
}

.modal-panel {
  position: relative;
  width: min(400px, 100%);
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2);
}

.modal-title {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}

.modal-message {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  white-space: pre-wrap;
}

.modal-panel.modal-panel--success .modal-title {
  color: #15803d;
}

.modal-panel.modal-panel--error .modal-title {
  color: #dc2626;
}

.modal-panel .modal-ok {
  width: 100%;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.tips {
  margin-top: 12px;
  font-size: 14px;
}

.success {
  color: #15803d;
}

.error {
  color: #dc2626;
}

.blog-item + .blog-item {
  margin-top: 14px;
}

.blog-tabs {
  margin-top: 18px;
  margin-bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-tab {
  appearance: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.blog-tab:hover {
  border-color: #bfdbfe;
  transform: translateY(-1px);
}

.blog-tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

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

.post-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.post-cover {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #f8fafc;
}

.post-body {
  padding: 14px 14px 16px;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.post-category {
  font-size: 12px;
  color: #1d4ed8;
  background: #dbeafe;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.post-date {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
}

.post-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #0f172a;
}

.post-body p {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-detail-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.detail-cover {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f8fafc;
}

.detail-body {
  padding: 18px 18px 26px;
}

.detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.detail-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.35;
  color: #0f172a;
}

.detail-summary {
  margin: 14px 0 0;
  color: #64748b;
  line-height: 1.9;
  font-size: 15px;
  white-space: pre-wrap;
}

.meta {
  color: #475569;
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.stats--hero {
  margin-top: 28px;
  padding-top: 12px;
  max-width: 960px;
  margin-inline: auto;
}

.stats--hero .stat-card--hero {
  text-align: center;
}

.hero-media {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section-lead {
  margin: -6px 0 18px;
  color: #475569;
  line-height: 1.8;
  max-width: 760px;
}

.home-evolution .image-card {
  height: 100%;
  border: 1px solid #c7d2fe;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(30, 64, 175, 0.1);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
}

.home-evolution .image-card img {
  max-height: 286px;
  opacity: 0.92;
  filter: saturate(1.05);
}

.home-evolution .image-caption {
  border-top: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: #334155;
}

.evolution-card {
  height: 100%;
}

.evolution-card h3 {
  margin-top: 0;
}

.evolution-tags {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.evolution-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #1d4ed8;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}

.evolution-action {
  margin-top: 28px;
}

.image-card {
  flex: 1 1 340px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  min-height: 160px;
  margin: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.image-caption {
  padding: 12px 14px 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.image-caption strong {
  color: #1e3a8a;
}

.split {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.home-split {
  flex-direction: column;
  gap: 22px;
}

.home-split > .left,
.home-split > .right {
  flex: 1 1 auto;
  width: 100%;
}

.split > .left {
  flex: 1 1 420px;
}

.split > .right {
  flex: 1 1 420px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  color: #334155;
}

.checklist li:last-child {
  border-bottom: 0;
}

.checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #dbeafe;
  color: #2563eb;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  margin-right: 10px;
  transform: translateY(2px);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #dbeafe, #eff6ff);
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.stat-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 24px;
}

.stat-card--hero {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(30, 64, 175, 0.08);
  backdrop-filter: blur(10px);
}

.table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  padding: 12px 10px;
  vertical-align: top;
}

th {
  background: #f8fafc;
}

footer {
  margin-top: 48px;
  border-top: 1px solid #e5e7eb;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--brand);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-gradient,
  .hero-bg-blob,
  .hero-bg-grid,
  .hero-bg-sheen,
  .hero-glyph {
    animation: none;
  }

  .hero-bg-gradient {
    background-size: auto;
    background-position: center;
  }

  .hero-bg-grid {
    transform: none;
  }

  .hero-bg-sheen {
    transform: none;
  }

  .launch-ping::after,
  .launch-spark {
    animation: none;
  }

  .stats--hero {
    margin-top: 12px;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 72px 0 56px;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .stat-card {
    padding: 14px 12px;
  }
  .stat-card strong {
    font-size: 21px;
  }
  .split {
    flex-direction: column;
  }
  .split > .left,
  .split > .right {
    flex: 1 1 auto;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-promo-head {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .stat-card {
    padding: 12px 8px;
    border-radius: 10px;
  }
  .stat-card strong {
    font-size: 18px;
    line-height: 1.1;
  }
  .stat-card span {
    display: block;
    font-size: 12px;
    line-height: 1.35;
  }
  .blog-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
