*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --ink: #0f0f0f;
            --ink-light: #555;
            --ink-muted: #999;
            --accent: #1a4ed8;
            --accent-light: #eff4ff;
            --border: #e8e8e4;
            --bg: #fafaf8;
            --white: #ffffff;
            --serif: 'DM Serif Display', Georgia, serif;
            --sans: 'DM Sans', system-ui, sans-serif
        }

        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased
        }

        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 250, 248, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px
        }

        .nav-logo {
            font-family: var(--serif);
            font-size: 20px;
            color: var(--ink);
            text-decoration: none
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center
        }

        .nav-links a {
            font-size: 14px;
            color: var(--ink-light);
            text-decoration: none;
            transition: color 0.2s
        }

        .nav-links a:hover {
            color: var(--ink)
        }

        .nav-cta {
            background: var(--ink) !important;
            color: var(--white) !important;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 13px !important;
            font-weight: 500 !important
        }

        .hero {
            padding: 100px 48px 80px;
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-light);
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 20px
        }

        .hero h1 {
            font-family: var(--serif);
            font-size: 52px;
            line-height: 1.1;
            letter-spacing: -1px;
            color: var(--ink);
            margin-bottom: 20px
        }

        .hero h1 em {
            font-style: italic;
            color: var(--accent)
        }

        .hero-sub {
            font-size: 17px;
            color: var(--ink-light);
            line-height: 1.7;
            margin-bottom: 36px;
            font-weight: 300
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .btn-primary {
            background: var(--ink);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s
        }

        .btn-primary:hover {
            background: var(--accent)
        }

        .btn-secondary {
            background: transparent;
            color: var(--ink);
            padding: 12px 28px;
            border-radius: 100px;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid var(--border);
            transition: border-color 0.2s
        }

        .btn-secondary:hover {
            border-color: var(--ink)
        }

        .hero-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06)
        }

        .hero-card-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink-muted);
            margin-bottom: 20px
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 28px
        }

        .stat {
            padding: 16px;
            background: var(--bg);
            border-radius: 12px
        }

        .stat-number {
            font-family: var(--serif);
            font-size: 32px;
            color: var(--ink);
            line-height: 1;
            margin-bottom: 4px
        }

        .stat-label {
            font-size: 12px;
            color: var(--ink-muted)
        }

        .expertise-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px
        }

        .tag {
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 100px;
            border: 1px solid var(--border);
            color: var(--ink-light)
        }

        .tag.accent {
            background: var(--accent-light);
            border-color: transparent;
            color: var(--accent)
        }

        .newsletter {
            background: var(--ink);
            margin: 60px auto;
            border-radius: 24px;
            padding: 64px;
            max-width: 1004px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }

        .newsletter h2 {
            font-family: var(--serif);
            font-size: 36px;
            color: var(--white);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 12px
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            font-weight: 300
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 14px 18px;
            color: var(--white);
            font-family: var(--sans);
            font-size: 14px;
            outline: none
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4)
        }

        .newsletter-btn {
            background: var(--white);
            color: var(--ink);
            border: none;
            border-radius: 12px;
            padding: 14px 24px;
            font-family: var(--sans);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer
        }

        .newsletter-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35)
        }

        .posts-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 48px
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px
        }

        .section-title {
            font-family: var(--serif);
            font-size: 32px;
            letter-spacing: -0.5px
        }

        .section-link {
            font-size: 14px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px
        }

        .post-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s
        }

        .post-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08)
        }

        .post-card-img {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #e8f0fe 0%, #c7d7fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px
        }

        .post-card-body {
            padding: 24px
        }

        .post-tag {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px
        }

        .post-title {
            font-family: var(--serif);
            font-size: 19px;
            line-height: 1.3;
            color: var(--ink);
            margin-bottom: 10px
        }

        .post-excerpt {
            font-size: 13px;
            color: var(--ink-muted);
            line-height: 1.6;
            margin-bottom: 16px
        }

        .post-meta {
            font-size: 12px;
            color: var(--ink-muted)
        }

        .about-strip {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 60px 48px
        }

        .about-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 48px;
            align-items: center
        }

        .about-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a4ed8, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--serif);
            font-size: 28px;
            color: white;
            flex-shrink: 0
        }

        .about-text h3 {
            font-family: var(--serif);
            font-size: 22px;
            margin-bottom: 6px
        }

        .about-text p {
            font-size: 14px;
            color: var(--ink-light);
            font-weight: 300;
            max-width: 500px
        }

        .linkedin-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0077b5;
            color: white;
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap
        }

        .linkedin-btn:hover {
            background: #005885
        }

        footer {
            padding: 40px 48px;
            text-align: center;
            font-size: 13px;
            color: var(--ink-muted);
            border-top: 1px solid var(--border)
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hero-left>* {
            animation: fadeUp 0.6s ease both
        }

        .hero-left>*:nth-child(1) {
            animation-delay: 0.1s
        }

        .hero-left>*:nth-child(2) {
            animation-delay: 0.2s
        }

        .hero-left>*:nth-child(3) {
            animation-delay: 0.3s
        }

        .hero-left>*:nth-child(4) {
            animation-delay: 0.4s
        }

        .hero-card {
            animation: fadeUp 0.6s ease 0.3s both
        }

        @media(max-width:768px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 60px 24px 40px
            }

            .hero h1 {
                font-size: 36px
            }

            .newsletter {
                grid-template-columns: 1fr;
                padding: 40px 24px;
                margin: 40px 24px
            }

            .posts-grid {
                grid-template-columns: 1fr
            }

            .about-inner {
                grid-template-columns: 1fr;
                text-align: center
            }

            .nav-links {
                gap: 16px
            }

            nav {
                padding: 0 24px
            }
        }

        /* Ghost Image Styles */
        .kg-width-wide {
            min-width: 100%;
        }

        .kg-width-full {
            min-width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        .post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
        .post-content p { margin-bottom: 1.5em; }
        .post-content h2 { font-family: var(--serif); font-size: 32px; margin-top: 1.5em; margin-bottom: 0.5em; }
        .post-content h3 { font-family: var(--serif); font-size: 24px; margin-top: 1.5em; margin-bottom: 0.5em; }
        .post-content a { color: var(--accent); text-decoration: none; }
        .post-content a:hover { text-decoration: underline; }
        .post-content blockquote { border-left: 4px solid var(--accent); padding-left: 20px; font-style: italic; color: var(--ink-light); margin: 24px 0; }
        