        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --black: #121317;
            --white: #ffffff;
            --bg: #f0f0f5;
            --blue-accent: #e8eaf6;
            --red: #EA4335;
            --blue: #4285F4;
            --yellow: #FBBC04;
            --green: #34A853;
            --text-muted: #5f6368;
            --border: rgba(0, 0, 0, 0.08);
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Google Sans Flex', system-ui, sans-serif;
            background: var(--bg);
            color: var(--black);
            overflow-x: hidden
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: transparent;
            transition: background 0.25s ease, transform 0.3s ease;
        }

        nav.nav-hidden {
            transform: translateY(-100%);
        }

        nav.nav-scrolled {
            background: var(--bg);
            box-shadow: 0 1px 0 var(--border);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 50px;
            max-width: calc(1100px + 24px);
            margin: 0 auto;
            width: 100%;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--black)
        }

        .nav-logo svg {
            width: 21px;
            height: 21px;
            margin-top: -1px;
        }

        .nav-logo span {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px
        }

        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            padding: 6px 12px;
            border-radius: 100px;
            transition: background 0.15s;
        }

        .nav-links a:hover {
            background: rgba(0, 0, 0, 0.06)
        }


        .nav-launch-app {
            background: var(--black);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.15s, border-color 0.15s;
        }

        .nav-launch-app:hover {
            opacity: 0.85;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .nav-launch-app svg {
            width: 14px;
            height: 14px
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-verify-document {
            background: var(--white);
            color: var(--black);
            border: 1px solid rgba(0, 0, 0, 0.12);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.15s, border-color 0.15s;
            font-family: inherit;
        }

        .nav-verify-document:hover {
            background: #f5f5f5;
            border-color: rgba(0, 0, 0, 0.2);
        }

        .nav-pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #3fb950;
            border-radius: 50%;
            box-shadow: 0 0 8px #3fb950;
            flex-shrink: 0;
            animation: nav-pulse 2s infinite;
            margin-left: 4px;
        }

        @keyframes nav-pulse {
            0% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.55;
                transform: scale(1.25);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-launch-app {
                display: none !important;
            }
        }

        /* HERO */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 24px 40px;
            background: var(--bg);
        }

        /* Orbs container — fixed so orbs stay pinned to viewport while scrolling */
        #orbs-container {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        /* Gradient orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            will-change: transform;
            opacity: 0;
            animation: orb-fade-in 1.4s ease forwards;
        }

        @keyframes orb-fade-in {
            to {
                opacity: 1;
            }
        }

        .orb1 {
            width: 1100px;
            height: 1100px;
            top: -350px;
            left: -300px;
            background: radial-gradient(circle, rgba(210, 180, 255, 0.38) 0%, transparent 65%);
            filter: blur(120px);
            animation-delay: 0s;
            animation: orb-fade-in 1.4s 0s ease forwards, orb-drift1 18s 1.4s ease-in-out infinite alternate;
        }

        .orb2 {
            width: 1000px;
            height: 1000px;
            top: -250px;
            right: -280px;
            background: radial-gradient(circle, rgba(155, 200, 255, 0.40) 0%, transparent 65%);
            filter: blur(130px);
            animation: orb-fade-in 1.4s 0.2s ease forwards, orb-drift2 22s 1.6s ease-in-out infinite alternate;
        }

        .orb3 {
            width: 950px;
            height: 950px;
            top: 28vh;
            left: -5%;
            background: radial-gradient(circle, rgba(255, 240, 200, 0.42) 0%, transparent 65%);
            filter: blur(140px);
            animation: orb-fade-in 1.4s 0.4s ease forwards, orb-drift3 20s 1.8s ease-in-out infinite alternate;
        }

        .orb4 {
            width: 850px;
            height: 850px;
            top: 18vh;
            right: -5%;
            background: radial-gradient(circle, rgba(155, 225, 255, 0.35) 0%, transparent 65%);
            filter: blur(130px);
            animation: orb-fade-in 1.4s 0.6s ease forwards, orb-drift4 24s 2s ease-in-out infinite alternate;
        }

        .orb5 {
            width: 800px;
            height: 800px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(185, 210, 255, 0.28) 0%, transparent 65%);
            filter: blur(150px);
            animation: orb-fade-in 1.4s 0.3s ease forwards, orb-drift5 16s 1.7s ease-in-out infinite alternate;
        }

        @keyframes orb-drift1 {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(80px, 60px);
            }
        }

        @keyframes orb-drift2 {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-70px, 80px);
            }
        }

        @keyframes orb-drift3 {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(60px, -50px);
            }
        }

        @keyframes orb-drift4 {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-80px, -60px);
            }
        }

        @keyframes orb-drift5 {
            0% {
                transform: translate(-50%, -50%);
            }

            100% {
                transform: translate(calc(-50% + 40px), calc(-50% + 40px));
            }
        }

        /* subtle noise texture overlay */
        #hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.5;
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin-top: 80px;
            /* offset to vertically center H1 specifically */
        }

        .hero-orb {
            z-index: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 21px;
            font-weight: 500;
            margin-bottom: 28px;
            color: var(--black);
        }

        .hero-badge svg {
            width: 20px;
            height: 20px
        }

        h1 {
            font-size: clamp(52px, 7vw, 88px);
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--black);
            margin-bottom: 16px;
            min-height: 1.5em;
        }

        /* Typing cursor */
        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1.05em;
            vertical-align: -20%;
            margin-left: 4px;
            border-radius: 2px;
            background: linear-gradient(35deg, #1f52b0 0%, #346ED9 45%, #5b93f5 100%);
            animation: cursor-blink 1.1s ease-in-out infinite;
            box-shadow: 0 0 12px rgba(52, 110, 217, 0.5);
        }

        @keyframes cursor-blink {

            0%,
            45% {
                opacity: 1;
            }

            55%,
            100% {
                opacity: 0;
            }
        }

        @keyframes cursor-fade-out {
            from {
                opacity: 1;
            }

            to {
                opacity: 0;
            }
        }

        .hero-typed {
            display: inline;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-buttons.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-primary {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.15s;
            font-family: inherit;
        }

        .btn-primary:hover {
            opacity: 0.85
        }

        .btn-secondary {
            background: rgba(0, 0, 0, 0.07);
            color: var(--black);
            border: none;
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.15s;
            font-family: inherit;
        }

        .btn-secondary:hover {
            background: rgba(0, 0, 0, 0.12)
        }

        /* DARK IDE SECTION */
        #ide-preview {
            background: #0a0a0b;
            padding: 60px 24px;
            position: relative;
            overflow: hidden;
        }

        .ide-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .ide-window {
            background: #1a1a1f;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .ide-titlebar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #111115;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%
        }

        .ide-dot.red {
            background: #ff5f57
        }

        .ide-dot.yellow {
            background: #febc2e
        }

        .ide-dot.green {
            background: #28c840
        }

        .ide-body {
            display: grid;
            grid-template-columns: 48px 200px 1fr;
            min-height: 360px
        }

        .ide-sidebar {
            background: #111115;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px
        }

        .ide-sidebar-icon {
            width: 20px;
            height: 20px;
            opacity: 0.4;
            color: #fff
        }

        .ide-files {
            border-right: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px;
            overflow: hidden
        }

        .ide-file-item {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            padding: 3px 0;
            font-family: monospace
        }

        .ide-file-item.active {
            color: #fff
        }

        .ide-main {
            padding: 20px;
            font-family: monospace;
            font-size: 13px;
            line-height: 1.7
        }

        .ide-tabs {
            display: flex;
            gap: 1px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 0
        }

        .ide-tab {
            padding: 6px 16px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            border-bottom: 2px solid transparent;
            cursor: pointer
        }

        .ide-tab.active {
            color: #fff;
            border-bottom-color: #4285F4
        }

        .code {
            color: rgba(255, 255, 255, 0.85)
        }

        .kw {
            color: #89b4fa
        }

        .fn {
            color: #cba6f7
        }

        .str {
            color: #a6e3a1
        }

        .cm {
            color: rgba(255, 255, 255, 0.3)
        }

        .chat-box {
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 16px;
        }

        .chat-input-row {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.35);
            font-size: 13px
        }

        .chat-send {
            margin-left: auto;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #4285F4;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-btn {
            position: absolute;
            bottom: 32px;
            right: 32px;
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            border: none;
            border-radius: 100px;
            padding: 14px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* HUGE BOTTOM TEXT */
        .huge-bottom {
            background: #0a0a0b;
            padding: 40px 0 0px;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .huge-bottom-inner {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            container-type: inline-size;
        }

        .huge-bottom-text {
            font-size: 22.6cqi;
            font-weight: 500;
            letter-spacing: -0.04em;
            line-height: 0.95;
            color: #fff;
            opacity: 1;
            white-space: nowrap;
            user-select: none;
        }

        /* FEATURES */
        .feature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1124px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        @media (max-width: 768px) {
            .feature-section {
                display: flex;
                flex-direction: column;
                gap: 32px;
                padding: 60px 24px;
            }

            .feature-section.reverse-mobile .feature-text {
                order: -1;
            }
        }

        .feature-section.reverse {
            direction: rtl
        }

        .feature-section.reverse>* {
            direction: ltr
        }

        .feature-text h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 16px
        }

        .feature-text p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-muted);
            max-width: 380px
        }

        .feature-img {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            aspect-ratio: 16/10;
            display: flex;
            flex-direction: column;
        }

        .mock-editor {
            padding: 20px;
            flex: 1
        }

        .mock-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px
        }

        .mock-tab {
            font-size: 11px;
            padding: 4px 12px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.06);
            color: var(--text-muted)
        }

        .mock-tab.active {
            background: rgba(66, 133, 244, 0.15);
            color: #4285F4
        }

        .mock-line {
            height: 10px;
            border-radius: 4px;
            margin-bottom: 8px;
            background: rgba(0, 0, 0, 0.07)
        }

        .mock-line.w20 {
            width: 20%
        }

        .mock-line.w40 {
            width: 40%
        }

        .mock-line.w60 {
            width: 60%
        }

        .mock-line.w80 {
            width: 80%
        }

        .mock-line.w50 {
            width: 50%
        }

        .mock-line.blue {
            background: rgba(66, 133, 244, 0.3)
        }

        .mock-line.purple {
            background: rgba(162, 106, 247, 0.3)
        }

        .mock-line.green {
            background: rgba(52, 168, 83, 0.3)
        }


        .mock-line.red {
            background: rgba(232, 59, 59, 0.806)
        }

        .mock-sidebar {
            width: 200px;
            background: rgba(0, 0, 0, 0.03);
            border-left: 1px solid var(--border);
            padding: 16px
        }

        .mock-sidebar-item {
            font-size: 11px;
            padding: 4px 0;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04)
        }

        .mock-chat {
            border-top: 1px solid var(--border);
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mock-chat input {
            flex: 1;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 13px;
            color: var(--text-muted);
            background: transparent;
            outline: none;
            font-family: inherit;
        }

        .mock-chat-send {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #4285F4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* USE CASES */
        #use-cases,
        #developers {
            padding: 30px 24px;
            background: var(--bg);
            scroll-margin-top: 30px;
        }

        .developers-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .developers-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
            align-items: start
        }

        .developers-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.1
        }

        .developers-header p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-muted);
            padding-top: 12px
        }

        .dev-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .dev-card {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 3/4;
            position: relative;
            cursor: pointer;
            background: linear-gradient(135deg, #c9cdd6, #a8adb8);
        }

        .dev-card-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 40%, transparent)
        }

        .dev-card-person {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .dev-card-figure {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 75%;
        }

        .dev-card-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.2;
        }

        .dev-card-links {
            position: absolute;
            bottom: 28px;
            left: 28px;
            right: 28px;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .dev-card-title {
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.2;
            flex: 1
        }

        .dev-card-link {
            color: #fff;
            font-size: 13px;
            text-decoration: none;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 4px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 6px 14px;
            border-radius: 100px;
            transition: background 0.15s;
        }

        .dev-card-link:hover {
            background: rgba(255, 255, 255, 0.15)
        }

        .btn-pricing-secondary {
            transition: background 0.15s;
            cursor: pointer;
        }

        .btn-pricing-secondary:hover {
            background: rgba(255, 255, 255, 0.15) !important;
        }

        .dev-person {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            bottom: 60px;
        }

        /* PRICING */
        #pricing {
            padding: 80px 24px;
            min-height: 100vh;
            background: radial-gradient(ellipse at 50% 50%, #e8eef8 0%, #f0f0f5 70%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            scroll-margin-top: 30px;
        }

        @media (max-width: 768px) {
            #pricing {
                min-height: auto;
                padding: 80px 24px;
            }
        }

        #pricing::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            z-index: 0;
        }

        .pricing-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            position: relative;
            z-index: 1
        }

        .pricing-col {
            padding: 40px 32px;
            text-align: center;
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .pricing-col {
                background: none;
                border: none;
                border-radius: 0;
                padding: 32px 16px;
            }
        }

        /* ORGANIZATIONS */
        #organizations {
            background: var(--bg);
            padding: 0 6px 60px;
            position: relative;
        }

        .org-inner {
            width: 100%;
        }

        .org-card {
            background: #0a0a0b;
            border-radius: 32px;
            padding: 140px 40px;
            min-height: 580px;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #org-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .pricing-badge {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px
        }

        .pricing-col h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 8px
        }

        .pricing-sub {
            font-size: clamp(18px, 2.2vw, 32px);
            font-weight: 400;
            color: var(--text-muted);
            margin-bottom: 40px
        }

        .btn-pricing-primary {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 14px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: opacity 0.15s;
        }

        .btn-pricing-primary:hover {
            opacity: 0.85
        }

        .btn-pricing-secondary {
            background: rgba(0, 0, 0, 0.08);
            color: var(--black);
            border: none;
            padding: 14px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.15s;
        }

        .btn-pricing-secondary:hover {
            background: rgba(0, 0, 0, 0.13)
        }

        /* BLOGS */
        #blogs {
            padding: 80px 24px 140px;
            background: var(--bg);
            scroll-margin-top: 30px;
        }

        .blogs-inner {
            max-width: 1100px;
            margin: 0 auto
        }

        .blogs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px
        }

        .blogs-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 400;
            letter-spacing: -0.02em
        }

        .blogs-header a {
            color: var(--black);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px
        }

        .blogs-header a:hover span {
            transform: translateX(3px)
        }

        .blogs-header a span {
            display: inline-block;
            transition: transform 0.2s
        }

        .blog-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .blog-card {
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .blog-thumb {
            aspect-ratio: 1;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            background: #0a0a0b;
            position: relative;
        }

        .blog-thumb canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%
        }

        .blog-thumb-label {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .blog-title {
            font-size: 17px;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 1.3
        }

        .blog-meta {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px
        }

        .blog-read {
            font-size: 14px;
            color: var(--black);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px
        }

        .blog-read:hover .blog-arrow {
            transform: translateX(3px)
        }

        .blog-arrow {
            display: inline-block;
            transition: transform 0.2s
        }

        .blog-nav {
            display: flex;
            gap: 8px;
            margin-top: 32px
        }

        .blog-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.07);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: background 0.15s;
        }

        .blog-nav-btn:hover {
            background: rgba(0, 0, 0, 0.13)
        }

        /* DARK CTA */
        #cta {
            background: #0a0a0b;
            padding: 80px 24px 80px;
            position: relative;
            overflow: hidden;
            border-radius: 32px 32px 0 0;
            margin: 0 0;
        }

        #cta-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
        }

        #cta h2 {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 400;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 36px
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .btn-cta-white {
            background: #fff;
            color: #000;
            border: none;
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: opacity 0.15s;
        }

        .btn-cta-white:hover {
            opacity: 0.9
        }

        .btn-cta-dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.15s;
        }

        .btn-cta-dark:hover {
            background: rgba(255, 255, 255, 0.18)
        }

        /* FOOTER */
        footer {
            background: #0a0a0b;
            padding: 20px 24px 40px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 48px;
            flex-wrap: wrap
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 500;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
            color: #fff
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            max-width: 240px;
            line-height: 1.6
        }

        .footer-cols {
            display: flex;
            gap: 48px;
            flex-wrap: wrap
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.6)
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            margin-bottom: 8px;
            transition: color 0.15s
        }

        .footer-col a:hover {
            color: #fff
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: gap
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35)
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px
        }

        .footer-bottom-links a {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none
        }

        .footer-bottom-links a:hover {
            color: #fff
        }

        /* SCROLL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s, transform 0.7s
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        @media(max-width:768px) {

            .feature-section,
            .developers-header,
            .dev-cards,
            .blog-cards,
            .pricing-inner,
            .footer-top {
                grid-template-columns: 1fr
            }

            .dev-card {
                aspect-ratio: 3/2;
            }

            .feature-img {
                min-height: 220px;
            }

            .feature-section.reverse {
                direction: ltr
            }

            .pricing-divider {
                display: none
            }

            nav .nav-links {
                display: none
            }
        }