            :root {
                --navy: #05152b;
                --navy-light: #0c1f3a;
                --blue: #0d8fdb;
                --blue-glow: #4db8ff;
                --green: #2ecc71;
                --green-glow: #5ee397;
                --ink: #0a1628;
                --muted: #7a8ba3;
                --soft: #f0f4f8;
                --line: #e1e8f0;
                --radius: 20px;
                --radius-lg: 28px;
                --shadow: 0 8px 40px rgba(5, 21, 43, 0.1);
                --shadow-lg: 0 24px 80px rgba(5, 21, 43, 0.14);
                --max: 1200px;
                --sans: Inter, system-ui, sans-serif;
                --display: "Space Grotesk", Inter, sans-serif;
            }
            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                scroll-behavior: smooth;
            }
            body {
                font-family: var(--sans);
                color: var(--ink);
                background: #fff;
                line-height: 1.6;
                overflow-x: hidden;
            }
            a {
                text-decoration: none;
                color: inherit;
            }
            img {
                max-width: 100%;
                display: block;
            }
            button,
            input {
                font: inherit;
            }
            .container {
                width: min(var(--max), calc(100% - 48px));
                margin: auto;
            }
            .section {
                padding: 100px 0;
            }
            .kicker {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: var(--blue);
                font-family: var(--display);
            }
            .kicker::before {
                content: "";
                width: 28px;
                height: 2.5px;
                background: var(--green);
                border-radius: 99px;
            }

            .nav {
                position: fixed;
                inset: 0 0 auto;
                z-index: 100;
                height: 76px;
                background: rgba(5, 21, 43, 0.75);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transition: all 0.3s;
            }
            .nav.scrolled {
                background: rgba(5, 21, 43, 0.92);
                box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            }
            .nav-inner {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 28px;
            }
            .logo img {
                height: 38px;
                width: auto;
                filter: brightness(0) invert(1);
            }
            .nav-links {
                display: flex;
                align-items: center;
                gap: 6px;
                list-style: none;
            }
            .nav-links a {
                padding: 9px 14px;
                border-radius: 10px;
                color: rgba(255, 255, 255, 0.55);
                font-size: 0.84rem;
                font-weight: 600;
                transition: all 0.2s;
            }
            .nav-links a:hover,
            .nav-links a.active {
                color: #fff;
                background: rgba(255, 255, 255, 0.08);
            }
            .nav-actions {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .btn {
                min-height: 48px;
                padding: 11px 22px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 9px;
                border: 1px solid transparent;
                font-size: 0.85rem;
                font-weight: 700;
                transition: all 0.3s;
                cursor: pointer;
                font-family: var(--sans);
            }
            .btn:hover {
                transform: translateY(-2px);
            }
            .btn-primary {
                background: var(--blue);
                color: #fff;
                box-shadow: 0 10px 28px rgba(13, 143, 219, 0.35);
            }
            .btn-primary:hover {
                background: #0a7ec7;
            }
            .btn-ghost-nav {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
                border-color: rgba(255, 255, 255, 0.15);
            }
            .btn-ghost-nav:hover {
                background: rgba(255, 255, 255, 0.14);
            }
            .menu-btn {
                display: none;
                border: 0;
                background: transparent;
                color: #fff;
                font-size: 1.3rem;
                cursor: pointer;
                width: 44px;
                height: 44px;
                border-radius: 10px;
            }
            .menu-btn:hover {
                background: rgba(255, 255, 255, 0.08);
            }
            .mobile-panel {
                display: none;
                position: fixed;
                top: 76px;
                left: 0;
                right: 0;
                z-index: 99;
                background: rgba(5, 21, 43, 0.96);
                backdrop-filter: blur(20px);
                padding: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                flex-direction: column;
                gap: 4px;
            }
            .mobile-panel.open {
                display: flex;
            }
            .mobile-panel a {
                padding: 14px 16px;
                border-radius: 12px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.7);
                font-size: 0.9rem;
                transition: all 0.2s;
            }
            .mobile-panel a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
            }
            .mobile-panel .btn {
                margin-top: 8px;
                justify-content: center;
            }

            .hero-blog {
                position: relative;
                min-height: 420px;
                background: linear-gradient(135deg, var(--navy) 0%, #0a1f3d 50%, #0d2847 100%);
                display: flex;
                align-items: center;
                overflow: hidden;
                padding-top: 76px;
            }
            .hero-blog::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(13, 143, 219, 0.1) 0%, transparent 60%),
                    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }
            .hero-blog-inner {
                position: relative;
                z-index: 2;
                padding: 80px 0 60px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-blog .kicker {
                color: var(--blue-glow);
                opacity: 0.9;
                margin-bottom: 16px;
            }
            .hero-blog .kicker::before {
                background: var(--green-glow);
            }
            .hero-blog h1 {
                font-family: var(--display);
                font-size: clamp(2.6rem, 5.5vw, 4.6rem);
                line-height: 1;
                letter-spacing: -0.04em;
                color: #fff;
                margin-bottom: 18px;
                font-weight: 700;
            }
            .hero-blog h1 em {
                font-style: normal;
                background: linear-gradient(90deg, var(--blue-glow), var(--green-glow));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            .hero-blog .lead {
                font-size: 1.1rem;
                color: rgba(255, 255, 255, 0.5);
                max-width: 580px;
                line-height: 1.7;
                margin-bottom: 32px;
            }
            .blog-search {
                display: flex;
                gap: 10px;
                max-width: 520px;
                width: 100%;
                background: rgba(255, 255, 255, 0.06);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 14px;
                padding: 6px;
                backdrop-filter: blur(12px);
            }
            .blog-search input {
                flex: 1;
                min-height: 48px;
                padding: 0 18px;
                border-radius: 10px;
                background: transparent;
                border: none;
                outline: none;
                color: #fff;
                font-size: 0.9rem;
            }
            .blog-search input::placeholder {
                color: rgba(255, 255, 255, 0.35);
            }
            .blog-search button {
                min-height: 48px;
                padding: 0 20px;
                border-radius: 10px;
                background: var(--green);
                color: var(--navy);
                border: none;
                font-size: 0.85rem;
                font-weight: 800;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                transition: all 0.2s;
                font-family: var(--sans);
            }
            .blog-search button:hover {
                background: var(--green-glow);
            }

            .blog-filters {
                background: #fff;
                border-bottom: 1px solid var(--line);
                padding: 16px 0;
                position: sticky;
                top: 76px;
                z-index: 50;
            }
            .filter-pills {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                align-items: center;
            }
            .filter-pill {
                padding: 8px 18px;
                border-radius: 100px;
                border: 1px solid var(--line);
                background: #fff;
                color: var(--muted);
                font-size: 0.78rem;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.2s;
                font-family: var(--sans);
            }
            .filter-pill:hover {
                border-color: var(--blue);
                color: var(--blue);
            }
            .filter-pill.active {
                background: var(--navy);
                color: #fff;
                border-color: var(--navy);
            }

            .featured-post {
                display: grid;
                grid-template-columns: 1.2fr 1fr;
                gap: 0;
                background: #fff;
                border-radius: var(--radius-lg);
                overflow: hidden;
                border: 1px solid var(--line);
                margin-bottom: 48px;
                box-shadow: var(--shadow);
                transition: all 0.3s;
            }
            .featured-post:hover {
                box-shadow: var(--shadow-lg);
                border-color: transparent;
            }
            .featured-image {
                position: relative;
                min-height: 400px;
                background: linear-gradient(135deg, var(--navy), var(--navy-light));
                overflow: hidden;
            }
            .featured-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                inset: 0;
                opacity: 0.7;
                transition: transform 0.6s;
            }
            .featured-post:hover .featured-image img {
                transform: scale(1.05);
            }
            .featured-badge {
                position: absolute;
                top: 20px;
                left: 20px;
                padding: 6px 14px;
                border-radius: 8px;
                background: var(--blue);
                color: #fff;
                font-size: 0.7rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                z-index: 3;
            }
            .featured-content {
                padding: 44px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .featured-meta {
                display: flex;
                align-items: center;
                gap: 14px;
                margin-bottom: 16px;
                flex-wrap: wrap;
            }
            .featured-meta span {
                font-size: 0.75rem;
                color: var(--muted);
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            .featured-meta i {
                font-size: 0.65rem;
                color: var(--blue);
            }
            .featured-content h2 {
                font-family: var(--display);
                font-size: clamp(1.4rem, 2.5vw, 1.9rem);
                color: var(--navy);
                line-height: 1.15;
                margin-bottom: 14px;
                font-weight: 700;
                letter-spacing: -0.02em;
            }
            .featured-content p {
                color: var(--muted);
                font-size: 0.95rem;
                line-height: 1.7;
                margin-bottom: 24px;
            }
            .read-link {
                font-size: 0.85rem;
                font-weight: 700;
                color: var(--blue);
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: gap 0.2s;
            }
            .read-link:hover {
                gap: 14px;
            }

            .blog-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .blog-card {
                background: #fff;
                border-radius: var(--radius-lg);
                border: 1px solid var(--line);
                overflow: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                flex-direction: column;
            }
            .blog-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-lg);
                border-color: transparent;
            }
            .blog-card-image {
                position: relative;
                height: 220px;
                overflow: hidden;
                background: linear-gradient(135deg, var(--navy), var(--navy-light));
            }
            .blog-card-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.65;
                transition:
                    transform 0.6s,
                    opacity 0.3s;
            }
            .blog-card:hover .blog-card-image img {
                transform: scale(1.08);
                opacity: 0.8;
            }
            .blog-card-category {
                position: absolute;
                top: 14px;
                left: 14px;
                padding: 5px 12px;
                border-radius: 8px;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(8px);
                color: #fff;
                font-size: 0.68rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.06em;
            }
            .blog-card-body {
                padding: 24px;
                flex: 1;
                display: flex;
                flex-direction: column;
            }
            .blog-card-meta {
                display: flex;
                gap: 12px;
                margin-bottom: 10px;
                flex-wrap: wrap;
            }
            .blog-card-meta span {
                font-size: 0.72rem;
                color: var(--muted);
                font-weight: 600;
            }
            .blog-card h3 {
                font-family: var(--display);
                font-size: 1.05rem;
                color: var(--navy);
                margin-bottom: 10px;
                font-weight: 700;
                line-height: 1.3;
                letter-spacing: -0.01em;
                flex: 1;
            }
            .blog-card p {
                font-size: 0.82rem;
                color: var(--muted);
                line-height: 1.6;
                margin-bottom: 16px;
            }
            .blog-card-footer {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-top: 14px;
                border-top: 1px solid var(--line);
            }
            .blog-card-footer span {
                font-size: 0.72rem;
                color: var(--muted);
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            .blog-card-footer i {
                color: var(--blue);
            }

            .pagination {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 56px;
            }
            .page-btn {
                width: 44px;
                height: 44px;
                border-radius: 12px;
                border: 1px solid var(--line);
                background: #fff;
                color: var(--muted);
                font-size: 0.85rem;
                font-weight: 700;
                display: grid;
                place-items: center;
                cursor: pointer;
                transition: all 0.2s;
                font-family: var(--sans);
            }
            .page-btn:hover {
                border-color: var(--blue);
                color: var(--blue);
            }
            .page-btn.active {
                background: var(--navy);
                color: #fff;
                border-color: var(--navy);
            }

            .newsletter {
                background: var(--soft);
                padding: 80px 0;
            }
            .newsletter-card {
                background: linear-gradient(120deg, #05152b, #0c2847);
                border-radius: var(--radius-lg);
                padding: 56px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
                color: #fff;
                overflow: hidden;
                position: relative;
                box-shadow: var(--shadow-lg);
            }
            .newsletter-card::before {
                content: "";
                position: absolute;
                width: 500px;
                height: 500px;
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 50%;
                right: -150px;
                bottom: -300px;
            }
            .newsletter-card > * {
                position: relative;
                z-index: 2;
            }
            .newsletter-card h2 {
                font-family: var(--display);
                font-size: clamp(1.6rem, 3vw, 2.4rem);
                line-height: 1.1;
                letter-spacing: -0.03em;
                max-width: 500px;
                font-weight: 700;
            }
            .newsletter-card p {
                color: rgba(255, 255, 255, 0.45);
                max-width: 420px;
                margin-top: 12px;
                font-size: 0.95rem;
            }
            .newsletter-form {
                display: flex;
                gap: 10px;
                max-width: 420px;
                width: 100%;
            }
            .newsletter-form input {
                flex: 1;
                min-height: 52px;
                padding: 0 20px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.12);
                color: #fff;
                font-size: 0.9rem;
                outline: none;
            }
            .newsletter-form input::placeholder {
                color: rgba(255, 255, 255, 0.35);
            }
            .newsletter-form button {
                min-height: 52px;
                padding: 0 24px;
                border-radius: 12px;
                background: var(--green);
                color: var(--navy);
                border: none;
                font-size: 0.85rem;
                font-weight: 800;
                cursor: pointer;
                white-space: nowrap;
                transition: all 0.2s;
                font-family: var(--sans);
            }
            .newsletter-form button:hover {
                background: var(--green-glow);
            }

            .footer {
                background: #040e1c;
                color: #fff;
                padding: 70px 0 24px;
            }
            .footer-grid {
                display: grid;
                grid-template-columns: 1.6fr 1fr 1fr 1fr;
                gap: 40px;
                padding-bottom: 50px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .footer-brand img {
                height: 36px;
                margin-bottom: 20px;
                filter: brightness(0) invert(1);
                opacity: 0.9;
            }
            .footer-brand p {
                font-size: 0.82rem;
                color: rgba(255, 255, 255, 0.35);
                max-width: 320px;
                line-height: 1.7;
            }
            .footer h4 {
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                margin-bottom: 20px;
                color: rgba(255, 255, 255, 0.5);
                font-family: var(--display);
            }
            .footer ul {
                list-style: none;
                display: grid;
                gap: 11px;
            }
            .footer li a {
                font-size: 0.8rem;
                color: rgba(255, 255, 255, 0.38);
                transition: color 0.2s;
            }
            .footer li a:hover {
                color: #fff;
            }
            .footer-bottom {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                flex-wrap: wrap;
                padding-top: 24px;
                color: rgba(255, 255, 255, 0.22);
                font-size: 0.68rem;
            }

            .reveal {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            @media (max-width: 1050px) {
                .nav-links,
                .nav-actions {
                    display: none;
                }
                .menu-btn {
                    display: block;
                }
                .featured-post {
                    grid-template-columns: 1fr;
                }
                .featured-image {
                    min-height: 280px;
                }
                .blog-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .newsletter-card {
                    flex-direction: column;
                    text-align: center;
                }
                .newsletter-form {
                    max-width: 100%;
                }
                .footer-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 720px) {
                .container {
                    width: min(100% - 32px, var(--max));
                }
                .section {
                    padding: 80px 0;
                }
                .hero-blog {
                    padding-top: 66px;
                    min-height: auto;
                }
                .hero-blog h1 {
                    font-size: clamp(2.2rem, 10vw, 3.4rem);
                }
                .blog-search {
                    flex-direction: column;
                }
                .blog-search button {
                    justify-content: center;
                }
                .blog-grid {
                    grid-template-columns: 1fr;
                }
                .filter-pills {
                    overflow-x: auto;
                    flex-wrap: nowrap;
                    padding-bottom: 4px;
                }
                .newsletter-card {
                    padding: 40px 28px;
                }
                .newsletter-form {
                    flex-direction: column;
                }
                .footer-grid {
                    grid-template-columns: 1fr;
                }
                .mobile-panel {
                    top: 66px;
                }
            }
