
    :root {
      --bg-color: #F5F3FF;
      --card-bg: #ffffff;
      --accent: #A78BFA;
      --accent-soft: #EDE9FE;
      --accent-dark: #6D28D9;
      --text-main: #0F172A;
      --text-muted: #6B7280;
      --border-subtle: #E5E7EB;
      --radius-lg: 18px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #E0E7FF 0, #F5F3FF 40%, #F9FAFB 100%);
      color: var(--text-main);
      line-height: 1.7;
    }

    .page-wrapper {
      padding: 1.5rem 1rem 3rem;
    }

    .blog-container {
      max-width: 980px;
      margin: 0 auto;
      background: var(--card-bg);
      border-radius: 28px;
      padding: 2rem 1.5rem 2.7rem;
      box-shadow: 0 18px 50px rgba(88, 28, 135, 0.15);
    }

    @media (min-width: 768px) {
      .page-wrapper {
        padding: 2.5rem 1.5rem 4rem;
      }
      .blog-container {
        padding: 2.5rem 3rem 3rem;
      }
    }

    header.blog-header {
      border-bottom: 1px solid var(--border-subtle);
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
    }

    .blog-kicker {
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 1.9rem;
      margin: 0 0 0.75rem;
    }

    @media (min-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }
    }

    .blog-meta {
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .meta-pill {
      padding: 0.2rem 0.7rem;
      background: var(--accent-soft);
      border-radius: 999px;
      font-size: 0.8rem;
      color: var(--accent-dark);
      font-weight: 500;
    }

    .hero-image {
      margin: 1.8rem 0 2rem;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #DDD6FE, #FDF2FF);
      border: 1px solid #E5E7EB;
    }

    .hero-image img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .hero-caption {
      position: absolute;
      left: 1.2rem;
      bottom: 1.2rem;
      background: rgba(15, 23, 42, 0.72);
      color: #F9FAFB;
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      font-size: 0.78rem;
    }

    .intro {
      margin-bottom: 2.4rem;
      font-size: 1rem;
    }

    .intro p {
      margin: 0.6rem 0;
    }

    .note {
      border-left: 4px solid var(--accent);
      background: #F5F3FF;
      padding: 0.85rem 1rem;
      font-size: 0.9rem;
      border-radius: 0 14px 14px 0;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    .toc {
      background: #F9FAFB;
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.6rem;
      margin-bottom: 2.5rem;
      border: 1px solid var(--border-subtle);
    }

    .toc h2 {
      font-size: 1.05rem;
      margin-top: 0;
      margin-bottom: 0.75rem;
    }

    .toc ol {
      margin: 0;
      padding-left: 1.25rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .toc a {
      text-decoration: none;
      color: inherit;
    }

    .toc a:hover {
      color: var(--accent-dark);
      text-decoration: underline;
    }

    h2 {
      font-size: 1.4rem;
      margin: 2.1rem 0 0.85rem;
    }

    h3 {
      font-size: 1.1rem;
      margin: 1.6rem 0 0.4rem;
    }

    p {
      margin: 0.45rem 0 0.8rem;
    }

    ul, ol {
      padding-left: 1.25rem;
      margin: 0.3rem 0 1rem;
    }

    li {
      margin: 0.25rem 0;
    }

    .tagline {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    .two-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 1rem 0 1.8rem;
    }

    @media (min-width: 900px) {
      .two-column {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
      }
    }

    .info-card {
      background: #F9FAFB;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 1.1rem 1.2rem 1.2rem;
      font-size: 0.93rem;
    }

    .info-card strong {
      display: block;
      margin-bottom: 0.35rem;
    }

    .step {
      margin-bottom: 1.7rem;
      padding-bottom: 1.4rem;
      border-bottom: 1px dashed #E5E7EB;
    }

    .step:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0.4rem;
    }

    .step-label {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-dark);
      margin-bottom: 0.25rem;
    }

    .step-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .checklist {
      list-style: none;
      padding-left: 0;
      margin-top: 0.4rem;
    }

    .checklist li::before {
      content: "✓";
      color: var(--accent-dark);
      margin-right: 0.45rem;
      font-weight: 700;
    }

    .cta-block {
      margin: 2.6rem 0;
      padding: 1.7rem 1.4rem;
      border-radius: 22px;
      background: radial-gradient(circle at top left, #DDD6FE, #FAF5FF 40%, #ffffff 100%);
      border: 1px solid #E9D5FF;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .cta-eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      font-weight: 600;
      color: var(--accent-dark);
    }

    .cta-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .cta-text {
      font-size: 0.95rem;
      color: #111827;
    }

    .cta-actions {
      margin-top: 0.7rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      box-shadow: 0 10px 30px rgba(88, 28, 135, 0.32);
      white-space: nowrap;
    }

    .btn-primary span {
      margin-left: 0.4rem;
      font-size: 1.15rem;
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 36px rgba(88, 28, 135, 0.42);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 8px 18px rgba(88, 28, 135, 0.36);
    }

    .tip {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: #F3E8FF;
      color: #6B21A8;
      border-radius: 999px;
      padding: 0.2rem 0.7rem;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }

    footer.blog-footer {
      border-top: 1px solid var(--border-subtle);
      margin-top: 2.8rem;
      padding-top: 1.2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
  