:root {
  --bg: #f7f9fe;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.62);
  --text: #20314e;
  --text-soft: #5f708d;
  --text-faint: #7f8ea6;
  --border: rgba(125, 150, 191, 0.16);
  --border-strong: rgba(125, 150, 191, 0.28);
  --shadow: 0 24px 70px rgba(133, 160, 201, 0.18);
  --shadow-soft: 0 18px 40px rgba(140, 168, 207, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1220px;
  --primary: #688df1;
  --primary-strong: #4f72d1;
  --primary-soft: rgba(104, 141, 241, 0.12);
  --accent: #ffb783;
  --green: #7ec9b1;
  --pink: #e0b0d4;
  --gold: #efc98f;
  --header-height: 88px;
  --ease: 0.3s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 193, 137, 0.22), transparent 18%),
    radial-gradient(circle at 90% 6%, rgba(124, 163, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9ff 48%, #f5f8fe 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(156, 199, 255, 0.18), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(255, 191, 136, 0.14), transparent 24%),
    radial-gradient(circle at 54% 78%, rgba(166, 219, 202, 0.13), transparent 22%);
  filter: blur(18px);
  z-index: -1;
}

body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
button:disabled { opacity: 0.65; cursor: not-allowed; }
#app { min-height: 100vh; }

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

.glass,
.glass-soft {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.glass {
  background: var(--surface);
}

.glass-soft {
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.page-shell {
  padding-top: calc(var(--header-height) + 26px);
}

.section {
  position: relative;
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.section-soft::before {
  content: '';
  position: absolute;
  inset: 40px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(247,250,255,0.2));
  pointer-events: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(104, 141, 241, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title {
  margin: 18px 0 0;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 760px;
  text-wrap: balance;
}

.section-desc {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.title-balance { text-wrap: balance; }

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
  font-weight: 700;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 30px rgba(92, 121, 214, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.84);
  border-color: var(--border);
}

.btn-rainbow {
  color: #17335f;
  border-color: rgba(255,255,255,0.58);
  background: linear-gradient(110deg, #ffffff 0%, #f6fbff 16%, #dfe9ff 32%, #ffe3cc 50%, #f4d8ff 68%, #e3fff6 84%, #ffffff 100%);
  background-size: 220% 100%;
  animation: rainbowShift 8s linear infinite;
  box-shadow: 0 18px 36px rgba(134, 163, 223, 0.24);
}

.btn-rainbow::before,
.btn-hover-light::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: 0;
}

.btn-rainbow::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,250,255,0.72));
}

.btn-hover-light {
  color: var(--text);
  border-color: rgba(117, 143, 188, 0.18);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 28px rgba(149, 173, 209, 0.14);
}

.btn-hover-light::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.78), rgba(255,255,255,0.36));
  transition: transform var(--ease), opacity var(--ease);
}

.btn-hover-light::after {
  content: '';
  position: absolute;
  left: -40%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.76), transparent);
  transform: skewX(-24deg);
  transition: left 0.6s ease;
}

.btn-hover-light:hover::after {
  left: 118%;
}

.badge,
.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 150, 191, 0.14);
  background: rgba(255,255,255,0.82);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero-chip {
  background: rgba(255,255,255,0.9);
  color: var(--text);
}

.hero-badge-solid {
  background: rgba(255,255,255,0.96);
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(125, 150, 191, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(246,249,255,0.98));
  border: 1px solid rgba(125, 150, 191, 0.16);
  box-shadow: 0 14px 28px rgba(136, 161, 202, 0.16);
  overflow: hidden;
}

.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-wrap,
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.nav-link:hover,
.nav-link.router-link-active {
  color: var(--text);
  background: rgba(104, 141, 241, 0.08);
}

.desktop-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-sheet { display: none; }

.hero {
  padding: 24px 0 22px;
}

.hero-modern {
  overflow: clip;
}

.hero-aurora {
  position: absolute;
  inset: -120px -5% auto;
  height: 680px;
  pointer-events: none;
  z-index: 0;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: drift 16s ease-in-out infinite;
}

.aurora-a {
  left: 2%;
  top: 80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(128, 177, 255, 0.5), rgba(128, 177, 255, 0.06) 70%);
}

.aurora-b {
  right: 6%;
  top: 10px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 201, 147, 0.44), rgba(255, 201, 147, 0.05) 68%);
  animation-delay: -4s;
}

.aurora-c {
  left: 38%;
  top: 180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(163, 220, 202, 0.36), rgba(163, 220, 202, 0.04) 70%);
  animation-delay: -8s;
}

.hero-shell {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding: 14px 0 8px;
}

.hero-kicker {
  background: rgba(255,255,255,0.9);
}

.hero-brandline {
  margin-top: 20px;
  color: var(--text-faint);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 20px 0 0;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(44px, 6.6vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 680px;
}

.title-line {
  display: block;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }

.hero-subtitle {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.95;
}

.hero-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(125, 150, 191, 0.12);
  box-shadow: 0 16px 34px rgba(144, 169, 207, 0.12);
}

.stat-value {
  display: block;
  color: var(--primary-strong);
  font-size: 34px;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-visual-frame {
  position: relative;
  min-height: 610px;
  border-radius: 32px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(245,249,255,0.68));
}

.pattern-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(104,141,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104,141,241,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 96%);
  pointer-events: none;
}

.spline-shell {
  position: absolute;
  inset: 18px 18px 92px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 162, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 189, 134, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(236,244,255,0.98));
  border: 1px solid rgba(125, 150, 191, 0.16);
}

.spline-shell spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
}

.spline-shell::part(logo),
.spline-shell::part(badge) {
  display: none !important;
}

.spline-watermark-mask {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 170px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248,251,255,0.94), rgba(248,251,255,0.98));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
  pointer-events: none;
}

.robot-note-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(125,150,191,0.14);
  box-shadow: 0 18px 30px rgba(140, 166, 204, 0.14);
}

.robot-note-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(104,141,241,0.08);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.robot-note-card h3 {
  margin: 14px 0 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  line-height: 1.18;
}

.robot-note-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-chip-panel {
  padding: 16px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(125,150,191,0.12);
  background: rgba(255,255,255,0.86);
}

.hero-chip-panel-title {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-chip-panel-row {
  margin-top: 12px;
}

.marquee-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 10px 0;
  border: 1px solid rgba(125,150,191,0.1);
}

.marquee-shell::before,
.marquee-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248,250,255,0.92), rgba(248,250,255,0));
}

.marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248,250,255,0.92), rgba(248,250,255,0));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marqueeMove 24s linear infinite;
}

.marquee-shell.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(125,150,191,0.12);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.marquee-item.alt {
  color: var(--primary-strong);
}

.highlight-grid,
.home-bento-grid,
.process-timeline,
.showcase-grid,
.case-stack {
  position: relative;
  z-index: 1;
}

.highlight-grid { margin-top: 30px; }

.home-feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,251,255,0.74));
}

.card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card h3 {
  margin: 0 0 12px;
  font-family: 'Noto Serif SC', serif;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.tilt-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 60px rgba(141, 168, 209, 0.22);
  border-color: rgba(104, 141, 241, 0.18);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.home-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  margin-top: 28px;
}

.bento-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(246,249,255,0.76));
}

.bento-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 24px;
}

.bento-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(255,255,255,0.78);
}

.bento-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(104,141,241,0.14), rgba(255,183,131,0.26), rgba(104,141,241,0.14));
}

.timeline-node {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,250,255,0.78));
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(104,141,241,0.12), rgba(255,183,131,0.12));
  border: 1px solid rgba(104,141,241,0.14);
  color: var(--primary-strong);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.partner-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(246,249,255,0.78));
}

.partner-avatar {
  aspect-ratio: 4 / 4.6;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(232,241,255,0.9));
}

.partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-role {
  color: var(--primary-strong);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-card {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,248,255,0.74));
}

.testimonial-quote {
  font-family: 'Noto Serif SC', serif;
  font-size: 30px;
  line-height: 1.56;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.case-stack { gap: 16px; }

.case-list {
  display: grid;
  gap: 18px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,248,255,0.72));
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 14px;
}

.hero-banner,
.cta-banner {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(246,249,255,0.72));
}

.cta-banner {
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(243,248,255,0.88));
}

.cta-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.timeline-stack {
  display: grid;
  gap: 16px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.timeline-year {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-strong);
}

.article-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 24px;
}

.sidebar-links {
  display: grid;
  gap: 14px;
}

.sidebar-link {
  padding: 16px 0;
  border-top: 1px solid rgba(125,150,191,0.12);
}

.sidebar-link:first-child {
  border-top: 0;
  padding-top: 0;
}

.sidebar-link strong {
  display: block;
  margin-bottom: 6px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 18px; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.search-input,
.text-input,
.text-area,
.select-input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(125,150,191,0.16);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.text-area {
  min-height: 148px;
  padding: 16px;
  resize: vertical;
}

.search-input:focus,
.text-input:focus,
.text-area:focus,
.select-input:focus {
  border-color: rgba(104,141,241,0.42);
  box-shadow: 0 0 0 4px rgba(104,141,241,0.08);
}

.form-grid { display: grid; gap: 16px; }
.form-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.form-note {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.7;
}

.form-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
}

.form-feedback.success {
  background: rgba(126, 201, 177, 0.18);
  border: 1px solid rgba(126, 201, 177, 0.3);
  color: #276a5a;
}

.form-feedback.error {
  background: rgba(235, 174, 174, 0.18);
  border: 1px solid rgba(223, 114, 114, 0.28);
  color: #8d3e3e;
}

.form-feedback.submitting {
  background: rgba(104, 141, 241, 0.14);
  border: 1px solid rgba(104,141,241,0.24);
  color: var(--primary-strong);
}

.honeypot-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.map-shell {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(125,150,191,0.16);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(236,244,255,0.9));
}

#amap-container {
  width: 100%;
  height: 480px;
}

.map-overlay {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(125,150,191,0.16);
  box-shadow: 0 18px 36px rgba(140, 168, 207, 0.18);
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--text-soft);
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(242,247,255,0.92));
}

.footer {
  padding: 38px 0 42px;
  border-top: 1px solid rgba(125,150,191,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 22px;
}

.footer-title {
  margin: 0 0 14px;
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.footer-list a:hover { color: var(--primary-strong); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  border-top: 1px solid rgba(125,150,191,0.12);
  color: var(--text-faint);
}

.footer-qr {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(125,150,191,0.16);
}

.record-box {
  margin-top: 22px;
  padding: 22px 24px;
}

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

.record-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.record-grid p {
  margin: 0 0 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

.page-enter-active,
.page-leave-active {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(22px, -16px, 0) scale(1.04); }
  66% { transform: translate3d(-18px, 18px, 0) scale(0.96); }
}

@keyframes rainbowShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .showcase-grid,
  .article-layout,
  .contact-layout,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-grid,
  .record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card-wide {
    grid-column: 1 / -1;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline::before {
    display: none;
  }

  .hero-visual-frame {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  :root { --header-height: 78px; }

  .container { width: min(var(--container), calc(100% - 28px)); }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links,
  .desktop-cta { display: none; }

  .mobile-sheet {
    display: grid;
    position: absolute;
    top: calc(var(--header-height) - 4px);
    left: 14px;
    right: 14px;
    padding: 16px;
    gap: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(125,150,191,0.14);
    box-shadow: 0 24px 44px rgba(143, 167, 207, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .mobile-sheet.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-sheet a {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .mobile-sheet a.router-link-active {
    background: rgba(104,141,241,0.08);
  }

  .section,
  .hero {
    padding: 62px 0;
  }

  .section.tight {
    padding: 34px 0;
  }

  .hero-shell {
    padding: 20px;
    border-radius: 30px;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .stats-row,
  .grid-3,
  .grid-2,
  .form-grid.two-col,
  .footer-grid,
  .timeline-card,
  .case-card,
  .record-grid,
  .home-bento-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-visual-frame {
    min-height: 500px;
  }

  .spline-shell {
    inset: 14px 14px 108px;
  }

  .robot-note-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .hero-chip-panel {
    padding: 14px 14px 16px;
  }

  .card {
    padding: 22px;
  }

  .article-layout,
  .contact-layout,
  .showcase-grid {
    gap: 18px;
  }

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

  .bento-image-wrap,
  .bento-image-wrap img {
    min-height: 220px;
  }

  .map-shell,
  #amap-container {
    min-height: 380px;
    height: 380px;
  }

  .map-overlay {
    left: 12px;
    top: 12px;
    right: 12px;
    padding: 14px;
  }

  .cta-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-title { font-size: 15px; }
  .brand-subtitle { font-size: 11px; letter-spacing: 0.08em; }
  .record-box { padding: 18px; }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand-title { font-size: 14px; }
  .brand-subtitle { font-size: 10px; }

  .hero-title { letter-spacing: -0.03em; }
  .section-title { font-size: clamp(28px, 8.8vw, 40px); }
  .stat-value { font-size: 30px; }
  .card h3 { font-size: 24px; }
  .testimonial-quote { font-size: 24px; }
  .footer-qr { width: 118px; height: 118px; }
  .hero-banner, .cta-banner { padding: 24px; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* ===== Refined homepage & cases UI ===== */
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
}

.refined-home .section {
  padding: 92px 0;
}

.refined-hero {
  padding-top: 30px;
  padding-bottom: 62px;
  overflow: clip;
}

.aurora-background {
  position: absolute;
  inset: -120px 0 auto;
  height: 760px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-band {
  position: absolute;
  filter: blur(56px);
  opacity: 0.42;
  transform-origin: center;
  animation: auroraFloat 18s ease-in-out infinite;
}

.aurora-band-a {
  top: 36px;
  left: -2%;
  width: 40%;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(122, 165, 255, 0.52), rgba(122, 165, 255, 0.02) 70%);
}

.aurora-band-b {
  top: 18px;
  right: 4%;
  width: 36%;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 199, 150, 0.46), rgba(255, 199, 150, 0.02) 72%);
  animation-delay: -5s;
}

.aurora-band-c {
  top: 180px;
  left: 30%;
  width: 34%;
  height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(159, 215, 205, 0.4), rgba(159, 215, 205, 0.02) 70%);
  animation-delay: -9s;
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: 42px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
}

.refined-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 34px;
}

.refined-hero-copy {
  padding: 14px 0;
}

.hero-eyebrow {
  margin: 22px 0 0;
  color: var(--text-faint);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.refined-title {
  margin-top: 18px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  max-width: 620px;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(26px);
  animation: textReveal 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.reveal-line + .reveal-line {
  animation-delay: 0.16s;
}

.glow-text {
  color: #20314e;
  text-shadow: 0 0 22px rgba(140, 174, 255, 0.24), 0 0 10px rgba(255, 201, 147, 0.18);
}

.refined-subtitle {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.95;
}

.refined-hero-actions {
  margin-top: 30px;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 30px;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(125, 150, 191, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 5px rgba(104, 141, 241, 0.08);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero-stat-card {
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(125, 150, 191, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,255,0.82));
  box-shadow: 0 14px 28px rgba(148, 172, 209, 0.12);
}

.hero-stat-card strong {
  display: block;
  color: var(--primary-strong);
  font-size: 30px;
  font-weight: 800;
}

.hero-stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.refined-hero-side {
  align-self: stretch;
}

.hero-visual {
  gap: 18px;
}

.hero-visual-frame {
  min-height: 620px;
  padding: 18px;
}

.hero-visual-aura {
  position: absolute;
  inset: 10% 10% auto;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(182, 209, 255, 0.25), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}

.spline-shell {
  inset: 18px 18px 118px;
  z-index: 1;
}

.spline-watermark-mask {
  width: 190px;
  height: 54px;
  right: 8px;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(248,251,255,0.96), rgba(248,251,255,1));
  z-index: 5;
}

.robot-note-card {
  z-index: 3;
  background: rgba(255,255,255,0.92);
}

.hero-quick-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-quick-pill {
  min-height: 52px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(125,150,191,0.12);
  background: rgba(255,255,255,0.94);
  color: var(--text);
  box-shadow: 0 14px 24px rgba(144, 167, 207, 0.11);
  font-size: 14px;
  font-weight: 700;
}

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

.service-showcase-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,250,255,0.78));
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.service-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(145, 169, 207, 0.2);
  border-color: rgba(104, 141, 241, 0.18);
}

.service-showcase-index {
  display: inline-flex;
  min-width: 52px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(104, 141, 241, 0.08);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-showcase-card h3 {
  margin-top: 18px;
}

.compact-tags .badge {
  min-height: 34px;
  font-size: 12px;
}

.text-highlight {
  background: linear-gradient(180deg, transparent 55%, rgba(126, 180, 255, 0.18) 55%);
  color: var(--text);
}

.why-section {
  position: relative;
}

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

.why-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,250,255,0.78));
}

.why-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(104,141,241,0.12), rgba(255,183,131,0.12));
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 15px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.partner-grid-refined {
  gap: 22px;
}

.partner-3d-card {
  perspective: 1500px;
}

.partner-3d-inner {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,255,0.82));
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
}

.partner-3d-card:hover .partner-3d-inner {
  transform: rotateX(4deg) rotateY(-5deg) translateY(-8px);
  box-shadow: 0 32px 60px rgba(140, 167, 208, 0.22);
  border-color: rgba(104, 141, 241, 0.18);
}

.partner-3d-glow {
  position: absolute;
  inset: -10% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(155, 194, 255, 0.24), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.partner-avatar-wrap,
.partner-role,
.partner-name,
.partner-bio,
.partner-tag-row,
.partner-philosophy {
  position: relative;
  transform: translateZ(28px);
}

.partner-avatar-wrap {
  margin-bottom: 18px;
}

.partner-avatar {
  aspect-ratio: 4 / 4.8;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(232,241,255,0.92));
}

.partner-name {
  margin: 10px 0 0;
  font-family: 'Noto Serif SC', serif;
  font-size: 30px;
  line-height: 1.15;
}

.partner-bio {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.82;
}

.partner-philosophy {
  margin-top: 18px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.8;
}

.expandable-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.gallery-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,255,0.82));
}

.gallery-feature-media {
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.gallery-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-feature-copy h3 {
  margin: 18px 0 10px;
  font-size: clamp(26px, 3vw, 36px);
}

.gallery-feature-subtitle {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-weight: 600;
}

.gallery-feature-copy .btn {
  margin-top: 24px;
  width: fit-content;
}

.gallery-thumbs {
  display: grid;
  gap: 12px;
}

.gallery-thumb {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(125,150,191,0.12);
  background: rgba(255,255,255,0.82);
  text-align: left;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  transform: translateY(-2px);
  border-color: rgba(104,141,241,0.18);
  box-shadow: 0 16px 32px rgba(143, 167, 207, 0.16);
}

.gallery-thumb-media {
  border-radius: 16px;
  overflow: hidden;
  height: 90px;
}

.gallery-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-copy {
  display: grid;
  gap: 6px;
}

.gallery-thumb-copy strong {
  color: var(--text);
  font-size: 16px;
}

.gallery-thumb-copy span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.trust-section {
  padding-top: 84px;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 12px 0;
  border: 1px solid rgba(125,150,191,0.1);
}

.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(249,251,255,0.95), rgba(249,251,255,0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(249,251,255,0.95), rgba(249,251,255,0));
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marqueeMove 30s linear infinite;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(125,150,191,0.12);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.trust-quote-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,250,255,0.76));
}

.trust-quote-text {
  margin: 0;
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  line-height: 1.75;
}

.trust-quote-author {
  display: inline-block;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.cases-hero-banner {
  padding: 36px;
}

.cases-search-row {
  margin-top: 22px;
}

.cases-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.cases-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.sidebar-panel {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,250,255,0.78));
}

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

.refined-case-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,255,0.8));
}

.case-topline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-date {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
}

.case-title {
  margin-top: 18px;
}

.case-excerpt {
  margin-top: 10px;
}

.case-meta {
  margin-top: auto;
  padding-top: 16px;
}

.case-readmore {
  margin-top: 18px;
  color: var(--primary-strong);
  font-weight: 700;
}

.case-readmore:hover {
  text-decoration: underline;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(24px, -10px, 0) scale(1.05); }
  66% { transform: translate3d(-16px, 18px, 0) scale(0.96); }
}

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

@media (max-width: 1180px) {
  .refined-hero-grid,
  .expandable-gallery,
  .gallery-feature,
  .cases-page-grid,
  .cases-grid,
  .why-grid,
  .trust-quotes-grid {
    grid-template-columns: 1fr;
  }

  .refined-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual-frame {
    min-height: 560px;
  }

  .cases-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .refined-home .section {
    padding: 68px 0;
  }

  .hero-frame {
    padding: 22px;
    border-radius: 30px;
  }

  .hero-proof-list,
  .hero-stats-grid,
  .hero-quick-pills,
  .refined-service-grid,
  .trust-quotes-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-frame {
    min-height: 500px;
  }

  .spline-shell {
    inset: 14px 14px 126px;
  }

  .gallery-feature-media img {
    min-height: 240px;
  }

  .gallery-thumb {
    grid-template-columns: 84px 1fr;
  }

  .trust-quote-text {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .refined-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-proof-item,
  .hero-quick-pill {
    min-height: 46px;
    font-size: 13px;
  }

  .service-showcase-card,
  .why-card,
  .trust-quote-card,
  .gallery-feature,
  .sidebar-panel {
    padding: 20px;
  }

  .gallery-feature {
    gap: 16px;
  }
}


.app-shell {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.app-shell--ready {
  opacity: 1;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250,252,255,0.98), rgba(245,248,255,0.98));
}
.loading-screen__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.75;
}
.loading-screen__glow--a {
  width: 360px;
  height: 360px;
  left: 12%;
  top: 18%;
  background: rgba(114, 162, 255, 0.2);
}
.loading-screen__glow--b {
  width: 420px;
  height: 420px;
  right: 8%;
  bottom: 10%;
  background: rgba(255, 192, 151, 0.24);
}
.loading-screen__panel {
  position: relative;
  width: min(540px, calc(100% - 40px));
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,0.82);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}
.loading-screen__mark {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(132,160,203,0.16);
}
.loading-screen__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loading-screen__ring {
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  border: 2px solid rgba(104, 141, 241, 0.2);
  animation: pulseRing 1.8s ease-in-out infinite;
}
.loading-screen__eyebrow {
  margin: 0;
  color: var(--primary-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.loading-screen__text h2 {
  margin: 6px 0 10px;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 38px);
}
.loading-screen__text p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}
.loading-screen__bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(104,141,241,0.08);
  overflow: hidden;
}
.loading-screen__bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(104,141,241,0.85), rgba(255,183,131,0.75), rgba(104,141,241,0.85));
  background-size: 180% 100%;
  animation: loaderBar 1.35s ease-in-out infinite;
}
.loader-fade-enter-active,
.loader-fade-leave-active {
  transition: opacity 0.45s ease;
}
.loader-fade-enter-from,
.loader-fade-leave-to {
  opacity: 0;
}

.scroll-island {
  position: fixed;
  right: 24px;
  top: calc(var(--header-height) + 28px);
  z-index: 48;
  display: grid;
  gap: 10px;
}
.scroll-island__button {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  text-align: left;
  display: grid;
  gap: 2px;
}
.scroll-island__button strong {
  font-size: 22px;
  font-weight: 800;
}
.scroll-island__title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-strong);
  font-weight: 700;
}
.scroll-island__meta {
  color: var(--text-soft);
  font-size: 13px;
}
.scroll-island__panel {
  padding: 10px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
  min-width: 136px;
}
.scroll-island__link {
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  padding: 10px 12px;
  text-align: left;
  color: var(--text-soft);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.scroll-island__link:hover,
.scroll-island__link.is-active {
  background: rgba(104,141,241,0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.aurora-background--hero {
  inset: 0;
  opacity: 1;
}
.executive-hero {
  padding-top: 28px;
  padding-bottom: 52px;
  overflow: clip;
}
.executive-hero-shell {
  position: relative;
  z-index: 1;
  padding: 36px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.64));
  box-shadow: 0 30px 80px rgba(130, 158, 203, 0.16);
}
.executive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 26px;
  align-items: center;
}
.executive-hero-copy {
  padding: 8px 4px 8px 4px;
}
.hero-eyebrow {
  margin: 22px 0 0;
  color: var(--text-faint);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.executive-hero-title {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reveal-line {
  display: inline-block;
  animation: textReveal .72s ease both;
}
.sparkles-text {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  line-height: 1.1;
}
.sparkles-text__label {
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, #20314e 0%, #4e6cc1 34%, #2a5370 68%, #20314e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(119, 156, 234, 0.14);
}
.sparkles-text__star {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(157, 195, 255, 0.95) 45%, rgba(255,255,255,0) 70%);
  filter: drop-shadow(0 0 6px rgba(131, 175, 255, 0.45));
  animation: sparkleFloat 2.6s ease-in-out infinite;
}
.executive-hero-subtitle {
  max-width: 620px;
}
.executive-proof-list {
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.executive-stats-grid {
  margin-top: 26px;
}
.home-marquee-wrap {
  margin-top: 18px;
}
.legal-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 12px 0;
  border: 1px solid rgba(125,150,191,0.1);
}
.legal-marquee::before,
.legal-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}
.legal-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(249,251,255,0.98), rgba(249,251,255,0));
}
.legal-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(249,251,255,0.98), rgba(249,251,255,0));
}
.legal-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}
.legal-marquee--reverse .legal-marquee__track {
  animation-direction: reverse;
}
.legal-marquee__item {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(125,150,191,0.12);
  color: var(--text);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}
.services-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.executive-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partners-section .section-head,
.featured-cases-section .section-head,
.trust-section--home .section-head {
  margin-bottom: 32px;
}
.trust-section--home .trust-marquee {
  margin-top: 8px;
}
.trust-quotes-grid--home {
  margin-top: 24px;
}

.hero-visual--executive {
  display: grid;
  gap: 16px;
}
.hero-visual-frame--executive {
  min-height: 590px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(244,248,255,0.82));
}
.spline-shell--executive {
  inset: 18px 18px 118px;
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(circle at 35% 28%, rgba(145,186,255,0.22), transparent 34%), linear-gradient(180deg, rgba(252,253,255,0.96), rgba(239,244,253,0.92));
}
.spline-shell--executive spline-viewer {
  width: 100%;
  height: 100%;
}
.spline-watermark-mask {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 180px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244,248,255,0.98), rgba(244,248,255,0.98));
  z-index: 20;
}
.robot-note-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 24;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 30px rgba(133,161,203,0.14);
}
.robot-note-label {
  color: var(--primary-strong);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.robot-note-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
}
.robot-note-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}
.hero-quick-pills--executive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-quick-pill {
  min-height: 54px;
  background: rgba(255,255,255,0.96);
}

.partner-3d-card {
  perspective: 1400px;
}
.partner-3d-inner {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,248,255,0.84));
  transform-style: preserve-3d;
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
  overflow: hidden;
}
.partner-3d-card:hover .partner-3d-inner {
  transform: rotateX(4deg) rotateY(-4deg) translateY(-8px);
  box-shadow: 0 28px 50px rgba(140,167,208,0.2);
}
.partner-3d-sheen {
  position: absolute;
  inset: auto -30% -10% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,196,151,0.25), rgba(255,255,255,0) 65%);
  filter: blur(10px);
  pointer-events: none;
}
.partner-avatar,
.partner-role,
.partner-name,
.partner-bio,
.partner-tag-row,
.partner-philosophy {
  position: relative;
  transform: translateZ(28px);
}
.partner-avatar {
  aspect-ratio: 4 / 4.7;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(253,254,255,0.96), rgba(236,243,255,0.96));
}
.partner-role {
  margin-top: 18px;
  color: var(--primary-strong);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.partner-name {
  font-size: 28px;
}
.partner-bio {
  min-height: 130px;
}

.cases-page-grid--refined {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.compact-sidebar-links {
  display: grid;
  gap: 12px;
}
.faq-sidebar-panel .grid {
  gap: 12px;
}
.faq-sidebar-panel details {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.faq-sidebar-panel .faq-item summary {
  padding: 16px 16px 0;
}
.faq-sidebar-panel .faq-item p {
  padding: 0 16px 16px;
}
.faq-sidebar-panel .faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
}

.contact-layout--refined {
  grid-template-columns: minmax(0, 1fr) 1.05fr;
}
.field-wrap {
  display: grid;
  gap: 8px;
}
.field-wrap--full {
  grid-column: 1 / -1;
}
.field-error {
  color: #d04a54;
  font-size: 12px;
  line-height: 1.6;
}
.field-counter {
  color: var(--text-faint);
  font-size: 12px;
}
.field-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.text-input.is-invalid,
.select-input.is-invalid,
.text-area.is-invalid {
  border-color: rgba(208,74,84,0.34);
  box-shadow: 0 0 0 4px rgba(208,74,84,0.08);
}
.form-note--secure {
  color: var(--text-soft);
}
.map-shell--refined {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 430px;
  border: 1px solid rgba(125,150,191,0.12);
}
#amap-container {
  width: 100%;
  min-height: 430px;
}
.map-address-panel {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
}
.map-address-panel span,
.map-address-panel small {
  color: var(--text-soft);
  line-height: 1.7;
}
.xian-map-marker {
  position: relative;
  width: 36px;
  height: 36px;
}
.xian-map-marker__dot {
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f72d1, #7ca4ff);
  box-shadow: 0 0 0 4px rgba(104,141,241,0.18);
}
.xian-map-marker__pulse {
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 2px solid rgba(104,141,241,0.24);
  animation: pulseRing 1.8s ease-in-out infinite;
}
.xian-map-infowindow {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 32px rgba(126, 153, 197, 0.18);
  border: 1px solid rgba(125,150,191,0.14);
  color: var(--text);
}
.xian-map-infowindow strong {
  display: block;
  margin-bottom: 6px;
}
.xian-map-infowindow p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.footer-minimal {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(125,150,191,0.1);
  background: transparent;
}
.footer-minimal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 26px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(125,150,191,0.12);
  box-shadow: 0 18px 36px rgba(138, 165, 204, 0.1);
}
.footer-minimal__copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-minimal__copy p {
  margin: 4px 0;
  color: var(--text-soft);
}
.footer-minimal__link {
  white-space: nowrap;
  color: var(--primary-strong);
  font-weight: 700;
}
.footer-minimal__link:hover {
  text-decoration: underline;
}

@keyframes pulseRing {
  0% { transform: scale(.88); opacity: .6; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}
@keyframes loaderBar {
  0% { transform: translateX(-40%); background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { transform: translateX(210%); background-position: 0% 50%; }
}
@keyframes sparkleFloat {
  0%, 100% { transform: scale(.65); opacity: .3; }
  50% { transform: scale(1.2); opacity: 1; }
}

@media (max-width: 1180px) {
  .executive-hero-grid,
  .contact-layout--refined,
  .cases-page-grid--refined,
  .services-overview-grid,
  .executive-why-grid,
  .hero-quick-pills--executive,
  .trust-quotes-grid--home {
    grid-template-columns: 1fr;
  }
  .scroll-island {
    display: none;
  }
}
@media (max-width: 860px) {
  .executive-hero-shell {
    padding: 24px;
  }
  .executive-proof-list,
  .executive-stats-grid,
  .services-overview-grid {
    grid-template-columns: 1fr;
  }
  .spline-shell--executive {
    inset: 14px 14px 132px;
  }
  .hero-visual-frame--executive {
    min-height: 560px;
  }
  .footer-minimal__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .executive-hero {
    padding-top: 16px;
  }
  .executive-hero-shell {
    padding: 18px;
    border-radius: 28px;
  }
  .hero-eyebrow {
    letter-spacing: .1em;
  }
  .hero-title {
    font-size: clamp(38px, 12vw, 52px);
  }
  .legal-marquee__item {
    font-size: 13px;
  }
  .hero-visual-frame--executive {
    min-height: 500px;
  }
  .spline-shell--executive {
    inset: 12px 12px 150px;
  }
  .robot-note-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
  .partner-name {
    font-size: 24px;
  }
  .map-shell--refined,
  #amap-container {
    min-height: 320px;
  }
}

/* === March 2026 refinements === */
.inner-page .section:first-of-type {
  padding-top: 28px;
}
.team-grid-home,
.team-grid-page {
  align-items: stretch;
}
.team-grid-home .partner-3d-card,
.team-grid-page .partner-3d-card {
  min-height: 100%;
}
.partner-grid-refined.grid-4,
.team-grid-page.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-role {
  margin-top: 6px;
}
.partner-bio {
  min-height: 120px;
}
.section-gallery-preview .section-head,
.section-soft .section-head {
  margin-bottom: 28px;
}
.bending-gallery-wrap {
  display: grid;
  gap: 22px;
}
.bending-gallery-stage {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,248,255,0.78));
}
.bending-gallery-card {
  position: absolute;
  width: min(18vw, 180px);
  aspect-ratio: 3 / 4.2;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(136, 164, 205, 0.18);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: transform .45s ease, box-shadow .45s ease, opacity .45s ease;
}
.bending-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bending-gallery-card__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 37, 64, 0.54));
}
.bending-gallery-card__title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
}
.bending-gallery-card.active {
  z-index: 4;
  box-shadow: 0 26px 48px rgba(126, 159, 204, 0.22);
}
.arc-deep-left { transform: translateX(-330px) rotate(-17deg) translateY(36px) scale(.84); z-index: 1; opacity: .58; }
.arc-left { transform: translateX(-245px) rotate(-13deg) translateY(20px) scale(.89); z-index: 1; opacity: .72; }
.arc-soft-left { transform: translateX(-160px) rotate(-9deg) translateY(10px) scale(.93); z-index: 2; opacity: .86; }
.arc-near-left { transform: translateX(-80px) rotate(-5deg) translateY(4px) scale(.97); z-index: 3; }
.arc-center { transform: translateX(0) rotate(0deg) translateY(0) scale(1); z-index: 4; }
.arc-near-right { transform: translateX(80px) rotate(5deg) translateY(4px) scale(.97); z-index: 3; }
.arc-soft-right { transform: translateX(160px) rotate(9deg) translateY(10px) scale(.93); z-index: 2; opacity: .86; }
.arc-right { transform: translateX(245px) rotate(13deg) translateY(20px) scale(.89); z-index: 1; opacity: .72; }
.arc-deep-right { transform: translateX(330px) rotate(17deg) translateY(36px) scale(.84); z-index: 1; opacity: .58; }
.bending-gallery-meta {
  padding: 26px 28px;
  display: grid;
  gap: 16px;
  border-radius: 28px;
}
.bending-gallery-meta h3 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 2.5vw, 38px);
}
.bending-gallery-meta p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}
.infinite-grid-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 16px 0;
  border: 1px solid rgba(125,150,191,0.1);
}
.infinite-grid-shell::before,
.infinite-grid-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}
.infinite-grid-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(249,251,255,0.96), rgba(249,251,255,0));
}
.infinite-grid-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(249,251,255,0.96), rgba(249,251,255,0));
}
.infinite-grid-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeMove 40s linear infinite;
}
.infinite-grid-card {
  position: relative;
  width: 220px;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 28px rgba(141,168,209,0.12);
}
.infinite-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infinite-grid-card__overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  display: grid;
  gap: 4px;
}
.infinite-grid-card__overlay strong {
  color: var(--text);
  font-size: 15px;
}
.infinite-grid-card__overlay span {
  color: var(--text-soft);
  font-size: 13px;
}
.about-info-grid,
.team-method-grid {
  align-items: stretch;
}
.cases-sidebar--compact {
  display: grid;
  gap: 18px;
  align-content: start;
}
.sidebar-panel-book {
  padding: 20px;
}
.book-card-shell {
  display: grid;
  justify-items: center;
}
.book-card-visual {
  position: relative;
  width: 190px;
  height: 248px;
  transform: perspective(1200px) rotateY(-18deg);
}
.book-card-spine {
  position: absolute;
  inset: 10px auto 10px 0;
  width: 22px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, rgba(91,119,189,0.75), rgba(61,86,142,0.94));
  box-shadow: inset -4px 0 10px rgba(255,255,255,0.16);
}
.book-card-cover {
  position: absolute;
  inset: 0 0 0 18px;
  border-radius: 18px;
  padding: 24px 22px;
  background: linear-gradient(165deg, #fefefe, #eef4ff 72%);
  border: 1px solid rgba(125,150,191,0.15);
  box-shadow: 0 20px 40px rgba(135,160,197,0.18);
  display: grid;
  align-content: start;
  gap: 10px;
}
.book-card-kicker {
  color: var(--primary-strong);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.book-card-cover strong {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  line-height: 1.28;
}
.book-card-cover small {
  color: var(--text-soft);
  line-height: 1.7;
}
.legal-links-list {
  gap: 0;
}
.sidebar-link--anchor {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, color .25s ease;
}
.sidebar-link--anchor:hover {
  color: var(--primary-strong);
  transform: translateX(3px);
}
.faq-sidebar-panel--compact .faq-item summary {
  padding: 14px 0;
  font-size: 15px;
}
.faq-sidebar-panel--compact .faq-item p {
  padding-bottom: 14px;
}
.article-title {
  font-size: clamp(34px, 3.8vw, 54px);
}
.article-intro,
.disclaimer-paragraph {
  max-width: none;
}
.article-body-blocks {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.article-body-paragraph {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.92;
}
.article-aside-stack {
  align-content: start;
}
.contact-map-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.xian-map-marker--strong {
  position: relative;
  width: 188px;
  height: 72px;
}
.xian-map-marker__label {
  position: absolute;
  left: 26px;
  top: 0;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 22px rgba(110,138,182,0.2);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.world-map-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 2.7vw, 38px);
}
.world-map-shell {
  position: relative;
  margin-top: 22px;
  min-height: 360px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 38%, rgba(139,177,255,0.16), transparent 36%), linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.82));
  border: 1px solid rgba(125,150,191,0.12);
  overflow: hidden;
}
.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.world-map-svg path {
  fill: none;
  stroke: rgba(104,141,241,0.22);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.world-map-node {
  position: absolute;
  transform: translate(-50%, -50%);
}
.world-map-node__dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7b9ef5, #4e6cc1);
  box-shadow: 0 0 0 10px rgba(104,141,241,0.12), 0 0 0 22px rgba(104,141,241,0.06);
}
.world-map-node__label {
  display: inline-flex;
  margin-top: 14px;
  margin-left: -16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(136,164,205,0.16);
}
.footer-with-qrs {
  margin-top: 24px;
}
.footer-minimal__inner--qrs {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-qr-group {
  display: flex;
  gap: 18px;
}
.footer-qr-card {
  padding: 14px;
  border-radius: 22px;
  text-align: center;
}
.footer-qr-card img {
  width: 126px;
  height: 147px;
  object-fit: contain;
  display: block;
}
.footer-qr-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}
.footer-minimal__copy p {
  margin: 4px 0;
}
.footer-minimal__link {
  white-space: nowrap;
}
.map-address-panel {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}
@media (max-width: 1240px) {
  .partner-grid-refined.grid-4,
  .team-grid-page.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-minimal__inner--qrs {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .bending-gallery-stage {
    min-height: 320px;
    padding: 24px 16px;
  }
  .bending-gallery-card {
    width: min(26vw, 160px);
  }
  .arc-deep-left { transform: translateX(-215px) rotate(-13deg) translateY(24px) scale(.84); }
  .arc-left { transform: translateX(-155px) rotate(-10deg) translateY(14px) scale(.88); }
  .arc-soft-left { transform: translateX(-100px) rotate(-7deg) translateY(8px) scale(.92); }
  .arc-near-left { transform: translateX(-48px) rotate(-3deg) translateY(2px) scale(.96); }
  .arc-near-right { transform: translateX(48px) rotate(3deg) translateY(2px) scale(.96); }
  .arc-soft-right { transform: translateX(100px) rotate(7deg) translateY(8px) scale(.92); }
  .arc-right { transform: translateX(155px) rotate(10deg) translateY(14px) scale(.88); }
  .arc-deep-right { transform: translateX(215px) rotate(13deg) translateY(24px) scale(.84); }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-map-card {
    position: static;
  }
}
@media (max-width: 820px) {
  .partner-grid-refined.grid-4,
  .team-grid-page.grid-4,
  .services-page-grid.grid-3,
  .about-info-grid.grid-2,
  .team-method-grid.grid-3 {
    grid-template-columns: 1fr;
  }
  .team-method-grid .team-method-photo {
    grid-column: auto !important;
  }
  .footer-qr-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .bending-gallery-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }
  .bending-gallery-card,
  .bending-gallery-card.active,
  .arc-deep-left,
  .arc-left,
  .arc-soft-left,
  .arc-near-left,
  .arc-center,
  .arc-near-right,
  .arc-soft-right,
  .arc-right,
  .arc-deep-right {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    opacity: 1;
  }
  .world-map-shell {
    min-height: 280px;
  }
}
@media (max-width: 640px) {
  .infinite-grid-card {
    width: 180px;
  }
  .footer-qr-card img {
    width: 118px;
    height: 138px;
  }
}
