:root {
      --navy: #0F2439; --navy-mid: #1a2f4a; --navy-light: #243b5c;
      --accent: #3B82F6; --accent-light: #60A5FA;
      --green: #10B981; --green-light: #34D399; --gold: #F59E0B;
      --white: #ffffff; --gray-100: #f1f5f9; --gray-200: #e2e8f0;
      --text: #1e293b; --text-light: #64748b; --text-lighter: #94a3b8;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; }
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(15,36,57,0.97); backdrop-filter: blur(12px);
      padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(59,130,246,0.15);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 0.9rem 0; }
    .nav-brand .logo-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: linear-gradient(135deg, var(--accent), #2563EB);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 900; color: var(--white);
    }
    .nav-brand .brand-text { color: var(--white); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.3px; }
    .nav-brand .brand-text em { color: var(--accent-light); font-style: normal; }
    .nav-links { display: flex; gap: 0.25rem; align-items: center; }
    .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.9rem; transition: all 0.2s; }
    .nav-links a:hover { background: rgba(59,130,246,0.1); color: var(--accent-light); }
    .nav-links a.active { color: var(--accent-light); }
    .nav-cta { background: var(--accent) !important; color: var(--white) !important; font-weight: 600 !important; padding: 0.5rem 1.25rem !important; border-radius: 6px !important; }
    .nav-cta:hover { background: #2563EB !important; }

    .post-hero {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
      color: var(--white); padding: 4rem 2rem 3.5rem;
    }
    .post-hero .container { max-width: 760px; margin: 0 auto; }
    .back-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem;
      margin-bottom: 1.5rem; transition: color 0.2s;
    }
    .back-link:hover { color: var(--accent-light); }
    .post-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
    .post-tag {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 0.25rem 0.75rem; border-radius: 50px;
    }
    .post-tag.blue { background: rgba(59,130,246,0.2); color: var(--accent-light); }
    .post-date, .read-time { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
    .post-hero h1 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
      line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.3px;
    }
    .post-hero .subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 640px; }

    .article-wrap { background: var(--white); padding: 3.5rem 2rem 4rem; }
    .article-body { max-width: 720px; margin: 0 auto; }
    .article-body p { font-size: 1.02rem; color: var(--text); line-height: 1.85; margin-bottom: 1.5rem; }
    .article-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; letter-spacing: -0.2px; }
    .article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.75rem 0 0.75rem; }
    .article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
    .article-body li { font-size: 1.02rem; color: var(--text); line-height: 1.8; margin-bottom: 0.5rem; }
    .article-body strong { color: var(--navy); }
    .callout {
      background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
      border-left: 4px solid var(--accent); border-radius: 0 10px 10px 0;
      padding: 1.25rem 1.5rem; margin: 2rem 0;
    }
    .callout p { margin: 0; color: var(--navy); font-size: 0.97rem; }
    .callout strong { color: var(--accent); }
    .stat-block {
      background: var(--gray-100); border-radius: 12px; padding: 1.5rem 2rem;
      margin: 2rem 0; text-align: center; border: 1px solid var(--gray-200);
    }
    .stat-block .num { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
    .stat-block .label { font-size: 0.95rem; color: var(--text-light); margin-top: 0.5rem; }
    .divider { border: none; border-top: 1px solid var(--gray-200); margin: 2.5rem 0; }

    .article-cta {
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      padding: 3.5rem 2rem; text-align: center; color: var(--white);
    }
    .article-cta h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
    .article-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.75rem; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 0.97rem; }
    .btn-primary {
      display: inline-block; background: var(--accent); color: var(--white);
      padding: 0.9rem 2.25rem; border-radius: 8px; font-weight: 700;
      font-size: 0.97rem; text-decoration: none; transition: all 0.25s;
    }
    .btn-primary:hover { background: #2563EB; transform: translateY(-2px); }

    .related-posts { background: var(--gray-100); padding: 3rem 2rem; }
    .related-posts .container { max-width: 760px; margin: 0 auto; }
    .related-posts h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
    .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .related-card {
      background: var(--white); border-radius: 10px; padding: 1.25rem 1.5rem;
      border: 1px solid var(--gray-200); text-decoration: none; color: var(--text);
      transition: all 0.2s; display: block;
    }
    .related-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,36,57,0.08); }
    .related-card .tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 0.5rem; }
    .related-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

    footer { background: #080f1a; color: rgba(255,255,255,0.5); padding: 3rem 2rem 1.5rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-brand-text { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.7); }
    .footer-brand-text em { color: var(--accent-light); font-style: normal; }
    .footer-powered { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-powered a { color: rgba(255,255,255,0.55); text-decoration: none; }
    .footer-powered a:hover { color: var(--accent-light); }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }
    .footer-links a:hover { color: var(--accent-light); }

    @media (max-width: 900px) { .nav-links { display: none; } }
    @media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* Extracted inline style attributes */
._ts-001 { color:var(--text-lighter); font-size:0.9rem; }
._ts-002 { color:var(--accent); }
._ts-003 { font-size:0.82rem; }
