﻿:root {
  --bg: #f7fafd;
  --bg-elevated: #ffffff;
  --bg-muted: #edf5fb;
  --bg-deep: #0f2740;
  --bg-deep-soft: #17395c;
  --text: #1a2b40;
  --text-soft: #60748d;
  --text-faint: #8ea0b5;
  --line: rgba(26, 43, 64, 0.08);
  --line-strong: rgba(26, 43, 64, 0.14);
  --primary: #1677d9;
  --primary-strong: #0f62b3;
  --primary-soft: #eaf4fe;
  --accent: #14b0aa;
  --gold: #efaa4b;
  --success: #21a568;
  --shadow-sm: 0 10px 22px rgba(18, 38, 60, 0.05);
  --shadow-md: 0 22px 52px rgba(18, 38, 60, 0.07);
  --shadow-lg: 0 28px 72px rgba(18, 38, 60, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(circle at top left, rgba(22, 119, 217, 0.06), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(20, 176, 170, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f7fafd 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding-left: 18px;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26, 43, 64, 0.06);
}

.topbar-inner,
.container,
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 30px rgba(31, 120, 209, 0.24);
}

.brand-copy {
  min-width: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(26, 43, 64, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(18, 38, 60, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle span + span {
  margin-top: 0;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
  background: rgba(31, 120, 209, 0.08);
}

.ps-site .ps-actions .ps-login {
  display: none;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(31, 120, 209, 0.22);
}

.button-secondary {
  color: var(--primary);
  background: var(--primary-soft);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(20, 32, 51, 0.08);
}

.button-gold {
  color: #ffffff;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(240, 162, 58, 0.2);
}

.hero,
.section,
.page-hero {
  position: relative;
}

.section {
  padding: 84px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(236, 242, 248, 0.76) 0%, rgba(244, 247, 251, 0.24) 100%);
}

.page-hero {
  padding: 36px 0 18px;
}

.hero-grid,
.feature-layout,
.login-layout,
.content-layout,
.footer-inner,
.workbench-layout,
.split-hero,
.comparison-grid,
.story-grid,
.case-grid,
.pricing-grid,
.grid-2,
.grid-3,
.grid-4,
.workbench-grid,
.hero-stat-row,
.product-overview,
.hero-side-stack,
.trust-grid {
  display: grid;
  gap: 24px;
}

.hero-grid,
.feature-layout {
  grid-template-columns: 1fr 1fr;
}

.login-layout {
  min-height: calc(100vh - 78px);
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.content-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.workbench-layout {
  grid-template-columns: 270px minmax(0, 1fr);
}

.footer-inner {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.case-grid,
.pricing-grid,
.workbench-grid,
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.product-overview {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.hero-card,
.hero-aside,
.page-hero-card,
.section-card,
.pricing-card,
.case-card,
.login-card,
.content-article,
.sidebar,
.workbench-card,
.workbench-nav,
.timeline-card,
.spot-card,
.scene-card,
.compare-card,
.story-panel,
.quote-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.hero-card,
.hero-aside,
.page-hero-card,
.section-card,
.pricing-card,
.case-card,
.login-card,
.content-article,
.sidebar,
.workbench-card,
.timeline-card,
.spot-card,
.scene-card,
.compare-card,
.story-panel,
.quote-card {
  padding: 28px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(22, 119, 217, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.page-hero-card::after {
  content: "";
  position: absolute;
  inset: auto 34px 0 auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 169, 154, 0.12), transparent 70%);
  pointer-events: none;
}

.eyebrow,
.badge,
.tab-chip,
.mini-tag,
.section-tag,
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow,
.badge,
.section-tag,
.tab-chip.active,
.metric-pill {
  color: var(--primary);
  background: var(--primary-soft);
}

.tab-chip {
  color: var(--text-soft);
  background: #f1f5f9;
}

.mini-tag {
  color: var(--text-soft);
  background: #f4f7fb;
}

.page-hero h1,
.hero h1,
.login-showcase h1 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.page-hero p,
.hero p,
.section-head p,
.section-card p,
.pricing-card p,
.case-card p,
.login-card p,
.content-article p,
.content-article li,
.sidebar p,
.workbench-card p,
.timeline-card p,
.spot-card p,
.scene-card p,
.compare-card p,
.story-panel p,
.quote-card p {
  color: var(--text-soft);
  line-height: 1.85;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.24;
}

.section-head p {
  max-width: 700px;
  margin-bottom: 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-full {
  padding: 0;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #edf5fd;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94) 0%, rgba(247, 251, 255, 0.82) 42%, rgba(247, 251, 255, 0.44) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(226, 239, 250, 0.48) 100%);
}

.hero-bg-1 {
  background-image:
    radial-gradient(circle at 74% 18%, rgba(22, 119, 217, 0.18), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(20, 176, 170, 0.14), transparent 18%),
    linear-gradient(135deg, #f5faff 0%, #e8f2fb 44%, #dfeefc 100%);
}

.hero-bg-2 {
  background-image:
    radial-gradient(circle at 76% 18%, rgba(239, 170, 75, 0.18), transparent 17%),
    radial-gradient(circle at 88% 70%, rgba(22, 119, 217, 0.16), transparent 18%),
    linear-gradient(135deg, #f7fbff 0%, #ebf4fd 48%, #e1eef9 100%);
}

.hero-bg-3 {
  background-image:
    radial-gradient(circle at 76% 20%, rgba(20, 176, 170, 0.16), transparent 18%),
    radial-gradient(circle at 90% 72%, rgba(22, 119, 217, 0.18), transparent 18%),
    linear-gradient(135deg, #f6fbff 0%, #eaf3fd 42%, #ddebf8 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 92px 28px 64px;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(240px, 300px);
  align-items: center;
  gap: 54px;
}

.hero-spot {
  max-width: 560px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(22, 119, 217, 0.08);
  border: 1px solid rgba(22, 119, 217, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-spot h1 {
  max-width: 11ch;
  margin: 18px 0 16px;
  color: #16314d;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hero-spot p {
  max-width: 520px;
  color: #5f738b;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions,
.hero-tags,
.footer-links,
.login-tabs,
.filter-row,
.page-hero-actions,
.case-tags,
.page-meta-row,
.top-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-full .button-secondary {
  color: var(--primary);
  background: rgba(22, 119, 217, 0.08);
  border-color: rgba(22, 119, 217, 0.08);
}

.hero-full .button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(26, 43, 64, 0.08);
}

.hero-stat-row {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-stat {
  padding: 16px 16px 14px;
  border-right: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(26, 43, 64, 0.06);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: #17314c;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: #6a7d92;
  font-size: 12px;
  line-height: 1.65;
}

.hero-side-stack {
  align-content: center;
}

.hero-side-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(26, 43, 64, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-side-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(22, 119, 217, 0.05);
  pointer-events: none;
}

.hero-side-card h3 {
  position: relative;
  margin-bottom: 14px;
  color: #16314d;
  font-size: 18px;
  line-height: 1.18;
}

.hero-side-card p {
  position: relative;
  color: #64788e;
  font-size: 14px;
  line-height: 1.75;
}

.hero-side-list {
  position: relative;
  display: grid;
  gap: 10px;
}

.hero-side-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f4f8fc;
}

.hero-side-item strong {
  color: #19314b;
  font-size: 14px;
}

.hero-side-item span {
  color: #6c8096;
  font-size: 12px;
  text-align: right;
  line-height: 1.6;
}

.hero-slide-nav {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.hero-slide-dot {
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 119, 217, 0.18);
  cursor: pointer;
}

.hero-slide-dot.active {
  background: var(--primary);
}

.spot-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.spot-card .card-head,
.section-card .card-head,
.pricing-top,
.workbench-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.spot-card h3,
.section-card h3,
.pricing-card h3,
.case-card h3,
.workbench-card h3,
.content-article h2,
.sidebar h3,
.scene-card h3,
.compare-card h3,
.story-panel h3,
.quote-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
}

.spot-card ul,
.section-card ul,
.pricing-card ul,
.content-article ul,
.compare-card ul,
.scene-card ul {
  color: var(--text-soft);
  line-height: 1.8;
}

.flat-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 16px;
  font-weight: 800;
}

.section-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.section-card.featured-card {
  background:
    linear-gradient(135deg, rgba(22, 119, 217, 0.08) 0%, rgba(20, 176, 170, 0.06) 100%),
    #ffffff;
}

.card-actions,
.pricing-actions,
.page-hero-actions {
  margin-top: 20px;
}

.price {
  margin: 24px 0 22px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 700;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.recommended {
  border-color: rgba(22, 119, 217, 0.18);
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.82) 0%, #ffffff 34%);
}

.pricing-card.recommended::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-note {
  color: var(--text-faint);
  font-size: 14px;
}

.comparison-grid .compare-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.metric-row {
  display: grid;
  gap: 14px;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f6f9fc;
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.metric-item strong {
  font-size: 15px;
}

.metric-item span {
  color: var(--text-soft);
  font-size: 13px;
}

.case-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.case-cover {
  width: 100%;
  height: 158px;
  margin-bottom: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, rgba(31, 120, 209, 0.9) 0%, rgba(26, 169, 154, 0.9) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.case-cover.case-cover-cms {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #0f4f82 0%, #1f78d1 52%, #34b7aa 100%);
}

.case-cover.case-cover-miniapp {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #0d365e 0%, #1a6fc2 42%, #69b4ff 100%);
}

.case-cover.case-cover-rag {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #0f3848 0%, #1aa99a 44%, #58d6c7 100%);
}

.case-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  background: rgba(26, 169, 154, 0.1);
}

.scene-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.scene-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.scene-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.story-panel {
  background:
    linear-gradient(135deg, rgba(22, 119, 217, 0.06) 0%, rgba(20, 176, 170, 0.06) 100%),
    #ffffff;
}

.story-list {
  display: grid;
  gap: 14px;
}

.story-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.story-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.quote-card {
  background:
    linear-gradient(180deg, #0f2237 0%, #16334d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.quote-card h3,
.quote-card p,
.quote-card strong,
.quote-card span {
  color: #ffffff;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-card .quote-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-meta-row {
  margin-top: 28px;
}

.page-meta-item {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #f5f9fd;
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.page-meta-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-card,
.page-hero-card,
.hero-aside {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.split-hero {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.soft-panel {
  padding: 26px;
  border-radius: 24px;
  background: rgba(248, 251, 255, 0.88);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.soft-panel h3 {
  margin-bottom: 18px;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-row {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.info-row strong {
  display: block;
  margin-bottom: 8px;
}

.hero-tags,
.footer-links {
  align-items: flex-start;
}

.footer {
  position: relative;
  margin-top: 40px;
  color: #d6dfeb;
  background:
    radial-gradient(circle at top right, rgba(22, 119, 217, 0.2), transparent 22%),
    linear-gradient(180deg, #13273c 0%, #0e1d2d 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  padding-top: 52px;
  padding-bottom: 56px;
}

.footer .brand-copy,
.footer .brand-copy small,
.footer h4,
.footer a,
.footer p {
  color: inherit;
}

.footer-copy p {
  max-width: 560px;
  color: rgba(214, 223, 235, 0.76);
}

.footer-links {
  justify-content: flex-end;
}

.footer-links section {
  min-width: 180px;
}

.footer-links h4 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(214, 223, 235, 0.72);
}

.footer-links a:hover {
  color: #ffffff;
}

/* 鍏煎 index.html 浣跨敤鐨?footer 鍖哄潡缁撴瀯涓庢牱寮?*/
.footer {
  height: 173px;
  margin-top: 0;
  padding-top: 20px;
  color: rgba(223, 235, 255, 0.78);
  background: linear-gradient(180deg, #03172e 0%, #021126 100%);
}

.footer::before {
  content: none;
}

.footer > .wrap {
  width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 92px;
  max-width: 860px;
}

.footer h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.footer a,
.contact-row {
  display: block;
  color: rgba(219, 231, 250, 0.74);
  font-size: 12px;
  line-height: 1.85;
}

.footer a:hover {
  color: #ffffff;
}

.copyright {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 220px;
  color: rgba(223, 235, 255, 0.62);
  font-size: 11px;
  background: linear-gradient(180deg, #03172e 0%, #021126 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright a {
  color: rgba(223, 235, 255, 0.62);
}

.login-showcase {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(22, 119, 217, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  background: #f8fbfe;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: var(--radius-md);
}

.qr-box {
  width: 210px;
  height: 210px;
  margin: 0 auto 14px;
  border-radius: 22px;
  border: 10px solid #ffffff;
  background:
    linear-gradient(90deg, rgba(20, 32, 51, 0.08) 50%, transparent 50%),
    linear-gradient(rgba(20, 32, 51, 0.08) 50%, transparent 50%),
    #ffffff;
  background-size: 20px 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar nav {
  display: grid;
  gap: 10px;
}

.sidebar nav a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
}

.sidebar nav a.active,
.sidebar nav a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

/* PyCodev 瀹樼綉 V2 闈欐€佺珯 */
:root {
  --ps-blue: #2f70d0;
  --ps-blue-dark: #245fb4;
  --ps-blue-soft: #eef5ff;
  --ps-cyan: #4b90d9;
  --ps-orange: #d99a3a;
  --ps-ink: #1f2937;
  --ps-muted: #5f6b7a;
  --ps-faint: #98a2b3;
  --ps-line: #e5e7eb;
  --ps-bg: #f7f9fc;
  --ps-deep: #12345a;
  --ps-deep-2: #1d4f86;
  --ps-card: #ffffff;
  --ps-shadow: 0 18px 50px rgba(23, 32, 51, 0.08);
  --ps-shadow-soft: 0 10px 28px rgba(23, 32, 51, 0.06);
  --ps-radius: 16px;
}

.ps-site {
  margin: 0;
  color: var(--ps-ink);
  background: var(--ps-bg);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

.ps-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.ps-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.ps-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 234, 242, 0.78);
  backdrop-filter: blur(18px);
}

.ps-topbar.is-dark {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(7, 20, 38, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.minds-auth-page .ps-topbar.is-dark {
  position: sticky;
  background: rgba(7, 20, 38, 0.92);
}

.ps-topbar.is-dark.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(230, 234, 242, 0.88);
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.08);
}

.ps-topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ps-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.ps-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: var(--ps-blue);
  box-shadow: 0 10px 22px rgba(47, 112, 208, 0.2);
}

.ps-brand-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ps-topbar.is-dark .ps-brand-text,
.ps-topbar.is-dark .ps-nav a,
.ps-topbar.is-dark .ps-nav-trigger,
.ps-topbar.is-dark .ps-login {
  color: rgba(255, 255, 255, 0.86);
}

.ps-topbar.is-dark.is-scrolled .ps-brand-text {
  color: var(--ps-ink);
}

.ps-topbar.is-dark.is-scrolled .ps-nav a,
.ps-topbar.is-dark.is-scrolled .ps-nav-trigger,
.ps-topbar.is-dark.is-scrolled .ps-login {
  color: var(--ps-muted);
}

.ps-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-nav a,
.ps-nav-trigger {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ps-muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.ps-nav-trigger {
  display: inline-flex;
  align-items: center;
  border: 0;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.ps-nav-item {
  position: relative;
}

.ps-nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.82;
}

.ps-nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 172px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--ps-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--ps-shadow);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.ps-nav-item:hover .ps-nav-menu,
.ps-nav-item:focus-within .ps-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ps-nav-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.ps-nav a:hover,
.ps-nav a.active,
.ps-nav-trigger:hover,
.ps-nav-trigger.active {
  color: var(--ps-blue);
  background: var(--ps-blue-soft);
}

.ps-topbar.is-dark .ps-nav a:hover,
.ps-topbar.is-dark .ps-nav a.active,
.ps-topbar.is-dark .ps-nav-trigger:hover,
.ps-topbar.is-dark .ps-nav-trigger.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.ps-topbar.is-dark.is-scrolled .ps-nav a:hover,
.ps-topbar.is-dark.is-scrolled .ps-nav a.active,
.ps-topbar.is-dark.is-scrolled .ps-nav-trigger:hover,
.ps-topbar.is-dark.is-scrolled .ps-nav-trigger.active {
  color: var(--ps-blue);
  background: rgba(23, 107, 255, 0.09);
}

.ps-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-login {
  color: var(--ps-muted);
  font-size: 14px;
  font-weight: 800;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ps-btn:hover {
  transform: translateY(-1px);
}

.ps-btn-primary {
  color: #ffffff;
  background: var(--ps-blue);
  box-shadow: 0 12px 24px rgba(47, 112, 208, 0.18);
}

.ps-btn-primary:hover {
  background: var(--ps-blue-dark);
}

.ps-btn-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

.ps-btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.32);
}

.ps-btn-ghost {
  color: var(--ps-blue);
  background: var(--ps-blue-soft);
}

.ps-btn-ghost:hover {
  color: #ffffff;
  background: var(--ps-blue);
  box-shadow: 0 10px 22px rgba(47, 112, 208, 0.16);
}

.ps-btn-white {
  color: var(--ps-blue);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.ps-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(230, 234, 242, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.ps-nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ps-ink);
}

.ps-nav-toggle span + span {
  margin-top: 0;
}

.ps-hero {
  position: relative;
  min-height: 620px;
  padding: 108px 0 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(86, 148, 219, 0.28), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, var(--ps-deep) 0%, #1c4b80 58%, var(--ps-deep-2) 100%);
  overflow: hidden;
}

.ps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

.ps-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 42px;
}

.ps-hero-banner {
  min-height: 520px;
  padding: 132px 0 78px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(84, 143, 214, 0.28), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #12345a 0%, #1d5f9f 52%, #16406f 100%);
}

.ps-hero-banner::before {
  opacity: 0.12;
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.ps-hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 52, 90, 0.3) 100%);
  pointer-events: none;
}

.ps-hero-centered {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.ps-hero-copy {
  width: min(860px, 100%);
  margin: 0 auto;
}

.ps-hero-banner h1 {
  margin-top: 22px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.16;
}

.ps-hero-banner h1 span {
  color: #dcecff;
}

.ps-hero-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ps-hero-copy .ps-hero-actions {
  justify-content: center;
}

.ps-hero-copy .ps-hero-meta {
  margin-left: auto;
  margin-right: auto;
}

.ps-hero-beam {
  position: absolute;
  top: 84px;
  left: 64px;
  z-index: 1;
  width: min(520px, 46vw);
  height: 2px;
  transform: rotate(17deg);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(217, 235, 255, 0.7), rgba(255, 255, 255, 0));
  box-shadow: 0 0 14px rgba(217, 235, 255, 0.18);
  pointer-events: none;
}

.ps-hero-pulse {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  pointer-events: none;
}

.ps-hero-pulse-one {
  top: 82px;
  right: 12%;
}

.ps-hero-pulse-two {
  left: 11%;
  bottom: 18px;
  width: 150px;
  height: 150px;
  opacity: 0.72;
}

.ps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ps-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

.ps-hero h1 span {
  color: #7bb5ff;
}

.ps-hero p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.ps-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ps-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
}

.ps-hero-meta div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ps-hero-meta strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.ps-hero-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.ps-hero-console {
  position: relative;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.ps-hero-console::after {
  content: "";
  display: none;
  position: absolute;
  top: -12px;
  right: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(23, 107, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.ps-hero-window {
  padding: 18px;
  border-radius: 18px;
  color: var(--ps-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ps-shadow);
}

.ps-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(230, 234, 242, 0.8);
}

.ps-window-dots {
  display: inline-flex;
  gap: 7px;
}

.ps-window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d9e1ef;
}

.ps-window-title {
  color: var(--ps-muted);
  font-size: 12px;
  font-weight: 900;
}

.ps-ecosystem-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ps-map-card {
  position: relative;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--ps-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.ps-map-card::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ps-blue), transparent);
}

.ps-map-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ps-map-icon,
.ps-card-icon,
.ps-app-icon,
.ps-doc-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ps-blue);
  font-weight: 900;
  background: var(--ps-blue-soft);
  border: 1px solid #d8e7fb;
  box-shadow: none;
}

.ps-map-card h3 {
  margin: 12px 0 4px;
  font-size: 16px;
}

.ps-map-card p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ps-progress {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
}

.ps-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--ps-blue);
}

.ps-section {
  padding: 62px 0;
}

.ps-section-white {
  background: #ffffff;
  border-top: 1px solid rgba(230, 234, 242, 0.78);
  border-bottom: 1px solid rgba(230, 234, 242, 0.78);
}

.ps-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.ps-section-head.center {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ps-section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ps-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ps-section h2,
.ps-page-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: 0;
}

.ps-section-head p,
.ps-page-hero p {
  margin: 12px 0 0;
  color: var(--ps-muted);
}

.ps-grid-3,
.ps-grid-4 {
  display: grid;
  gap: 16px;
}

.ps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ps-card,
.ps-product-card,
.ps-app-card,
.ps-price-card,
.ps-doc-card,
.ps-panel {
  position: relative;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius);
  background: var(--ps-card);
  box-shadow: none;
  overflow: hidden;
}

.ps-product-card,
.ps-app-card,
.ps-price-card,
.ps-doc-card,
.ps-panel {
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ps-product-card,
.ps-app-card,
.ps-price-card {
  display: flex;
  flex-direction: column;
}

.ps-product-card::before,
.ps-app-card::before,
.ps-price-card::before,
.ps-doc-card::before {
  content: none;
}

.ps-product-card:hover,
.ps-app-card:hover,
.ps-price-card:hover,
.ps-doc-card:hover {
  transform: translateY(-2px);
  border-color: #c7d7ec;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
}

.ps-product-card h3,
.ps-app-card h3,
.ps-price-card h3,
.ps-doc-card h3,
.ps-panel h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  letter-spacing: 0;
}

.ps-product-card p,
.ps-app-card p,
.ps-price-card p,
.ps-doc-card p,
.ps-panel p {
  color: var(--ps-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ps-product-card .ps-link {
  margin-top: auto;
}

.ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.ps-tag {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ps-blue);
  background: var(--ps-blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.ps-link {
  color: var(--ps-blue);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ps-link::after {
  content: "鈫?;
  transition: transform 0.18s ease;
}

.ps-link:hover::after {
  transform: translateX(3px);
}

.ps-app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ps-app-meta {
  color: var(--ps-faint);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.ps-app-card .ps-btn {
  width: 100%;
  margin-top: auto;
}

.ps-path-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.ps-path-list {
  display: grid;
  gap: 14px;
}

.ps-path-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--ps-line);
}

.ps-path-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: var(--ps-blue);
}

.ps-doc-card {
  display: flex;
  gap: 16px;
}

.ps-page-hero {
  padding: 88px 0 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 10%, rgba(99, 154, 219, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ps-deep), #1b4e83 62%, var(--ps-deep-2));
}

.ps-page-hero .ps-container {
  max-width: 960px;
}

.ps-page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.ps-page-hero .ps-section-eyebrow {
  color: #94c5ff;
}

.ps-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.ps-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ps-muted);
  background: #ffffff;
  border: 1px solid var(--ps-line);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ps-filter.active {
  color: #ffffff;
  background: var(--ps-blue);
  border-color: var(--ps-blue);
}

.ps-search {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid var(--ps-line);
  border-radius: 999px;
  outline: none;
  color: var(--ps-ink);
  background: #ffffff;
}

.ps-price-card.recommended {
  border-color: #b9d2f2;
  box-shadow: 0 14px 32px rgba(47, 112, 208, 0.08);
}

.ps-product-card:nth-child(2n) .ps-card-icon,
.ps-app-card:nth-child(2n) .ps-app-icon,
.ps-doc-card:nth-child(2n) .ps-doc-icon {
  color: var(--ps-blue);
  background: var(--ps-blue-soft);
}

.ps-product-card:nth-child(3n) .ps-card-icon,
.ps-app-card:nth-child(3n) .ps-app-icon,
.ps-doc-card:nth-child(3n) .ps-doc-icon {
  color: var(--ps-blue);
  background: var(--ps-blue-soft);
}

.ps-price {
  margin: 14px 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.ps-price small {
  color: var(--ps-faint);
  font-size: 14px;
}

.ps-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.ps-consult-wechat {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.ps-consult-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
}

.ps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ps-muted);
  font-size: 14px;
}

.ps-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ps-blue);
}

.ps-table-wrap {
  overflow-x: auto;
}

.ps-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ps-table th,
.ps-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ps-line);
  text-align: left;
}

.ps-table th {
  color: var(--ps-muted);
  background: #f8fbff;
  font-size: 13px;
}

.ps-doc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.ps-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 16px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius);
  background: #ffffff;
}

.ps-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ps-muted);
  font-size: 14px;
  font-weight: 800;
}

.ps-sidebar a.active,
.ps-sidebar a:hover {
  color: var(--ps-blue);
  background: rgba(23, 107, 255, 0.08);
}

.ps-footer {
  padding: 38px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #071426;
}

.ps-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
}

.ps-footer h4 {
  margin: 0 0 12px;
  color: #ffffff;
}

.ps-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.ps-footer a:hover {
  color: #ffffff;
}














@media (max-width: 1040px) {
  .ps-hero-grid,
  .ps-path-grid,
  .ps-doc-layout {
    grid-template-columns: 1fr;
  }

  .ps-grid-4,
  .ps-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-sidebar {
    position: static;
  }
}

@media (max-width: 840px) {
  .ps-container {
    width: 100%;
    max-width: 100%;
  }

  .ps-container.ps-article-detail-shell {
    width: 100%;
    max-width: 100%;
  }

  .ps-topbar-inner {
    min-height: 64px;
  }

  .ps-nav-toggle {
    display: block;
  }

  .ps-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--ps-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--ps-shadow);
  }

  .ps-nav.is-open {
    display: grid;
  }

  .ps-topbar.is-dark .ps-nav a {
    color: var(--ps-muted);
  }

  .ps-nav-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ps-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .ps-nav-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0;
    display: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .ps-nav-item:hover .ps-nav-menu,
  .ps-nav-item:focus-within .ps-nav-menu {
    transform: none;
  }

  .ps-nav-item.is-open .ps-nav-menu {
    display: flex;
    flex-direction: column;
  }

  .ps-nav-menu a {
    padding: 8px 12px 8px 18px;
  }

  .ps-actions {
    gap: 8px;
  }

  .ps-login,
  .ps-ai-entry-chip,
  .ps-topbar.is-dark .ps-login,
  .ps-topbar.is-dark.is-scrolled .ps-login {
    display: none;
  }

  .ps-hero {
    min-height: auto;
    padding: 90px 0 44px;
  }

  .ps-hero-meta,
  .ps-grid-4,
  .ps-grid-3,
  .ps-footer-grid {
    grid-template-columns: 1fr;
  }

  .ps-section {
    padding: 10px;
  }

  .ps-section-head {
    display: block;
  }

  .ps-ecosystem-map {
    grid-template-columns: 1fr;
  }

  .ps-map-card.wide {
    grid-column: auto;
    display: block;
  }

}

/* PyCodev 瀹樼綉 UI 璁捐瀹炵幇鏀舵暃灞?*/
:root {
  --ps-radius: 8px;
  --ps-shadow: 0 14px 32px rgba(23, 32, 51, 0.07);
}

.ps-site {
  background: #f6f8fc;
}

.ps-product-card,
.ps-app-card,
.ps-price-card,
.ps-doc-card,
.ps-panel,
.ps-sidebar,
.ps-account-menu,
.ps-metric,

.ps-map-icon,
.ps-card-icon,
.ps-app-icon,
.ps-doc-icon,
.ps-path-num,
.ps-brand-mark {
  border-radius: 8px;
}

.ps-btn,
.ps-filter,
.ps-search,
.ps-tag,
.ps-kicker {
  border-radius: 6px;
}

.ps-product-card,
.ps-app-card,
.ps-price-card,
.ps-doc-card,
.ps-panel {
  border-color: #e3e9f2;
  box-shadow: none;
}

.ps-product-card:hover,
.ps-app-card:hover,
.ps-price-card:hover,
.ps-doc-card:hover {
  border-color: #c7d7ec;
  box-shadow: var(--ps-shadow);
}

.ps-section-head p {
  max-width: 760px;
}

.ps-section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.ps-table th {
  color: #334155;
  background: #f5f8fc;
}



/* PyCodev 瀹樼綉缁熶竴椋庢牸鏀跺彛 */
.ps-site {
  background: #ffffff;
}

.motion-card {
  --motion-visible-transform: none;
  --motion-hidden-transform: translate3d(0, 22px, 0) scale(0.985);
  opacity: 0;
  transform: var(--motion-hidden-transform);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform, opacity;
}

.motion-card.is-visible {
  opacity: 1;
  transform: var(--motion-visible-transform);
}

.motion-hover {
  --motion-hover-transform: translate3d(0, -6px, 0);
  --motion-hover-shadow: 0 22px 40px rgba(11, 38, 72, 0.12);
}

.motion-hover.is-visible:hover,
.motion-hover.is-visible:focus-within {
  transform: var(--motion-hover-transform);
  box-shadow: var(--motion-hover-shadow);
}

.ps-page {
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 0;
}


.ps-container {
  width: 1240px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.ps-topbar,
.ps-topbar.is-dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 52px;
  color: #dbe9ff;
  background: #020817;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  box-shadow: none;
}

.ps-topbar.is-dark.is-scrolled {
  background: #020817;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.ps-topbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ps-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-logo,
.ps-brand-logo {
  display: block;
  width: auto;
  height: 50px;
}

.ps-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  background: linear-gradient(135deg, #2089ff 0%, #225df2 100%);
  box-shadow: 0 0 18px rgba(38, 128, 255, 0.4);
}

.ps-brand-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.ps-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.ps-nav a,
.ps-nav-trigger,
.ps-topbar.is-dark .ps-nav a,
.ps-topbar.is-dark .ps-nav-trigger,
.ps-topbar.is-dark.is-scrolled .ps-nav a,
.ps-topbar.is-dark.is-scrolled .ps-nav-trigger {
  position: relative;
  height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.ps-nav-trigger {
  cursor: pointer;
}

.ps-nav a:hover,
.ps-nav-trigger:hover,
.ps-topbar.is-dark .ps-nav a:hover,
.ps-topbar.is-dark .ps-nav-trigger:hover,
.ps-topbar.is-dark.is-scrolled .ps-nav a:hover,
.ps-topbar.is-dark.is-scrolled .ps-nav-trigger:hover {
  color: #ffffff;
  background: transparent;
}

.ps-nav a.active,
.ps-nav-trigger.active,
.ps-topbar.is-dark .ps-nav a.active,
.ps-topbar.is-dark .ps-nav-trigger.active,
.ps-topbar.is-dark.is-scrolled .ps-nav a.active {
  color: #ffffff;
  background: transparent;
}

.ps-nav a.active::after,
.ps-nav-trigger.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: #2d8cff;
  transform: translateX(-50%);
}

.ps-nav-trigger.active::before {
  pointer-events: none;
}

.ps-nav-item {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.ps-nav-menu {
  top: calc(100% - 2px);
  min-width: 168px;
  border: 1px solid rgba(82, 133, 207, 0.24);
  border-radius: 12px;
  background: rgba(2, 17, 38, 0.98);
  box-shadow: 0 18px 42px rgba(2, 11, 28, 0.32);
  z-index: 20;
}

.ps-nav-menu a {
  height: auto;
  padding: 10px 12px;
  border-radius: 8px;
  color: #ffffff;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.ps-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ps-actions {
  min-width: 190px;
  justify-content: flex-end;
  gap: 14px;
}

.ps-login,
.ps-topbar.is-dark .ps-login,
.ps-topbar.is-dark.is-scrolled .ps-login {
  min-width: 66px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 133, 207, 0.48);
  border-radius: 6px;
  color: #dbe9ff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(9, 31, 67, 0.72);
}

.ps-btn {
  min-width: 66px;
  height: 30px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.ps-btn-primary {
  color: #ffffff;
  border-color: #1e73f0;
  background: #1677ff;
  box-shadow: 0 8px 22px rgba(22, 119, 255, 0.28);
}

.ps-traffic {
  min-width: 104px;
  height: 30px;
  padding: 0 8px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(82, 133, 207, 0.48);
  border-radius: 6px;
  color: rgba(219, 233, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  background: rgba(9, 31, 67, 0.72);
  white-space: nowrap;
}

.ps-traffic strong {
  min-width: 38px;
  height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background: #ff4d4f;
}

@keyframes psAiEntryFlicker {
  0%,
  100% {
    opacity: 0.92;
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(96, 194, 255, 0.34));
  }

  25% {
    opacity: 1;
    transform: scale(1.06);
    filter: drop-shadow(0 0 14px rgba(96, 194, 255, 0.58));
  }

  55% {
    opacity: 0.78;
    transform: scale(0.97);
    filter: drop-shadow(0 0 6px rgba(96, 194, 255, 0.2));
  }

  78% {
    opacity: 1;
    transform: scale(1.04);
    filter: drop-shadow(0 0 16px rgba(96, 194, 255, 0.62));
  }
}

.ps-ai-entry-chip {
  width: 40px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8f5ff;
  text-decoration: none;
}

.ps-ai-entry-chip:hover,
.ps-ai-entry-chip:focus-visible {
  color: #ffffff;
}

.ps-ai-entry-chip-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fe6ff;
  animation: psAiEntryFlicker 1.35s steps(6, end) infinite;
}

.ps-ai-entry-chip-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 198, 255, 0.28) 0%, rgba(88, 198, 255, 0.08) 45%, rgba(88, 198, 255, 0) 72%);
  z-index: -1;
}

.ps-ai-entry-chip-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.ps-btn-ghost {
  color: #1677ff;
  background: #ffffff;
  border-color: #d6e4f7;
}

.ps-nav-toggle {
  width: 30px;
  height: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(82, 133, 207, 0.48);
  border-radius: 6px;
  background: rgba(9, 31, 67, 0.72);
}

.ps-nav-toggle span {
  width: 14px;
  background: #dbe9ff;
}

.ps-page-hero {
  position: relative;
  margin-top: -52px;
  padding-top: 52px;
  height: 520px;
  overflow: hidden;
  color: #ffffff;
  background: #031225 url("../images/pycodev/banner.png") center center / cover no-repeat;
}

.ps-page-hero::before {
  content: none;
}

.ps-page-hero .ps-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  padding-top: 104px;
}

.ps-page-hero h1 {
  max-width: 780px;
}

.ps-page-hero p {
  max-width: 760px;
  color: rgba(228, 238, 255, 0.82);
  font-size: 15px;
}

.ps-page-hero .ps-section-eyebrow {
  color: #8cc0ff;
}

.ps-section {
  padding: 8px 0;
}

.ps-section-white {
  background: #ffffff;
  border-top: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;
}

.ps-product-card,
.ps-app-card,
.ps-price-card,
.ps-doc-card,
.ps-panel,
.ps-sidebar,
.ps-account-menu,

.ps-product-card:hover,
.ps-app-card:hover,
.ps-price-card:hover,
.ps-doc-card:hover {
  border-color: #d8e4f4;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.ps-filter,
.ps-search,
.ps-tag {
  border-radius: 6px;
}

.ps-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-color: #e5edf7;
  background: #ffffff;
  text-decoration: none;
}

.ps-filter.active {
  background: #1677ff;
  border-color: #1677ff;
}

.ps-search {
  height: 40px;
  border-color: #e5edf7;
}

.ps-footer {
  padding: 28px 0 0;
  color: rgba(223, 235, 255, 0.78);
  background: linear-gradient(180deg, #03172e 0%, #021126 100%);
}

.ps-footer-grid {
  width: 1240px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ps-footer h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.ps-footer p,
.ps-footer a {
  color: rgba(219, 231, 250, 0.74);
  font-size: 12px;
  line-height: 1.85;
}

.ps-footer a {
  margin: 0;
}


@media (max-width: 1120px) {
  .ps-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .ps-page {
    padding-top: 0;
  }

  .page-shell.minds-shell {
    padding-top: 76px;
  }

  .ps-container,
  .ps-footer-grid {
    width: 100%;
    max-width: 100%;
  }

  .ps-container.ps-article-detail-shell {
    width: 100%;
    max-width: 100%;
  }

  .ps-topbar,
  .ps-topbar.is-dark {
    height: 64px;
  }

  .ps-topbar-inner {
    position: relative;
    min-height: 64px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .ps-actions {
    min-width: 0;
    gap: 8px;
  }

  .ps-login,
  .ps-topbar.is-dark .ps-login,
  .ps-topbar.is-dark.is-scrolled .ps-login {
    display: none;
  }

  .ps-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ps-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    height: auto;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(2, 17, 38, 0.98);
    box-shadow: 0 18px 42px rgba(2, 11, 28, 0.32);
  }

  .ps-nav.is-open {
    display: flex;
    width: 70%;
  }

  .ps-nav a,
  .ps-nav-trigger,
  .ps-topbar.is-dark .ps-nav a,
  .ps-topbar.is-dark .ps-nav-trigger,
  .ps-topbar.is-dark.is-scrolled .ps-nav a,
  .ps-topbar.is-dark.is-scrolled .ps-nav-trigger {
    height: auto;
    padding: 10px 12px;
    border-radius: 8px;
    color: #ffffff;
    background: transparent;
  }

  .ps-nav a:hover,
  .ps-nav-trigger:hover,
  .ps-topbar.is-dark .ps-nav a:hover,
  .ps-topbar.is-dark .ps-nav-trigger:hover,
  .ps-topbar.is-dark.is-scrolled .ps-nav a:hover,
  .ps-topbar.is-dark.is-scrolled .ps-nav-trigger:hover {
    color: #ffffff;
    background: transparent;
  }

  .ps-nav a.active,
  .ps-nav-trigger.active,
  .ps-topbar.is-dark .ps-nav a.active,
  .ps-topbar.is-dark .ps-nav-trigger.active,
  .ps-topbar.is-dark.is-scrolled .ps-nav a.active {
    color: #ffffff;
    background: transparent;
  }

  .ps-nav a.active::after,
  .ps-nav-trigger.active::before {
    display: none;
  }

  .ps-nav-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ps-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .ps-nav-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 6px 0 0;
    display: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .ps-nav-item:hover .ps-nav-menu,
  .ps-nav-item:focus-within .ps-nav-menu {
    transform: none;
  }

  .ps-nav-item.is-open .ps-nav-menu {
    display: flex;
    flex-direction: column;
  }

  .ps-nav-menu a {
    padding: 8px 12px 8px 18px;
    color: rgba(255, 255, 255, 0.82);
  }

  .ps-footer-grid {
    grid-template-columns: 1fr;
  }

  .ps-page-hero {
    margin-top: -76px;
    padding-top: 76px;
    height: auto;
    padding-bottom: 56px;
  }

  .ps-page-hero .ps-container {
    padding-top: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .ps-page-hero h1 {
    max-width: none;
    font-size: 30px;
    line-height: 1.24;
  }

  .ps-page-hero p {
    max-width: none;
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 560px) {
  .ps-traffic {
    display: none;
  }

  .ps-brand {
    min-width: 0;
  }

  .ps-brand-logo {
    max-width: min(42vw, 150px);
    height: auto;
    max-height: 38px;
  }

  .ps-page-hero h1 {
    font-size: 26px;
  }

  .ps-page-hero p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-card,
  .motion-hover {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ps-news-highlight,
.ps-news-card,
.ps-article-card,
.ps-article-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(18, 38, 60, 0.08);
}

.ps-news-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 26px;
  padding: 28px;
  margin-bottom: 28px;
}

.ps-news-cover {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 98, 179, 0.92), rgba(20, 176, 170, 0.82)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 42%);
}

.ps-news-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ps-news-content,
.ps-news-body {
  display: flex;
  flex-direction: column;
}

.ps-news-badge-row,
.ps-news-meta,
.ps-article-meta,
.ps-article-toolbar,
.ps-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.ps-news-badge,
.ps-article-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 119, 217, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.ps-news-meta,
.ps-article-meta {
  color: var(--text-soft);
  font-size: 13px;
}

.ps-article-meta {
  flex: 1 1 0;
  min-width: 0;
}

.ps-article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 13px;
}

.ps-article-breadcrumb a:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ps-article-breadcrumb a:first-of-type::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3.2 3.5 10v10.3c0 .7.5 1.2 1.2 1.2h5.3v-6.2h4v6.2h5.3c.7 0 1.2-.5 1.2-1.2V10L12 3.2Zm0-1.5 10 8v10.6c0 1.5-1.2 2.7-2.7 2.7h-6.8v-6.2h-1V23H4.7C3.2 23 2 21.8 2 20.3V9.7l10-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3.2 3.5 10v10.3c0 .7.5 1.2 1.2 1.2h5.3v-6.2h4v6.2h5.3c.7 0 1.2-.5 1.2-1.2V10L12 3.2Zm0-1.5 10 8v10.6c0 1.5-1.2 2.7-2.7 2.7h-6.8v-6.2h-1V23H4.7C3.2 23 2 21.8 2 20.3V9.7l10-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.8;
}

.ps-article-breadcrumb-sep {
  opacity: 0.56;
}

.ps-article-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  line-height: 1.34;
}

.ps-news-highlight h2,
.ps-news-card h3,
.ps-article-card h1,
.ps-article-side-card h3 {
  margin-bottom: 14px;
  color: var(--text);
}

.ps-news-highlight h2 {
  font-size: 34px;
  line-height: 1.28;
}

.ps-news-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.ps-news-card .ps-news-cover {
  min-height: 196px;
}

.ps-news-card p,
.ps-news-highlight p,
.ps-article-side-card p {
  color: var(--text-soft);
}

.ps-article-content p,
.ps-article-content li,
.ps-article-content div,
.ps-article-content span,
.ps-article-richtext p,
.ps-article-richtext li,
.ps-article-richtext div,
.ps-article-richtext span {
  color: inherit;
}

.ps-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.ps-news-link,
.ps-article-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.ps-news-title-link {
  color: inherit;
  transition: color 0.2s ease;
}

.ps-news-title-link:hover {
  color: var(--primary);
}

.ps-news-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.ps-news-list-head p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
}

.ps-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.ps-article-detail-shell {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.ps-container.ps-article-detail-shell {
  width: min(1258px, calc(100% - 48px));
  max-width: 1258px;
}

.ps-article-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 20px;
  padding: 0 18px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.ps-article-detail-back:hover {
  color: var(--primary);
  border-color: rgba(22, 119, 217, 0.18);
  box-shadow: 0 16px 36px rgba(18, 38, 60, 0.08);
}

.ps-article-detail-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(18, 38, 60, 0.08);
}

.ps-article-detail-head {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-article-detail-head h2 {
  margin: 14px 0 20px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.34;
}

.ps-article-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.ps-article-detail-facts div {
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.9);
}

.ps-article-detail-facts dt {
  margin: 0 0 8px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
}

.ps-article-detail-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.ps-article-detail-cover {
  min-height: 280px;
  margin: 28px 0 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(10, 52, 99, 0.92), rgba(22, 119, 217, 0.82)),
    radial-gradient(circle at 18% 24%, rgba(127, 198, 255, 0.3), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(20, 176, 170, 0.24), transparent 30%);
}

.ps-article-detail-summary {
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid rgba(22, 119, 217, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 119, 217, 0.06), rgba(22, 119, 217, 0.02));
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.ps-article-detail-section + .ps-article-detail-section {
  margin-top: 28px;
}

.ps-article-detail-section h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
}

.ps-article-detail-section p,
.ps-article-detail-section li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
}

.ps-article-detail-section ul {
  margin: 0;
  padding-left: 20px;
}

.ps-article-detail-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  background: rgba(247, 250, 253, 0.95);
  color: var(--text);
}

.ps-article-detail-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-article-detail-nav a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.92);
  transition: 0.2s ease;
}

.ps-article-detail-nav a:hover {
  border-color: rgba(22, 119, 217, 0.18);
  box-shadow: 0 18px 36px rgba(18, 38, 60, 0.08);
}

.ps-article-detail-nav span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
}

.ps-article-detail-nav strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.ps-article-detail-tags {
  margin-top: 24px;
}

.ps-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.ps-page-btn {
  min-width: 42px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.ps-page-btn:hover:not(:disabled),
.ps-page-btn.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 14px 30px rgba(22, 119, 217, 0.2);
}

.ps-page-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.ps-article-card {
  padding: 34px;
}

.ps-article-toolbar {
  justify-content: space-between;
  padding: 18px 0 26px;
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-article-stats {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.ps-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.ps-share-btn:hover {
  color: var(--primary);
  border-color: rgba(22, 119, 217, 0.22);
  background: rgba(22, 119, 217, 0.05);
}

.ps-article-content {
  padding-top: 28px;
}

.ps-article-detail-shell .ps-article-content,
.ps-article-detail-shell .ps-article-richtext {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: visible;
  overflow-y: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ps-article-detail-shell .ps-article-content *,
.ps-article-detail-shell .ps-article-richtext * {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.ps-article-detail-shell .ps-article-content :where(p, div, section, article, figure, blockquote, ul, ol, li, dl, dt, dd),
.ps-article-detail-shell .ps-article-richtext :where(p, div, section, article, figure, blockquote, ul, ol, li, dl, dt, dd) {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ps-article-detail-shell .ps-article-content span,
.ps-article-detail-shell .ps-article-richtext span {
  display: inline;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ps-article-detail-shell .ps-article-content [style*="width"],
.ps-article-detail-shell .ps-article-richtext [style*="width"],
.ps-article-detail-shell .ps-article-content [style*="min-width"],
.ps-article-detail-shell .ps-article-richtext [style*="min-width"] {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.ps-article-detail-shell .ps-article-content [style*="white-space"],
.ps-article-detail-shell .ps-article-richtext [style*="white-space"] {
  white-space: normal !important;
}

.ps-article-detail-shell .ps-article-content img,
.ps-article-detail-shell .ps-article-content video,
.ps-article-detail-shell .ps-article-content canvas,
.ps-article-detail-shell .ps-article-content svg,
.ps-article-detail-shell .ps-article-richtext img,
.ps-article-detail-shell .ps-article-richtext video,
.ps-article-detail-shell .ps-article-richtext canvas,
.ps-article-detail-shell .ps-article-richtext svg {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

.ps-article-detail-shell .ps-article-content iframe,
.ps-article-detail-shell .ps-article-richtext iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 200px;
  border: 0;
}

.ps-article-detail-shell .ps-article-content table,
.ps-article-detail-shell .ps-article-richtext table {
  border: 1px solid #d4cfcf !important;
  border-collapse: collapse;
}

.ps-article-detail-shell .ps-article-content table td,
.ps-article-detail-shell .ps-article-content table th,
.ps-article-detail-shell .ps-article-richtext table td,
.ps-article-detail-shell .ps-article-richtext table th {
  border: 1px solid #d4cfcf !important;
}

.ps-article-detail-shell .ps-article-content pre,
.ps-article-detail-shell .ps-article-richtext pre {
  max-width: 100% !important;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  -webkit-overflow-scrolling: touch;
}

.ps-article-detail-shell .ps-article-content a,
.ps-article-detail-shell .ps-article-content code,
.ps-article-detail-shell .ps-article-richtext a,
.ps-article-detail-shell .ps-article-richtext code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ps-article-hero {
  position: relative;
  min-height: 260px;
  margin: 22px 0 26px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 52, 99, 0.92), rgba(22, 119, 217, 0.82)),
    radial-gradient(circle at 16% 24%, rgba(127, 198, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(20, 176, 170, 0.24), transparent 30%);
}

.ps-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.14;
}

.ps-article-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 30px;
}

.ps-article-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.ps-article-hero-title {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.3;
}

.ps-article-lead {
  margin: 10px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(22, 119, 217, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 119, 217, 0.06), rgba(22, 119, 217, 0.02));
  color: var(--text);
}

.ps-article-outline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.ps-article-outline-item {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.9);
}

.ps-article-outline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.ps-article-outline-item span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.ps-article-content h2 {
  margin: 28px 0 14px;
  font-size: 24px;
}

.ps-article-content ul {
  color: var(--text-soft);
}

.ps-article-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-article-side-card {
  padding: 24px;
}

.ps-article-side-card ul {
  padding-left: 18px;
  color: var(--text-soft);
}

.ps-article-side-card li + li {
  margin-top: 10px;
}

.ps-article-side-meta {
  display: grid;
  gap: 14px;
}

.ps-article-side-meta-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-article-side-meta-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ps-article-side-meta-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.ps-article-side-meta-item span {
  color: var(--text-soft);
  font-size: 13px;
}

.ps-article-more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-article-more a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.92);
  transition: 0.2s ease;
}

.ps-article-more a:hover {
  border-color: rgba(22, 119, 217, 0.18);
  box-shadow: 0 18px 36px rgba(18, 38, 60, 0.08);
}

.ps-article-more span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
}

.ps-article-more strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.ps-share-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 19, 33, 0.5);
  backdrop-filter: blur(8px);
}

.ps-share-modal[hidden] {
  display: none !important;
}

.ps-share-dialog {
  width: min(100%, 420px);
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(18, 38, 60, 0.22);
}

.ps-share-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ps-share-dialog-head h3 {
  margin-bottom: 10px;
}

.ps-share-dialog-head p {
  margin: 0;
  color: var(--text-soft);
}

.ps-share-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 32, 51, 0.06);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.ps-share-qr-wrap {
  margin: 24px 0 18px;
  display: grid;
  place-items: center;
  gap: 12px;
}

.ps-share-qr-wrap img {
  width: 220px;
  height: 220px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.ps-share-link-row {
  display: flex;
  gap: 10px;
}

.ps-share-link-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 14px;
  color: var(--text);
  background: rgba(247, 250, 253, 0.9);
}

.ps-share-copy {
  min-width: 108px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.ps-share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 140;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 19, 33, 0.9);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.ps-share-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.is-share-open {
  overflow: hidden;
}

.floating-ai-entry {
  position: fixed;
  right: max(24px, calc(env(safe-area-inset-right, 0px) + 16px));
  bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 22px));
  z-index: 260;
  min-width: 188px;
  min-height: 58px;
  max-width: calc(100vw - 28px);
  padding: 10px 18px 10px 12px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(116, 170, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(149, 234, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(8, 28, 60, 0.96) 0%, rgba(16, 58, 110, 0.96) 55%, rgba(41, 54, 146, 0.94) 100%);
  box-shadow:
    0 22px 44px rgba(4, 15, 35, 0.34),
    0 0 0 1px rgba(148, 212, 255, 0.08) inset;
  overflow: hidden;
  isolation: isolate;
  display: none;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.floating-ai-entry::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  opacity: 0.72;
  z-index: -2;
}

.floating-ai-entry::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -40%;
  width: 42%;
  height: 170%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  opacity: 0;
  transition: left 0.48s ease, opacity 0.24s ease;
  pointer-events: none;
}

.floating-ai-entry:hover,
.floating-ai-entry:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(149, 234, 255, 0.56);
  box-shadow:
    0 28px 56px rgba(4, 15, 35, 0.42),
    0 0 0 1px rgba(148, 212, 255, 0.14) inset,
    0 0 34px rgba(59, 143, 255, 0.22);
}

.floating-ai-entry:hover::after,
.floating-ai-entry:focus-visible::after {
  left: 112%;
  opacity: 1;
}

.ai-entry-orbit {
  position: absolute;
  inset: -18px auto auto -6px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(141, 231, 255, 0.18) 0%, rgba(141, 231, 255, 0.04) 42%, transparent 68%),
    conic-gradient(from 180deg, rgba(141, 231, 255, 0.12), transparent 34%, rgba(109, 107, 255, 0.16), transparent 74%, rgba(141, 231, 255, 0.08));
  pointer-events: none;
  z-index: -1;
}

.ai-entry-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(157, 239, 255, 0.34), rgba(28, 86, 176, 0.14) 50%, rgba(8, 20, 53, 0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(156, 228, 255, 0.16) inset,
    0 12px 26px rgba(8, 20, 53, 0.24);
}

.ai-entry-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.ai-entry-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ai-entry-copy strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ai-entry-copy em {
  color: rgba(226, 239, 255, 0.78);
  font-size: 11px;
  font-style: normal;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .ps-news-highlight,
  .ps-news-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }




  .ps-article-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 679px) {
  .floating-ai-entry {
    right: max(16px, calc(env(safe-area-inset-right, 0px) + 12px));
    left: auto;
    top: 50%;
    bottom: auto;
    min-width: 0;
    min-height: 48px;
    max-width: calc(100vw - 32px);
    display: inline-flex;
    justify-content: flex-start;
    padding: 8px 12px 8px 10px;
    gap: 9px;
    transform: translateY(-50%);
  }

  .floating-ai-entry:hover,
  .floating-ai-entry:focus-visible {
    transform: translateY(-50%);
  }

  .ai-entry-orbit {
    display: none;
  }

  .ai-entry-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .ai-entry-icon svg {
    width: 20px;
    height: 20px;
  }

  .ai-entry-copy strong {
    font-size: 13px;
  }

  .ai-entry-copy em {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer > .wrap {
    max-width: calc(100% - 28px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copyright {
    height: auto;
    padding: 10px;
    gap: 16px;
    flex-direction: column;
  }

  .ps-news-highlight,
  .ps-article-card,
  .ps-article-side-card,
  .ps-article-detail-card {
    padding: 20px;
  }











  .ps-article-detail-back {
    margin-bottom: 16px;
  }

  .ps-article-detail-head h2 {
    font-size: 28px;
  }

  .ps-article-detail-facts,
  .ps-article-detail-nav {
    grid-template-columns: 1fr;
  }

  .ps-article-detail-cover {
    min-height: 220px;
    margin-top: 22px;
  }

  .ps-article-hero-inner {
    padding: 22px;
  }

  .ps-article-outline,
  .ps-article-more {
    grid-template-columns: 1fr;
  }

  .ps-news-highlight h2,
  .ps-article-card h1 {
    font-size: 28px;
  }

  .ps-article-hero-title {
    font-size: 28px;
  }

  .ps-article-detail-shell .ps-article-head h3 {
    font-size: 24px;
  }

  .ps-article-detail-shell .ps-article-toolbar {
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .ps-article-detail-shell .ps-article-stats {
    width: auto;
    margin-left: auto;
  }

  .ps-article-detail-shell .ps-article-lead {
    padding: 16px;
  }

  .ps-article-content {
    font-size: 15px;
    line-height: 1.8;
  }

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

  .ps-article-content iframe {
    min-height: 200px;
  }

  .ps-article-detail-shell .ps-article-richtext,
  .ps-article-detail-shell .ps-article-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .ps-article-detail-shell .ps-article-richtext h2,
  .ps-article-detail-shell .ps-article-content h2 {
    font-size: 22px;
  }

  .ps-article-detail-shell .ps-article-breadcrumb {
    display: none;
  }

  .ps-share-link-row {
    flex-direction: column;
  }

  .ps-share-copy {
    width: 100%;
  }

  .floating-ai-entry {
    right: max(12px, calc(env(safe-area-inset-right, 0px) + 10px));
    left: auto;
    top: auto;
    bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    min-width: 0;
    min-height: 46px;
    max-width: 56px;
    padding: 8px;
    gap: 0;
    border-radius: 16px;
    transform: none;
  }

  .floating-ai-entry:hover,
  .floating-ai-entry:focus-visible {
    transform: none;
  }

  .ai-entry-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .ai-entry-icon svg {
    width: 18px;
    height: 18px;
  }

  .ai-entry-copy strong {
    font-size: 13px;
  }

  .ai-entry-copy {
    display: none;
  }

  .ai-entry-copy em {
    display: none;
  }
}


/* index-footer-responsive-override */
@media (max-width: 1120px) {
  .footer {
    height: auto;
    padding-bottom: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 92px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .footer > .wrap {
    max-width: calc(100% - 28px);
  }

  .copyright {
    height: auto;
    padding: 10px;
    gap: 16px;
    flex-direction: column;
  }
}


