/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 10 2026 | 10:38:14 */
/* Add your CSS code here.  */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #0a0f1e;
    --ink-mid: #3a3f52;
    --ink-muted: #8a8fa8;
    --bg: #f5f4ef;
    --white: #ffffff;
    --accent: #0e3aff;
    --accent-light: #e8edff;
    --teal: #00c9a7;
    --teal-light: #d4f7f0;
    --amber: #f5a623;
    --amber-light: #fef3dc;
    --border: rgba(10,15,30,0.1);
    --rad: 16px;
    --rad-sm: 8px;
  }



 
  h1 em { font-style: normal; color: var(--accent); }

  .hero-meta {
    display: flex; align-items: center; gap: 24px;
    font-size: 13px; color: var(--ink-muted);
    margin-bottom: 52px;
  }
  .hero-meta-item { display: flex; align-items: center; gap: 6px; }
  .hero-meta-item svg { opacity: 0.5; }

  .hero-img-wrap {
    width: 100%; border-radius: var(--rad);
    overflow: hidden;
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, #0a0f1e 0%, #0e3aff 40%, #00c9a7 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 80px;
  }
  .hero-img-overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-img-text {
    position: relative; z-index: 1; text-align: center;
    color: white;
  }
  .hero-img-text .big-icon {
    font-size: 80px; margin-bottom: 16px; display: block; line-height: 1;
  }
  .hero-img-text p {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
    opacity: 0.92;
  }
  .floating-badge {
    position: absolute; top: 28px; right: 28px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; padding: 8px 16px;
    font-size: 12px; font-weight: 500; color: white;
    display: flex; align-items: center; gap: 6px;
  }
  .pulse-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #00c9a7;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
  }

  /* LAYOUT */
  .layout {
    max-width: 1100px; margin: 0 auto;
    padding: 0 48px 100px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }

 

  /* STATS BANNER */
  .stats-banner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    overflow: hidden;
    margin: 48px 0;
  }
  .stat-cell {
    background: var(--white);
    padding: 28px 24px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 38px;
    color: var(--accent); letter-spacing: -2px;
    line-height: 1; margin-bottom: 8px;
  }
  .stat-label { font-size: 13px; color: var(--ink-muted); line-height: 1.4; }

  /* CAPABILITY CARDS */
  .capability-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 32px 0 48px;
  }
  .cap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 22px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cap-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,15,30,0.08); }
  .cap-icon {
    width: 40px; height: 40px; border-radius: var(--rad-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 14px;
  }
  .cap-icon.blue { background: var(--accent-light); }
  .cap-icon.teal { background: var(--teal-light); }
  .cap-icon.amber { background: var(--amber-light); }
  .cap-icon.ink { background: rgba(10,15,30,0.06); }
  .cap-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
  .cap-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

  /* BENEFITS LIST */
  .benefits-list { list-style: none; margin: 24px 0 40px; }
  .benefits-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px; color: var(--ink-mid);
    line-height: 1.55;
  }
  .benefits-list li:last-child { border-bottom: none; }
  .check-icon {
    width: 22px; height: 22px; min-width: 22px;
    background: var(--teal-light); color: #009e80;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; margin-top: 2px;
  }

  /* INTEGRATION GRID */
  .integration-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin: 28px 0 48px;
  }
  .int-chip {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--rad-sm); padding: 14px 16px;
    font-size: 13px; font-weight: 500; color: var(--ink-mid);
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .int-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

  /* PULLQUOTE */
  .pullquote {
    background: var(--ink); color: white;
    border-radius: var(--rad); padding: 40px 44px;
    margin: 52px 0;
    position: relative; overflow: hidden;
  }
  .pullquote::before {
    content: '"'; position: absolute;
    top: -20px; left: 28px;
    font-family: 'Syne', sans-serif;
    font-size: 160px; font-weight: 800;
    color: rgba(255,255,255,0.06); line-height: 1;
  }
  .pullquote p {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 600; line-height: 1.45;
    color: white; margin: 0;
    letter-spacing: -0.5px;
    position: relative; z-index: 1;
  }
  .pullquote span { color: var(--teal); }

  /* FAQ */
  .faq-list { margin: 28px 0; }
  details {
    border: 1px solid var(--border);
    border-radius: var(--rad-sm); margin-bottom: 10px;
    background: var(--white);
    overflow: hidden;
  }
  details[open] { border-color: rgba(14,58,255,0.3); }
  summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500; font-size: 15px; color: var(--ink);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: '+'; font-family: 'Syne', sans-serif;
    font-size: 20px; color: var(--ink-muted);
    transition: transform 0.2s;
  }
  details[open] summary::after { content: '−'; color: var(--accent); }
  .faq-body { padding: 0 20px 18px; font-size: 14px; color: var(--ink-mid); line-height: 1.7; }

  /* CTA BLOCK */
  .cta-block {
    background: var(--accent); color: white;
    border-radius: var(--rad); padding: 44px;
    text-align: center; margin: 52px 0 0;
  }
  .cta-block h3 {
    font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
    color: white; margin: 0 0 12px; letter-spacing: -0.8px;
  }
  .cta-block p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0 0 28px; }
  .cta-btn {
    display: inline-block;
    background: white; color: var(--accent);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: 0.3px;
    padding: 14px 32px; border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .cta-btn:hover { transform: scale(1.03); }

  /* SIDEBAR */
  .sidebar { position: sticky; top: 100px; }

  .sidebar-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--rad); padding: 24px;
    margin-bottom: 20px;
  }
  .sidebar-title {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--ink-muted); margin-bottom: 18px;
  }

  /* TOC */
  .toc-link {
    display: block; font-size: 13px; color: var(--ink-mid);
    text-decoration: none; padding: 7px 0;
    border-left: 2px solid var(--border);
    padding-left: 14px;
    transition: border-color 0.2s, color 0.2s;
  }
  .toc-link:hover { color: var(--accent); border-color: var(--accent); }

  /* AUTHOR CARD */
  .author-wrap { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
  }
  .author-name { font-weight: 500; font-size: 15px; }
  .author-role { font-size: 12px; color: var(--ink-muted); }

  /* RELATED */
  .related-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer;
  }
  .related-item:last-child { border-bottom: none; }
  .related-thumb {
    width: 54px; height: 44px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .related-title { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.4; }
  .related-date { font-size: 11px; color: var(--ink-muted); margin-top: 3px; }

  /* SHARE */
  .share-row { display: flex; gap: 8px; }
  .share-btn {
    flex: 1; padding: 10px;
    border: 1px solid var(--border); border-radius: var(--rad-sm);
    background: transparent; cursor: pointer;
    font-size: 12px; font-weight: 500; color: var(--ink-mid);
    transition: background 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 5px;
  }

  /* READING PROGRESS */
  .progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--accent); z-index: 200;
    transition: width 0.1s;
    width: 0%;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {

    .layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .capability-grid { grid-template-columns: 1fr; }
    .integration-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-banner { grid-template-columns: 1fr; }
  }

  /* ANIMATION */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.7s ease-out both; }
  .fade-up-1 { animation-delay: 0.1s; }
  .fade-up-2 { animation-delay: 0.22s; }
  .fade-up-3 { animation-delay: 0.34s; }
  .fade-up-4 { animation-delay: 0.46s; }

/* End of comment */ 

