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

        body {
            font-family: "Inter", system-ui, sans-serif;
            background: #0b0b12;
            color: #fff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        /* animated pastel blobs (like design_03) */
        .blob {
            position: fixed;
            width: 70vmax;
            height: 70vmax;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 200, 180, 0.25) 0%, rgba(160, 220, 255, 0.2) 40%, transparent 70%);
            filter: blur(90px);
            z-index: -2;
            animation: float 20s infinite alternate ease-in-out;
        }

        .blob-1 {
            top: -20vh;
            right: -10vw;
            background: radial-gradient(circle, #ffb3c6 0%, #a0d0ff 50%, transparent 80%);
            opacity: 0.5;
        }

        .blob-2 {
            bottom: 0;
            left: -5vw;
            background: radial-gradient(circle, #c0a0ff 0%, #80d0ff 60%, transparent 80%);
            width: 80vmin;
            height: 80vmin;
            animation-duration: 25s;
        }

        .blob-3 {
            top: 40vh;
            left: 20vw;
            background: radial-gradient(circle, #ffe68f 0%, #ffb3d1 50%, transparent 80%);
            width: 90vmin;
            height: 90vmin;
            filter: blur(100px);
            opacity: 0.4;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(5%, 5%) scale(1.2);
            }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 5;
        }

        /* glassmorphism base */
        .glass-panel {
            background: rgba(20, 20, 35, 0.4);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
        }

        /* top bar with menu */
        .logo-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #c0c0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .logo span {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.9rem;
            margin-left: 0.8rem;
            color: #aaa;
            font-weight: 400;
        }

        /* navigation menu */
        .main-nav ul {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .main-nav a {
            color: #f0f0ff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }

        .main-nav a:hover {
            border-bottom-color: #a98cff;
            color: #ffffff;
        }

        .main-nav a.active {
            border-bottom-color: rgba(200, 168, 255, 0.95);
            color: #ffffff;
        }

        .nav-badge {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #d0d0ff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .nav-badge i {
            color: #f0b0d0;
        }

        .theme-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
            color: #f3f4ff;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .theme-pill:hover {
            transform: translateY(-1px);
            border-color: rgba(200, 200, 255, 0.55);
            background: rgba(255, 255, 255, 0.12);
        }

        .theme-pill svg {
            width: 1rem;
            height: 1rem;
        }

        /* hero */
        .hero {
            background-image: linear-gradient(rgba(11, 11, 18, 0.45), rgba(11, 11, 18, 0.55)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2832&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            display: flex;
            align-items: center;
            padding: 2rem 5%;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 40%, rgba(11, 11, 18, 0.95) 80%);
            pointer-events: none;
            z-index: 1;
        }

        .hero>* {
            position: relative;
            z-index: 2;
        }

        .pre-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1.5rem 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 500;
            color: #ddd;
            margin-bottom: 2rem;
        }

        .pre-badge i {
            color: #faa0c0;
        }

        h1 {
            font-size: clamp(3.5rem, 12vw, 6rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            max-width: 15ch;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ffb7a5, #b0d0ff, #c0a0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 40px rgba(200, 160, 255, 0.5);
        }

        .subhead {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 60ch;
            margin: 1.5rem 0 2.5rem;
            font-weight: 400;
        }

        /* search hub */
        .search-container {
            display: flex;
            align-items: center;
            background: rgba(15, 15, 28, 0.7);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4rem;
            padding: 0.3rem;
            box-shadow: 0 25px 45px -25px #000, 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            max-width: 750px;
            transition: all 0.2s;
        }

        .search-container:focus-within {
            border-color: rgba(160, 180, 255, 0.6);
            box-shadow: 0 20px 40px -12px #3a4a8c, 0 0 0 2px rgba(140, 180, 255, 0.3) inset;
        }

        .search-container i {
            color: #a0a0c0;
            font-size: 1.6rem;
            margin-left: 1.5rem;
        }

        .search-container input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 1.3rem 1rem;
            font-size: 1.4rem;
            font-weight: 400;
            color: white;
            outline: none;
            font-family: inherit;
        }

        .search-container input::placeholder {
            color: rgba(200, 200, 230, 0.5);
            font-weight: 300;
        }

        .search-container button {
            background: linear-gradient(145deg, #9f7cff, #7aaaff);
            border: none;
            border-radius: 3rem;
            padding: 1rem 2.4rem;
            margin-right: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            transition: 0.15s;
            box-shadow: 0 10px 22px -8px #4a4ad0;
        }

        .search-container button:hover {
            transform: scale(1.02);
            box-shadow: 0 14px 28px -8px #6b6bff;
        }

        .trending-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.8rem;
        }

        .pill {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #ccc;
            transition: 0.2s;
            cursor: default;
        }

        .pill i {
            margin-right: 0.4rem;
            font-size: 0.9rem;
            color: #b0a0ff;
        }

        .pill:hover {
            background: rgba(140, 160, 255, 0.15);
            border-color: rgba(220, 220, 255, 0.3);
            color: white;
        }

        /* trust bar */
        .trust-bar {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin: 3rem 0 4rem;
            flex-wrap: wrap;
        }

        .avatar-stack {
            display: flex;
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(145deg, #3c3c68, #222244);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: -12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        }

        .trust-text {
            font-size: 1.2rem;
            font-weight: 500;
            background: linear-gradient(135deg, #eaeaff, #d0d0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* 3-step process (design_04) */
        .steps-section {
            margin: 6rem 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: rgba(18, 18, 30, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 2rem;
            padding: 2.2rem 1.8rem;
            text-align: center;
            transition: transform 0.2s;
        }

        .step-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .step-icon {
            font-size: 2.8rem;
            background: linear-gradient(145deg, #b29cff, #7cb8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }

        .step-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .step-card p {
            color: #b0b0c8;
            font-size: 1rem;
        }

        /* trending now masonry */
        .trending-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 4rem 0 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .trending-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
        }

        .trending-header p {
            color: #aaa;
            font-size: 1.2rem;
        }

        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .showcase-strip {
            margin-bottom: 2rem;
        }

        .slider-shell {
            position: relative;
            padding: 0 2.6rem;
        }

        .slider-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(180px, 220px);
            gap: 1rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0.4rem 0.2rem 1rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .slider-track::-webkit-scrollbar {
            display: none;
        }

        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(15, 15, 28, 0.72);
            color: #f8f8ff;
            cursor: pointer;
        }

        .slider-control.prev {
            left: 0;
        }

        .slider-control.next {
            right: 0;
        }

        .logo-vault-grid {
            margin-bottom: 1.2rem;
        }

        .vault-pager {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 3rem;
        }

        .vault-pager-btn {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.06);
            color: #f3f3ff;
            border-radius: 999px;
            padding: 0.45rem 0.85rem;
            cursor: pointer;
            font-size: 0.85rem;
        }

        .vault-pager-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .vault-pager-meta {
            color: #afb3ce;
            font-size: 0.9rem;
        }

        .logo-card {
            background: rgba(22, 22, 38, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 2rem;
            padding: 1.8rem 1rem 1.2rem;
            box-shadow: 0 20px 35px -20px black;
            transition: all 0.2s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform-style: preserve-3d;
        }

        .logo-card:hover {
            transform: translateY(-8px) rotate(0.5deg);
            border-color: rgba(200, 200, 255, 0.4);
            box-shadow: 0 30px 40px -15px #335588;
        }

        .logo-visual {
            width: 100%;
            aspect-ratio: 1/1;
            background: linear-gradient(145deg, #2a2a50, #1a1a38);
            border-radius: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.2);
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo-visual img {
            width: 72%;
            height: 72%;
            object-fit: contain;
            display: block;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            background: linear-gradient(135deg, #ffffff, #d0d0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-tag {
            font-size: 0.9rem;
            color: #9a9ac0;
            margin-top: 0.2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* modal overlay (design_03) */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .modal-content {
            background: rgba(15, 15, 30, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 3rem;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 50px 70px -20px black;
        }

        .modal-logo {
            width: 140px;
            height: 140px;
            background: #2a2a50;
            border-radius: 2rem;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .modal-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0 1rem;
        }

        .modal-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 3rem;
            padding: 0.8rem 2rem;
            font-size: 1.2rem;
            font-weight: 500;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            transition: 0.15s;
        }

        .modal-btn:hover {
            background: #4a4a8a;
            border-color: #a0a0ff;
        }

        .close-modal {
            margin-top: 2rem;
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* secondary CTA */
        .closer-cta {
            text-align: center;
            padding: 5rem 2rem;
            background: rgba(10, 10, 20, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 4rem;
            margin: 5rem 0 4rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .closer-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: linear-gradient(145deg, #9f7cff, #7aaaff);
            border: none;
            border-radius: 4rem;
            padding: 1.2rem 3rem;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 20px 40px -10px #3f4fbf;
            cursor: pointer;
            transition: 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.03);
            box-shadow: 0 28px 50px -12px #5f6fff;
        }

        footer {
            text-align: center;
            color: #5a5a80;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        body.pls-theme-light {
            background: #f4f5ff;
            color: #16172d;
        }

        body.pls-theme-light .logo,
        body.pls-theme-light .card-title,
        body.pls-theme-light h1,
        body.pls-theme-light .trending-header h2,
        body.pls-theme-light .steps-section h2,
        body.pls-theme-light .closer-cta h2,
        body.pls-theme-light .step-card h3 {
            color: #131433;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            text-shadow: none;
        }

        body.pls-theme-light .subhead,
        body.pls-theme-light .trending-header p,
        body.pls-theme-light .step-card p,
        body.pls-theme-light .card-tag,
        body.pls-theme-light .trust-text,
        body.pls-theme-light footer,
        body.pls-theme-light .vault-pager-meta {
            color: #535676;
        }

        body.pls-theme-light .hero::before {
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 40%, rgba(236, 239, 255, 0.94) 82%);
        }

        body.pls-theme-light .search-container,
        body.pls-theme-light .step-card,
        body.pls-theme-light .logo-card,
        body.pls-theme-light .closer-cta,
        body.pls-theme-light .theme-pill,
        body.pls-theme-light .slider-control,
        body.pls-theme-light .vault-pager-btn {
            background: rgba(255, 255, 255, 0.86);
            border-color: rgba(28, 30, 56, 0.14);
            color: #1b1d36;
        }

        body.pls-theme-light .logo-visual,
        body.pls-theme-light .avatar {
            background: linear-gradient(145deg, #f5f6ff, #e8ebff);
            border-color: rgba(28, 30, 56, 0.12);
            color: rgba(40, 42, 78, 0.42);
        }

        body.pls-theme-light .main-nav a {
            color: #33375a;
        }

        body.pls-theme-light .main-nav a:hover,
        body.pls-theme-light .main-nav a.active {
            color: #151834;
            border-bottom-color: rgba(91, 74, 178, 0.8);
        }

        body.pls-theme-light .nav-badge {
            background: rgba(255, 255, 255, 0.86);
            color: #34395d;
            border-color: rgba(28, 30, 56, 0.14);
        }

        /* responsive */
        @media (max-width: 900px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .slider-shell {
                padding: 0 2.2rem;
            }

            .slider-track {
                grid-auto-columns: minmax(160px, 190px);
            }

            .main-nav ul {
                gap: 1.2rem;
            }
        }

        @media (max-width: 700px) {
            .logo-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .main-nav {
                width: 100%;
            }

            .main-nav ul {
                justify-content: flex-start;
                gap: 0.9rem;
                overflow-x: auto;
                padding-bottom: 0.3rem;
                scrollbar-width: thin;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 0 1rem;
            }

            h1 {
                font-size: 3rem;
            }

            .search-container input {
                font-size: 1rem;
                padding: 1rem;
            }

            .search-container button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .search-container {
                border-radius: 1.4rem;
                padding: 0.5rem;
                flex-wrap: wrap;
            }

            .search-container i {
                margin-left: 0.6rem;
                font-size: 1.2rem;
            }

            .search-container input {
                min-width: 0;
                flex-basis: 100%;
                order: 2;
                padding-top: 0.6rem;
                padding-bottom: 0.6rem;
            }

            .search-container button {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-right: 0;
            }

            .logo-vault-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 0.5rem;
            }

            .logo-vault-grid .logo-card {
                border-radius: 0.95rem;
                padding: 0.5rem 0.35rem 0.4rem;
            }

            .logo-vault-grid .logo-visual {
                border-radius: 0.7rem;
                margin-bottom: 0.35rem;
            }

            .logo-vault-grid .logo-visual img {
                width: 78%;
                height: 78%;
            }

            .logo-vault-grid .card-title {
                font-size: 0.62rem;
                line-height: 1.2;
                text-align: center;
                word-break: break-word;
            }

            .logo-vault-grid .card-tag {
                display: none;
            }

            .slider-shell {
                padding: 0 1.8rem;
            }

            .slider-track {
                grid-auto-columns: minmax(145px, 170px);
            }

            .hero {
                background-attachment: scroll;
                min-height: auto;
                padding-top: 3.8rem;
                padding-bottom: 3.8rem;
            }

            .trust-bar {
                gap: 0.9rem;
                margin: 2.2rem 0 2.6rem;
            }

            .avatar {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }

            .trending-header h2 {
                font-size: 2rem;
            }

            .steps-section {
                margin: 3.4rem 0;
            }

            .steps-section h2 {
                font-size: 1.95rem !important;
                line-height: 1.2;
            }

            .steps-section > p {
                font-size: 0.92rem !important;
                line-height: 1.45;
            }

            .steps-grid {
                gap: 0.9rem;
                margin-top: 1.2rem;
            }

            .step-card {
                padding: 1.2rem 1rem;
                border-radius: 1.1rem;
            }

            .step-icon {
                font-size: 1.9rem;
                margin-bottom: 0.72rem;
            }

            .step-card h3 {
                font-size: 1.2rem;
                margin-bottom: 0.42rem;
            }

            .step-card p {
                font-size: 0.85rem;
                line-height: 1.42;
            }
        }

        @media (max-width: 420px) {
            .container {
                padding: 0 0.75rem;
            }

            h1 {
                font-size: clamp(2rem, 11vw, 2.5rem);
            }

            .subhead {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .pre-badge,
            .pill,
            .nav-badge {
                font-size: 0.78rem;
                padding: 0.4rem 0.75rem;
            }

            .main-nav ul {
                gap: 0.5rem;
            }

            .main-nav a {
                font-size: 0.84rem;
                padding: 0.35rem 0;
            }

            .theme-pill {
                width: 2rem;
                height: 2rem;
            }

            .slider-shell {
                padding: 0 1.45rem;
            }

            .slider-track {
                grid-auto-columns: minmax(126px, 150px);
            }

            .logo-vault-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0.45rem;
            }

            .logo-vault-grid .logo-card {
                border-radius: 0.85rem;
                padding: 0.44rem 0.28rem 0.32rem;
            }

            .logo-vault-grid .logo-visual {
                border-radius: 0.62rem;
                margin-bottom: 0.3rem;
            }

            .logo-vault-grid .card-title {
                font-size: 0.56rem;
            }

            .logo-card {
                border-radius: 1.3rem;
                padding: 1rem 0.75rem 0.85rem;
            }

            .card-title {
                font-size: 1.02rem;
                text-align: center;
                line-height: 1.25;
            }

            .steps-section h2 {
                font-size: 1.65rem !important;
            }

            .steps-section p {
                font-size: 0.95rem !important;
            }

            .steps-section {
                margin: 2.7rem 0;
            }

            .steps-grid {
                gap: 0.72rem;
                margin-top: 0.95rem;
            }

            .step-card {
                padding: 0.95rem 0.78rem;
                border-radius: 0.95rem;
            }

            .step-icon {
                font-size: 1.55rem;
                margin-bottom: 0.55rem;
            }

            .step-card h3 {
                font-size: 1.02rem;
                margin-bottom: 0.3rem;
            }

            .step-card p {
                font-size: 0.77rem;
                line-height: 1.35;
            }

            .closer-cta {
                border-radius: 2rem;
                padding: 2.4rem 1rem;
            }

            .closer-cta h2 {
                font-size: 1.55rem;
                line-height: 1.3;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
                font-size: 1rem;
                padding: 0.9rem 1rem;
            }

            footer {
                font-size: 0.78rem;
                gap: 0.45rem;
            }
        }

        @media (max-width: 320px) {
            .logo span {
                display: none;
            }

            .main-nav a {
                font-size: 0.79rem;
            }

            .logo-vault-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0.35rem;
            }

            .logo-vault-grid .logo-card {
                border-radius: 0.72rem;
                padding: 0.36rem 0.2rem 0.26rem;
            }

            .logo-vault-grid .card-title {
                font-size: 0.5rem;
            }

            .slider-track {
                grid-auto-columns: minmax(112px, 132px);
            }

            .steps-section h2 {
                font-size: 1.45rem !important;
            }

            .steps-section > p {
                font-size: 0.78rem !important;
            }

            .step-card {
                padding: 0.82rem 0.65rem;
            }

            .step-icon {
                font-size: 1.35rem;
            }

            .step-card h3 {
                font-size: 0.92rem;
            }

            .step-card p {
                font-size: 0.69rem;
            }
        }
