/* ============================================
   企编云 qib.cn · 全站样式 v2（商业官网级）
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }
:root {
  --c-brand-50:  #eef4ff;
  --c-brand-100: #dae7ff;
  --c-brand-200: #b6ceff;
  --c-brand-300: #87aeff;
  --c-brand-400: #5190fa;
  --c-brand-500: #2f7cff;
  --c-brand-600: #1a5ff5;
  --c-brand-700: #1349d8;
  --c-brand-800: #0f3db0;
  --c-brand-900: #0e2557;
  --c-ink-900:   #0a1127;
  --c-ink-800:   #111a36;
  --c-ink-700:   #1f2a44;
  --c-ink-500:   #4b5b7c;
  --c-ink-400:   #6b7b99;
  --c-ink-300:   #9aa6c0;
  --c-ink-200:   #cfd6e6;
  --c-ink-100:   #e6ecf7;
  --c-ink-50:    #f5f7fb;
  --c-bg:        #f7f9fd;
  --c-accent:    #7c3aed;
  --c-accent-2:  #06b6d4;
  --c-gold:      #f59e0b;
  --c-green:     #10b981;
  --c-pink:      #ec4899;

  --grad-brand: linear-gradient(135deg, #2f7cff 0%, #1349d8 60%, #0e2557 100%);
  --grad-aurora: linear-gradient(135deg, #1a5ff5 0%, #7c3aed 60%, #ec4899 100%);
  --grad-cyan: linear-gradient(135deg, #06b6d4 0%, #1a5ff5 100%);
  --grad-sunset: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);

  --shadow-xs:   0 1px 2px rgba(15,23,42,.04);
  --shadow-sm:   0 2px 6px rgba(15,23,42,.06);
  --shadow-md:   0 10px 25px -5px rgba(13,28,72,.10), 0 8px 10px -6px rgba(13,28,72,.08);
  --shadow-lg:   0 20px 40px -10px rgba(13,28,72,.15);
  --shadow-glow: 0 0 30px -5px rgba(26,95,245,.45);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font: 'PingFang SC', 'HarmonyOS Sans', 'Microsoft YaHei',
          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-ink-900);
  background: var(--c-bg);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; transition: color .15s ease; }
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select, button { font-family: inherit; font-size: 14px; }
input, textarea, select { outline: none; }
::selection { background: var(--c-brand-200); color: var(--c-brand-900); }

/* Utilities */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 640px) { .container { padding: 0 14px; } }
.hidden { display: none !important; }
.muted { color: var(--c-ink-400); }
.semi { font-weight: 600; }
.bold { font-weight: 700; }
.center { text-align: center; }
.text-sm { font-size: 13px; } .text-xs { font-size: 12px; }
.text-lg { font-size: 16px; } .text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; } .text-3xl { font-size: 30px; } .text-4xl { font-size: 36px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; }
.grid { display: grid; }
.hide-mobile {}
.hide-desktop { display: none; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } .hide-desktop { display: initial; } }

/* Gradient text */
.g-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.g-text-aurora {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: 999px; font-weight: 600;
  transition: all .2s ease; user-select: none; white-space: nowrap;
  border: 1px solid transparent; font-size: 14px;
  position: relative;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(26,95,245,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(26,95,245,.7); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.3), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: #fff; color: var(--c-brand-700);
  border-color: var(--c-brand-200);
}
.btn-outline:hover { border-color: var(--c-brand-500); color: var(--c-brand-600); background: var(--c-brand-50); }
.btn-ghost { background: transparent; color: var(--c-ink-700); }
.btn-ghost:hover { background: var(--c-ink-50); color: var(--c-brand-700); }
.btn-glass {
  background: rgba(255,255,255,.12); color: #fff;
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.2);
}
.btn-glass:hover { background: rgba(255,255,255,.22); }
.btn-white {
  background: #fff; color: var(--c-brand-700);
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-xl { padding: 16px 36px; font-size: 16px; }
.btn:disabled, .btn.disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--c-ink-100);
  overflow: hidden;
  position: relative;
}
.card-body { padding: 22px; }
.card-hover { transition: all .25s ease; will-change: transform; }
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand-200);
}

/* Form */
.input, .textarea, .select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--c-ink-200);
  background: #fff;
  color: var(--c-ink-900);
  transition: all .15s;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--c-brand-500);
  box-shadow: 0 0 0 3px rgba(26,95,245,.12);
}
.label { display: block; margin-bottom: 6px; color: var(--c-ink-500); font-size: 13px; }
.field { margin-bottom: 14px; }
.err-msg { color: #ef4444; font-size: 12px; margin-top: 4px; }

/* Toast */
.qib-toast-container {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.qib-toast {
  min-width: 260px; max-width: 420px;
  padding: 11px 18px;
  background: var(--c-ink-900); color: #fff; border-radius: 10px;
  font-size: 13px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  animation: slideDown .35s cubic-bezier(.2,.9,.3,1.2);
  backdrop-filter: blur(8px);
}
.qib-toast.success { background: linear-gradient(135deg,#10b981,#059669); }
.qib-toast.error   { background: linear-gradient(135deg,#ef4444,#dc2626); }
.qib-toast.warn    { background: linear-gradient(135deg,#f59e0b,#d97706); }
.qib-toast.info    { background: var(--grad-brand); }
@keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =========== HEADER =========== */
.qib-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(15,23,42,.05);
  transition: box-shadow .3s;
}
.qib-header.scrolled { box-shadow: 0 6px 20px -12px rgba(13,28,72,.12); }
.qib-header .bar { height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.qib-header .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.qib-header .logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-brand);
  display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(26,95,245,.55);
  position: relative; overflow: hidden;
}
.qib-header .logo-mark::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.3), transparent 60%);
}
.qib-nav { display: flex; gap: 2px; }
.qib-nav a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--c-ink-500); font-weight: 500;
  transition: all .15s; font-size: 14px;
}
.qib-nav a:hover { color: var(--c-brand-700); background: var(--c-brand-50); }
.qib-nav a.active { color: var(--c-brand-700); background: var(--c-brand-50); }
@media (max-width: 960px) { .qib-nav { display: none; } }
.qib-menu-btn { display: none; padding: 10px; border-radius: 10px; }
.qib-menu-btn:hover { background: var(--c-ink-50); }
@media (max-width: 960px) { .qib-menu-btn { display: inline-flex; } }
.qib-drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
}
.qib-drawer.open { display: block; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.qib-drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 78%; max-width: 320px;
  background: #fff; padding: 20px; overflow-y: auto;
  animation: slideInRight .25s ease-out;
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.qib-drawer-panel a {
  display: block; padding: 12px 14px; border-radius: 10px; color: var(--c-ink-700);
  font-size: 14px;
}
.qib-drawer-panel a.active, .qib-drawer-panel a:hover { background: var(--c-brand-50); color: var(--c-brand-700); }

/* =========== ANNOUNCEMENT =========== */
.qib-ann {
  background: linear-gradient(90deg, #0e2557 0%, #163fae 50%, #1a5ff5 100%);
  color: #fff; padding: 9px 20px; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.qib-ann::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.qib-ann-badge {
  padding: 2px 10px; border-radius: 999px;
  background: rgba(255,255,255,.2); font-size: 11px; font-weight: 600;
  backdrop-filter: blur(10px); position: relative;
}
.qib-ann-scroll {
  flex: 1; overflow: hidden; white-space: nowrap; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.qib-ann-scroll span { display: inline-block; padding-left: 100%; animation: scrollX 28s linear infinite; }
@keyframes scrollX { to { transform: translateX(-200%); } }

/* =========== HERO =========== */
.qib-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(1600px 600px at 10% -10%, rgba(26,95,245,.25), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(124,58,237,.18), transparent 60%),
              radial-gradient(800px 400px at 50% 110%, rgba(6,182,212,.1), transparent 60%),
              linear-gradient(180deg, #fbfdff 0%, #eef4ff 100%);
  padding: 100px 0 120px;
}
.qib-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,95,245,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,245,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  pointer-events: none;
  z-index: -1;
}
.qib-hero h1 {
  font-size: clamp(32px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0e2557 0%, #1a5ff5 60%, #7c3aed 120%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; margin: 0;
}
.qib-hero .slogan {
  color: var(--c-ink-500); font-size: clamp(15px, 1.5vw, 18px);
  margin: 20px 0 36px; max-width: 720px; line-height: 1.75;
}
.qib-hero .badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(26,95,245,.2);
  border-radius: 999px;
  font-size: 12px; color: var(--c-brand-700); font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px -4px rgba(26,95,245,.15);
  margin-bottom: 20px;
}
.qib-hero .kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 60px; max-width: 820px;
}
.qib-hero .kpi > div {
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 18px; padding: 20px 14px; text-align: center;
  box-shadow: 0 6px 20px -8px rgba(13,28,72,.1);
}
.qib-hero .kpi b {
  display: block; font-size: clamp(24px, 3vw, 34px);
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
.qib-hero .kpi small { color: var(--c-ink-500); font-size: 12px; }
@media (max-width: 640px) {
  .qib-hero { padding: 60px 0 70px; }
  .qib-hero .kpi { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
}
/* Hero floating orbs */
.qib-hero .orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .4; pointer-events: none; z-index: -1;
}
.qib-hero .orb-1 { width: 300px; height: 300px; background: #1a5ff5; top: -80px; right: 10%; animation: float 8s ease-in-out infinite; }
.qib-hero .orb-2 { width: 260px; height: 260px; background: #7c3aed; bottom: -50px; left: 10%; animation: float 11s ease-in-out infinite reverse; }
.qib-hero .orb-3 { width: 200px; height: 200px; background: #06b6d4; top: 30%; right: 40%; opacity: .3; animation: float 13s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(30px,-30px); }
  66% { transform: translate(-20px,20px); }
}

/* =========== SECTIONS =========== */
.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  display: inline-block; padding: 5px 16px;
  background: var(--c-brand-50); color: var(--c-brand-700);
  font-size: 12px; font-weight: 700; border-radius: 999px;
  letter-spacing: 2px; margin-bottom: 16px;
  border: 1px solid var(--c-brand-100);
}
.section-title h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--c-ink-900);
}
.section-title p {
  margin: 14px auto 0; color: var(--c-ink-400);
  max-width: 700px; font-size: 15px;
}

/* =========== GRIDS =========== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* =========== ADVANTAGES =========== */
.adv-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-ink-100);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.adv-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-brand-50), transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.adv-item > * { position: relative; }
.adv-item:hover {
  border-color: var(--c-brand-400);
  box-shadow: 0 20px 40px -12px rgba(26,95,245,.18);
  transform: translateY(-5px);
}
.adv-item:hover::before { opacity: 1; }
.adv-item .icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-brand);
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -6px rgba(26,95,245,.35);
  position: relative;
}
.adv-item .icon::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.3), transparent 60%);
}

/* =========== INDUSTRY MATRIX =========== */
.ind-card {
  position: relative; padding: 28px 22px;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  background: #fff;
  border: 1px solid var(--c-ink-100);
  transition: all .3s ease;
  isolation: isolate;
}
.ind-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-brand);
  opacity: 0; transition: opacity .3s;
}
.ind-card .ind-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--c-brand-50); color: var(--c-brand-600);
  display: grid; place-items: center; margin-bottom: 14px;
  transition: all .3s;
}
.ind-card:hover {
  color: #fff; transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 24px 48px -12px rgba(26,95,245,.45);
}
.ind-card:hover::before { opacity: 1; }
.ind-card:hover .ind-icon { background: rgba(255,255,255,.2); color: #fff; }
.ind-card:hover .muted { color: rgba(255,255,255,.85); }
.ind-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.ind-card .solution { font-size: 13px; color: var(--c-ink-500); min-height: 64px; line-height: 1.7; }
.ind-card .arrow { margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; color: var(--c-brand-600); font-size: 13px; font-weight: 600; }
.ind-card:hover .arrow { color: #fff; }
.ind-card:hover .arrow svg { transform: translateX(4px); }
.ind-card .arrow svg { transition: transform .2s; }

/* =========== VIDEO PLAYER =========== */
.qib-video {
  position: relative; background: #000; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; cursor: pointer;
  box-shadow: 0 16px 40px -12px rgba(13,28,72,.3);
  transition: transform .25s;
}
.qib-video:hover { transform: translateY(-4px); }
.qib-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.qib-video-cover {
  position: absolute; inset: 0; display: grid; place-items: center;
  background-size: cover; background-position: center;
  background-color: #0a1127;
}
.qib-video-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(10,17,39,.65) 100%);
}
.qib-video-play {
  position: relative; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--c-brand-600); display: grid;
  place-items: center; box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transition: transform .2s;
  animation: pulseRing 2.2s ease-out infinite;
}
.qib-video-play::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255,255,255,.6);
  animation: pulseBorder 2.2s ease-out infinite;
}
@keyframes pulseRing { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.06);} }
@keyframes pulseBorder { 70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.qib-video:hover .qib-video-play { transform: scale(1.12); }
.qib-video-meta {
  position: absolute; left: 18px; bottom: 16px; right: 18px; color: #fff; z-index: 2;
}
.qib-video-meta h4 { margin: 0 0 2px; font-size: 15px; font-weight: 600; }
.qib-video-meta small { opacity: .8; font-size: 12px; }
.qib-video-duration {
  position: absolute; top: 12px; right: 12px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(10px);
  color: #fff; font-size: 11px; z-index: 2;
}

/* Video Tabs */
.qib-vtabs {
  display: inline-flex; gap: 4px; padding: 6px;
  background: #fff; border-radius: 999px;
  border: 1px solid var(--c-ink-100);
  box-shadow: var(--shadow-xs);
}
.qib-vtab {
  padding: 8px 20px; border-radius: 999px;
  font-size: 13px; color: var(--c-ink-500); font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.qib-vtab:hover { color: var(--c-brand-700); }
.qib-vtab.active {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 4px 12px -3px rgba(26,95,245,.45);
}
button.qib-vtab {
  border: 0; background: transparent; font: inherit; cursor: pointer;
  font-weight: 500; font-size: 13px;
}
.qib-vtabs--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.qib-vtabs--dark .qib-vtab { color: #a8bce8; }
.qib-vtabs--dark .qib-vtab:hover { color: #e8efff; }

/* Video horizontal strip (homepage) */
.qib-video-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.qib-video-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  padding: 8px 4px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
}
.qib-video-strip::-webkit-scrollbar { height: 6px; }
.qib-video-strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.28);
  border-radius: 999px;
}
.qib-video-slide {
  flex: 0 0 min(78vw, 400px);
  scroll-snap-align: start;
}
.qib-video-slide.is-hidden { display: none !important; }
.qib-video-slide .qib-video { height: 100%; }

.qib-carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, transform .15s, border-color .2s;
}
.qib-carousel-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
}
.qib-carousel-btn:active { transform: scale(.94); }
@media (max-width: 720px) {
  .qib-carousel-btn { display: none; }
}

/* Program cards on homepage */
.program-home-head {
  display: block;
  text-decoration: none;
  color: inherit;
}
.program-home-head:hover h3 { color: var(--c-brand-700); }
.program-home-meta {
  padding-top: 14px;
  border-top: 1px solid var(--c-ink-100);
  margin-bottom: 14px;
}

/* Testimonial carousel */
.qib-ts-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 52px;
}
.qib-ts-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.qib-ts-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.qib-ts-track .testimonial-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 4px 12px;
}
.qib-ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--c-ink-100);
  background: #fff;
  color: var(--c-ink-600);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 2;
}
.qib-ts-arrow:hover {
  border-color: var(--c-brand-300);
  color: var(--c-brand-700);
  background: var(--c-brand-50);
}
.qib-ts-arrow.prev { left: 0; }
.qib-ts-arrow.next { right: 0; }
.qib-ts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.qib-ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--c-ink-200);
  cursor: pointer;
  transition: background 0.2s, width 0.25s;
}
.qib-ts-dot.active {
  background: var(--c-brand-600);
  width: 22px;
}
@media (max-width: 640px) {
  .qib-ts-carousel { padding: 0 8px; }
  .qib-ts-arrow { display: none; }
}

/* Contact page live dot */
.qib-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
  animation: qibLivePulse 2s ease-in-out infinite;
}
.qib-live-dot--off {
  background: #94a3b8;
  box-shadow: none;
  animation: none;
}
@keyframes qibLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.qib-map-frame {
  width: 100%;
  height: min(42vw, 300px);
  min-height: 220px;
  border: 0;
  display: block;
}

/* =========== CASE / PROGRAM CARDS =========== */
.c-card {
  display: block; border-radius: var(--radius-lg); background: #fff;
  border: 1px solid var(--c-ink-100); overflow: hidden;
  transition: all .3s;
  position: relative;
}
.c-card:hover { transform: translateY(-6px); border-color: var(--c-brand-300); box-shadow: 0 24px 48px -14px rgba(13,28,72,.18); }
.c-card-cover {
  aspect-ratio: 16/10; background: linear-gradient(135deg, #dae7ff, #eef4ff);
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding: 18px; position: relative;
}
.c-card-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,17,39,.7));
}
.c-card-cover > * { position: relative; z-index: 1; }
.c-card-tag {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: var(--c-brand-700);
  font-size: 12px; font-weight: 600;
  backdrop-filter: blur(10px);
}
.c-card-body { padding: 22px; }
.c-card-body h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.45; font-weight: 700; }
.c-card-body .c-sub { color: var(--c-ink-400); font-size: 13px; min-height: 40px; line-height: 1.7; }
.c-card-metrics {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--c-ink-100);
}
.c-card-metric-v { font-weight: 800; color: var(--c-brand-700); font-size: 15px; }
.c-card-metric-l { color: var(--c-ink-400); font-size: 11px; margin-top: 2px; }

/* =========== TESTIMONIALS =========== */
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--c-ink-100); height: 100%;
  position: relative;
  transition: all .25s;
}
.testimonial:hover {
  border-color: var(--c-brand-300);
  box-shadow: 0 20px 40px -12px rgba(13,28,72,.1);
  transform: translateY(-4px);
}
.testimonial .quote {
  position: absolute; top: 22px; right: 26px;
  color: var(--c-brand-100); font-size: 80px; line-height: 1;
  font-family: Georgia, serif; z-index: 0;
}
.testimonial .stars { color: var(--c-gold); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial .body {
  color: var(--c-ink-700); font-size: 14.5px; margin: 0 0 18px;
  line-height: 1.85; position: relative;
}
.testimonial .author { display: flex; align-items: center; gap: 12px; position: relative; }
.testimonial .author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff; display: grid; place-items: center; font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(26,95,245,.45);
}
.testimonial .author-info b { display: block; font-size: 14px; font-weight: 600; }
.testimonial .author-info small { color: var(--c-ink-400); font-size: 12px; }

/* =========== PROCESS (服务流程) =========== */
.qib-process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  counter-reset: step;
}
@media (max-width: 960px) { .qib-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .qib-process { grid-template-columns: 1fr; } }
.qib-process-item {
  position: relative; padding: 24px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--c-ink-100);
  counter-increment: step;
  transition: all .25s;
}
.qib-process-item::before {
  content: '0' counter(step);
  position: absolute; top: 16px; right: 18px;
  font-size: 42px; font-weight: 800; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; opacity: .18;
}
.qib-process-item:hover { border-color: var(--c-brand-300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qib-process-item h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.qib-process-item p { margin: 0; color: var(--c-ink-400); font-size: 13px; line-height: 1.7; }

/* =========== TIMELINE =========== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--c-brand-500), var(--c-brand-100));
}
.timeline-item {
  position: relative; padding-bottom: 28px; cursor: pointer;
}
.timeline-item::before {
  content: ''; position: absolute; left: -27px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--c-brand-500);
  box-shadow: 0 0 0 4px var(--c-brand-50);
}
.timeline-item:hover::before { background: var(--c-brand-500); }
.timeline-year {
  font-weight: 800; font-size: 18px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.timeline-title { font-weight: 600; margin: 4px 0 6px; font-size: 15px; }
.timeline-desc { color: var(--c-ink-500); font-size: 13px; line-height: 1.8; }

/* =========== FAQ =========== */
.faq-item {
  background: #fff; border: 1px solid var(--c-ink-100);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: all .2s;
}
.faq-item:hover { border-color: var(--c-brand-300); }
.faq-item.open { border-color: var(--c-brand-400); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 18px 22px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600; font-size: 15px;
}
.faq-q::after {
  content: '+'; font-size: 22px; color: var(--c-brand-500); font-weight: 300;
  transition: transform .2s; line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  color: var(--c-ink-500); padding: 0 22px;
  font-size: 14px; line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 500px; padding: 4px 22px 20px; }

/* =========== PARTNERS =========== */
.qib-partners {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
@media (max-width: 960px) { .qib-partners { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .qib-partners { grid-template-columns: repeat(2, 1fr); } }
.partner {
  aspect-ratio: 3/1.5;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--c-ink-100);
  border-radius: var(--radius); padding: 12px;
  filter: grayscale(1) opacity(.65);
  transition: all .25s;
  font-weight: 700; color: var(--c-ink-500); font-size: 13px;
}
.partner:hover { filter: none; border-color: var(--c-brand-300); transform: translateY(-2px); color: var(--c-brand-700); }

/* =========== CTA (big form card) =========== */
.form-card {
  background: var(--grad-brand);
  border-radius: var(--radius-xl); color: #fff; padding: 56px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(500px 300px at 90% 10%, rgba(255,255,255,.15), transparent),
    radial-gradient(700px 500px at 10% 90%, rgba(124,58,237,.4), transparent),
    radial-gradient(500px 400px at 60% 60%, rgba(6,182,212,.25), transparent);
}
.form-card::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, #000 90%);
}
.form-card > * { position: relative; z-index: 1; }
.form-card h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; }
.form-card .input, .form-card .textarea, .form-card .select {
  background: rgba(255,255,255,.96);
  color: var(--c-ink-900); border-color: transparent;
}
.form-card .input:focus, .form-card .textarea:focus, .form-card .select:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
}
@media (max-width: 768px) { .form-card { padding: 32px 24px; } }

/* =========== FOOTER =========== */
.qib-footer {
  background: #0a1127; color: #b8c4e2;
  padding: 70px 0 30px; margin-top: 100px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.qib-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,95,245,.6), transparent);
}
.qib-footer h5 { color: #fff; font-weight: 600; margin: 0 0 16px; font-size: 14px; }
.qib-footer a { display: block; padding: 5px 0; color: #b8c4e2; }
.qib-footer a:hover { color: #fff; transform: translateX(3px); }
.qib-footer .footer-bottom {
  margin-top: 42px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: #5d6b91;
}

/* =========== TABLE =========== */
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table thead th {
  padding: 14px 12px; text-align: left; font-weight: 600;
  color: var(--c-ink-500); background: var(--c-ink-50);
  font-size: 13px; border-bottom: 1px solid var(--c-ink-100);
}
.table tbody td {
  padding: 14px 12px; border-bottom: 1px solid var(--c-ink-100);
  font-size: 13px; vertical-align: middle;
}
.table tbody tr:hover { background: var(--c-ink-50); }
.badge {
  display: inline-flex; padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.badge-gray    { background: var(--c-ink-100); color: var(--c-ink-500); }
.badge-blue    { background: var(--c-brand-50); color: var(--c-brand-700); }
.badge-green   { background: #d1fae5; color: #065f46; }
.badge-yellow  { background: #fef3c7; color: #92400e; }
.badge-red     { background: #fee2e2; color: #991b1b; }
.badge-purple  { background: #ede9fe; color: #5b21b6; }

/* =========== ADMIN LAYOUT =========== */
.qib-admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--c-ink-50); }
.qib-admin-sidebar {
  background: #0a1127; color: #b8c4e2; position: sticky; top: 0; height: 100vh;
  overflow-y: auto; display: flex; flex-direction: column;
}
.qib-admin-sidebar .brand { padding: 20px 22px; font-weight: 700; display: flex; align-items: center; gap: 10px; color: #fff; }
.qib-admin-sidebar nav { flex: 1; padding: 10px; }
.qib-admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  margin-bottom: 2px; border-radius: 10px; color: #b8c4e2; font-size: 13px;
}
.qib-admin-sidebar nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.qib-admin-sidebar nav a.active {
  background: var(--grad-brand);
  color: #fff;
}
.qib-admin-sidebar .g-title { padding: 12px 14px 4px; font-size: 11px; color: #5a6789; letter-spacing: 1px; }
.qib-admin-main { padding: 30px; overflow-x: auto; }
.qib-admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--c-ink-100);
}
.qib-admin-topbar h1 { margin: 0; font-size: 22px; font-weight: 700; }
@media (max-width: 768px) {
  .qib-admin-shell { grid-template-columns: 1fr; }
  .qib-admin-sidebar { display: none; }
  .qib-admin-sidebar.open { display: block; position: fixed; top: 0; left: 0; bottom: 0; width: 70%; max-width: 280px; z-index: 100; }
}

/* =========== LOADING SKELETON =========== */
.qib-skeleton { background: linear-gradient(90deg, #f0f2f7 0%, #e6e9f0 50%, #f0f2f7 100%); background-size: 200% 100%; animation: sk 1.5s ease-in-out infinite; border-radius: 8px; }
@keyframes sk { to { background-position: -200% 0; } }

/* =========== RICH TEXT =========== */
.prose h2 { font-size: 22px; margin: 28px 0 14px; font-weight: 700; color: var(--c-ink-900); }
.prose h3 { font-size: 18px; margin: 22px 0 10px; font-weight: 700; }
.prose p { margin: 12px 0; line-height: 1.85; color: var(--c-ink-700); }
.prose ul, .prose ol { padding-left: 24px; margin: 12px 0; }
.prose li { margin: 6px 0; line-height: 1.85; color: var(--c-ink-700); }
.prose img { border-radius: 10px; margin: 16px 0; }
.prose blockquote { border-left: 4px solid var(--c-brand-500); padding: 12px 18px; color: var(--c-ink-500); background: var(--c-brand-50); border-radius: 10px; margin: 18px 0; font-style: italic; }
.prose code { background: var(--c-ink-50); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--c-brand-700); }
.prose pre { background: #0a1127; color: #cbd5e1; padding: 18px; border-radius: 12px; overflow-x: auto; font-size: 13px; line-height: 1.7; }
.prose a { color: var(--c-brand-600); text-decoration: underline; }
.prose strong { color: var(--c-ink-900); }

/* =========== PAGINATION =========== */
.pager { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: #fff; border: 1px solid var(--c-ink-100); box-shadow: var(--shadow-xs); }
.pager a, .pager span {
  padding: 7px 13px; border-radius: 999px; font-size: 13px; min-width: 34px;
  text-align: center; color: var(--c-ink-500);
}
.pager a:hover { background: var(--c-brand-50); color: var(--c-brand-700); }
.pager .active, .pager .current {
  background: var(--grad-brand);
  color: #fff; font-weight: 600;
  box-shadow: 0 4px 10px -3px rgba(26,95,245,.45);
}

/* =========== BREADCRUMB =========== */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-ink-400); margin-bottom: 20px; flex-wrap: wrap; }
.crumb a { color: var(--c-ink-500); }
.crumb a:hover { color: var(--c-brand-600); }
.crumb .sep { color: var(--c-ink-200); }

/* =========== ONLINE CHAT =========== */
.qib-chat {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.qib-chat-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 32px -6px rgba(26,95,245,.55);
  transition: transform .15s;
  position: relative;
}
.qib-chat-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(26,95,245,.5);
  animation: pulseBorder 2s ease-out infinite;
}
.qib-chat-btn:hover { transform: scale(1.1); }
.qib-chat-panel {
  width: 320px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--c-ink-100);
  transform: translateY(10px); opacity: 0; pointer-events: none;
  transition: all .2s;
}
.qib-chat-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* =========== LOADING SPLASH =========== */
.qib-splash {
  position: fixed; inset: 0; z-index: 9998;
  background: #fbfdff; display: grid; place-items: center;
}
.qib-splash-inner { text-align: center; }
.qib-splash-logo {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 20px;
  background: var(--grad-brand);
  display: grid; place-items: center; color: #fff;
  animation: splashScale 1.4s ease-in-out infinite;
  box-shadow: 0 14px 32px -6px rgba(26,95,245,.45);
}
@keyframes splashScale { 50% { transform: scale(1.1); } }
.qib-splash-dots { display: flex; gap: 6px; justify-content: center; }
.qib-splash-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-brand-400);
  animation: dot 1s ease-in-out infinite;
}
.qib-splash-dots span:nth-child(2) { animation-delay: .15s; }
.qib-splash-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 50% { opacity: .3; transform: scale(.7); } }

/* =========== REVEAL ON SCROLL =========== */
/* Content is visible by default. JS adds .reveal-init on <html> to enable hidden-then-fade-in */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
html.reveal-init .reveal { opacity: 0; transform: translateY(24px); }
html.reveal-init .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { html.reveal-init .reveal { opacity: 1 !important; transform: none !important; } }
/* 窄屏：兜底避免 reveal-init 下 opacity:0 导致触摸命中异常（与导航断点一致） */
@media (max-width: 960px) {
  html.reveal-init .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========== FEATURE STRIP =========== */
.feature-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--c-ink-100);
  overflow: hidden;
}
.feature-strip > div {
  padding: 28px 22px;
  border-right: 1px solid var(--c-ink-100);
  text-align: center;
}
.feature-strip > div:last-child { border-right: 0; }
.feature-strip b { display: block; font-size: 32px; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-strip small { color: var(--c-ink-400); font-size: 13px; }
@media (max-width: 640px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip > div:nth-child(2) { border-right: 0; }
  .feature-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--c-ink-100); }
}

/* =========== TEAM CARD =========== */
.team-card {
  padding: 26px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--c-ink-100);
  text-align: center; transition: all .25s;
}
.team-card:hover { border-color: var(--c-brand-300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--grad-brand);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 26px;
  box-shadow: 0 10px 22px -6px rgba(26,95,245,.45);
}
.team-card h4 { margin: 0 0 4px; font-size: 16px; }
.team-card .role { color: var(--c-brand-600); font-weight: 600; font-size: 13px; margin-bottom: 10px; }
.team-card .bio { font-size: 13px; color: var(--c-ink-500); line-height: 1.75; }

/* =========== TAG =========== */
.qib-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: var(--c-brand-50); color: var(--c-brand-700);
}
.qib-tag-dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block; margin-right: 4px;
}

/* =========== DIVIDER =========== */
.qib-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--c-ink-300); font-size: 13px;
}
.qib-divider::before, .qib-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-ink-200), transparent);
}

/* =========== ANIMATIONS =========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.anim-fade-up { animation: fadeInUp .6s ease both; }
.anim-scale-in { animation: scaleIn .4s ease both; }
