:root {
  --ccjv-bg: #08111f;
  --ccjv-bg-soft: #0d1728;
  --ccjv-panel: rgba(15, 23, 42, 0.76);
  --ccjv-card: #0f172a;
  --ccjv-card-light: #ffffff;
  --ccjv-text: #dce7f7;
  --ccjv-text-dark: #102033;
  --ccjv-muted: #9eb2ca;
  --ccjv-border: rgba(255,255,255,.1);
  --ccjv-accent: #3b82f6;
  --ccjv-accent-2: #38bdf8;
  --ccjv-shadow: 0 20px 60px rgba(0,0,0,.35);
  --ccjv-radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ccjv-worldclass-theme {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ccjv-text-dark);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 22%),
    radial-gradient(circle at top right, rgba(56,189,248,.14), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #0a1628 16%, #edf3fb 16.1%, #edf3fb 100%);
}
a { color: inherit; text-decoration: none; }
.ccjv-container, .ccjv-container-wide {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.ccjv-container-wide { width: min(1400px, calc(100% - 40px)); }
.ccjv-site-header {
  position: sticky; top: 0; z-index: 999;
  background: linear-gradient(180deg, rgba(8,17,31,.96), rgba(8,17,31,.84));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  background-size: cover;
  background-position: center;
}
.ccjv-header-inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.ccjv-brand { display: flex; gap: 14px; align-items: center; color: #fff; font-weight: 800; letter-spacing: .04em; }
.ccjv-brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 12px; background: rgba(255,255,255,.07); padding: 4px; }
.ccjv-nav-menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; justify-content: center; flex-wrap: wrap; }
.ccjv-nav-menu a { color: #c9d7ea; font-weight: 600; font-size: 14px; }
.ccjv-nav-menu a:hover { color: #fff; }
.ccjv-header-actions { display: flex; gap: 12px; align-items: center; }
.ccjv-mobile-toggle { display: none; }
.ccjv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 14px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease; cursor: pointer;
}
.ccjv-btn:hover { transform: translateY(-1px); }
.ccjv-btn-primary { background: linear-gradient(135deg, var(--ccjv-accent), var(--ccjv-accent-2)); color: #fff; box-shadow: 0 12px 30px rgba(59,130,246,.28); }
.ccjv-btn-secondary { background: rgba(59,130,246,.12); color: #d9ecff; border-color: rgba(59,130,246,.3); }
.ccjv-btn-ghost { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.12); }
.ccjv-site-main { min-height: 60vh; }
.ccjv-hero {
  position: relative;
  padding: 86px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.22), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(56,189,248,.16), transparent 25%),
    linear-gradient(180deg, rgba(8,17,31,.74), rgba(8,17,31,.88));
  background-size: cover;
  background-position: center;
}
.ccjv-hero:before {
  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: linear-gradient(180deg, rgba(0,0,0,.65), transparent 85%);
  pointer-events: none;
}
.ccjv-eyebrow { color: #8bc5ff; font-weight: 700; letter-spacing: .14em; font-size: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
.ccjv-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin: 0 0 18px; max-width: 1000px; position: relative; z-index: 1; }
.ccjv-hero-text { font-size: 19px; line-height: 1.7; color: #d7e5f6; max-width: 820px; position: relative; z-index: 1; }
.ccjv-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 40px; position: relative; z-index: 1; }
.ccjv-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.ccjv-hero-stats div {
  padding: 24px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(10px);
}
.ccjv-hero-stats strong { display: block; font-size: 24px; margin-bottom: 8px; }
.ccjv-hero-stats span { color: #cdddef; }
.ccjv-section, .ccjv-page-section { padding: 80px 0; }
.ccjv-section-dark { background: linear-gradient(180deg, #0e1828, #091221); color: #fff; }
.ccjv-section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.ccjv-section-head h2 { font-size: clamp(30px, 4vw, 48px); margin: 0; }
.ccjv-section-head p { margin: 0; color: #60748d; max-width: 660px; line-height: 1.6; }
.ccjv-section-dark .ccjv-section-head p { color: #b4c4da; }
.ccjv-card-grid { display: grid; gap: 20px; }
.ccjv-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ccjv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ccjv-card, .ccjv-content-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,32,51,.08);
  border-radius: var(--ccjv-radius);
  box-shadow: var(--ccjv-shadow);
  padding: 30px;
  overflow: hidden;
}
.ccjv-section-dark .ccjv-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); color: #fff; }
.route-card span { display:inline-flex; width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,.12); align-items:center; justify-content:center; font-weight: 800; color: var(--ccjv-accent); }
.route-card h3, .pricing-card h3 { font-size: 24px; margin: 18px 0 12px; }
.route-card p, .pricing-card p { color: #5c7188; line-height: 1.65; }
.ccjv-section-dark .route-card p, .ccjv-section-dark .pricing-card p { color: #c4d3e6; }
.route-card a { margin-top: 20px; display: inline-block; font-weight: 700; color: var(--ccjv-accent); }
.pricing-card ul { padding-left: 18px; line-height: 1.9; color: inherit; }
.erp-embed { min-height: 200px; }
.entry-title { margin-top: 0; font-size: clamp(30px, 5vw, 54px); }
.entry-content { line-height: 1.75; color: #4b6077; }
.ccjv-dashboard-page .ccjv-container-wide { background: rgba(255,255,255,.48); padding: 24px; border-radius: 30px; }
.ccjv-missing-plugin {
  border: 1px dashed rgba(59,130,246,.4);
  border-radius: 24px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(59,130,246,.06), rgba(56,189,248,.04));
}
.ccjv-site-footer {
  padding: 64px 0 24px;
  color: #d7e5f6;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.12), transparent 18%),
    linear-gradient(180deg, #08111f, #050a12);
  background-size: cover;
  background-position: center;
}
.ccjv-footer-grid {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}
.ccjv-site-footer h3, .ccjv-site-footer h4 { margin-top: 0; color: #fff; }
.ccjv-site-footer ul { list-style: none; padding: 0; margin: 0; }
.ccjv-site-footer li { margin: 0 0 10px; }
.ccjv-site-footer a { color: #c4d6ea; }
.ccjv-site-footer a:hover { color: #fff; }
.ccjv-footer-bottom { width: min(1400px, calc(100% - 40px)); margin: 0 auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #90a7c3; }

@media (max-width: 1100px) {
  .ccjv-grid-4, .ccjv-hero-stats, .ccjv-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .ccjv-header-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 840px) {
  .ccjv-primary-nav { display: none; }
  .ccjv-mobile-toggle { display: inline-flex; min-width: 46px; min-height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); color: white; }
  .ccjv-hero h1 { font-size: clamp(34px, 8vw, 56px); }
  .ccjv-grid-4, .ccjv-grid-2, .ccjv-hero-stats, .ccjv-footer-grid, .ccjv-section-head { grid-template-columns: 1fr; display: grid; }
  .ccjv-header-inner { grid-template-columns: 1fr auto; }
  .ccjv-header-actions .ccjv-btn-ghost { display: none; }
}
