html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        * {
            box-sizing: border-box;
        }

        :root {
            --page-bg: #120f0c;
            --page-text: #f9f7f4;
            --nav-bg: rgba(18, 15, 12, 0.88);
            --nav-border: rgba(255, 255, 255, 0.1);
            --muted-text: rgba(255, 255, 255, 0.72);
            --section-light-bg: #1a1410;
            --section-light-title: #f9f7f4;
            --section-light-subtitle: rgba(255, 255, 255, 0.72);
            --card-bg: rgba(255, 255, 255, 0.08);
            --card-border: rgba(255, 255, 255, 0.12);
            --card-title: #ffffff;
            --card-subtitle: rgba(255, 255, 255, 0.72);
            --footer-bg: #100d0b;
            --footer-border: rgba(255, 255, 255, 0.1);
            --footer-text: rgba(255, 255, 255, 0.78);
            --footer-muted: rgba(255, 255, 255, 0.5);
        }

        html[data-theme='light'] {
            --page-bg: #f8f6f3;
            --page-text: #1a1410;
            --nav-bg: rgba(248, 246, 243, 0.9);
            --nav-border: rgba(26, 20, 16, 0.12);
            --muted-text: rgba(26, 20, 16, 0.74);
            --section-light-bg: #f8f6f3;
            --section-light-title: #1a1410;
            --section-light-subtitle: rgba(26, 20, 16, 0.72);
            --card-bg: #ffffff;
            --card-border: rgba(26, 20, 16, 0.08);
            --card-title: #1a1410;
            --card-subtitle: rgba(26, 20, 16, 0.62);
            --footer-bg: #efeae3;
            --footer-border: rgba(26, 20, 16, 0.1);
            --footer-text: rgba(26, 20, 16, 0.84);
            --footer-muted: rgba(26, 20, 16, 0.62);
        }

        body {
            background: var(--page-bg);
            color: var(--page-text);
            transition: background-color 0.25s ease, color 0.25s ease;
        }

        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 120;
            height: 72px;
            background: var(--nav-bg);
            border-bottom: 1px solid var(--nav-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .site-nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            height: 100%;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .site-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--page-text);
            text-decoration: none;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
        }

        .site-brand-dot {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
        }

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

        .site-nav-link {
            color: var(--muted-text);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .site-nav-link:hover,
        .site-nav-link.active {
            color: var(--page-text);
        }

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

        .site-theme-toggle,
        .site-nav-toggle {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--nav-border);
            background: rgba(255, 255, 255, 0.06);
            color: var(--page-text);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        html[data-theme='light'] .site-theme-toggle,
        html[data-theme='light'] .site-nav-toggle {
            background: rgba(26, 20, 16, 0.04);
        }

        .site-theme-toggle:hover,
        .site-nav-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(124, 58, 237, 0.5);
        }

        .site-nav-toggle {
            display: none;
        }

        .site-mobile-menu {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 119;
            background: var(--nav-bg);
            border-bottom: 1px solid var(--nav-border);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .site-mobile-menu.open {
            max-height: 240px;
        }

        .site-mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px 24px 18px;
        }

        #hero,
        #collection,
        #why,
        #start {
            scroll-margin-top: 86px;
        }

        .section-kicker {
            color: #06b6d4;
            font-weight: 600;
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-title {
            color: var(--section-light-title);
        }

        .section-subtitle {
            color: var(--section-light-subtitle);
        }

        .collection-section,
        .value-section {
            background: var(--section-light-bg);
            transition: background-color 0.25s ease;
        }

        .cta-section {
            background: linear-gradient(135deg, #17120f 0%, #271f1a 100%);
        }

        html[data-theme='light'] .cta-section {
            background: linear-gradient(135deg, #f5f0ea 0%, #ece4da 100%);
        }

        .cta-section h2 {
            color: #ffffff;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.75);
        }

        html[data-theme='light'] .cta-section h2 {
            color: #1a1410;
        }

        html[data-theme='light'] .cta-section p {
            color: rgba(26, 20, 16, 0.72);
        }

        .collection-section .logo-card,
        .value-section .value-card {
            background: var(--card-bg);
            border-color: var(--card-border);
            transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .collection-section .logo-info {
            background: transparent;
            border-top-color: var(--card-border);
        }

        .collection-section .logo-name,
        .value-section .value-title,
        .value-section .value-desc {
            color: var(--card-title);
        }

        .collection-section .logo-category {
            color: var(--card-subtitle);
        }

        .site-footer {
            background: var(--footer-bg);
            border-top-color: var(--footer-border);
            transition: background-color 0.25s ease, border-color 0.25s ease;
        }

        .site-footer .footer-title,
        .site-footer .footer-heading,
        .site-footer .footer-link:hover,
        .site-footer .footer-social:hover {
            color: var(--footer-text);
        }

        .site-footer .footer-copy,
        .site-footer .footer-body,
        .site-footer .footer-link,
        .site-footer .footer-social {
            color: var(--footer-muted);
        }

        /* Animated background for hero */
        .hero-bg-animation {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #1a1410 0%, #2d2620 100%);
            overflow: hidden;
            z-index: 0;
        }

        /* Hero background image with subtle overlay */
        .hero-bg-animation::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="logos" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="25" fill="rgba(124,58,237,0.08)" stroke="rgba(124,58,237,0.15)" stroke-width="1"/><text x="60" y="65" text-anchor="middle" font-size="12" fill="rgba(255,255,255,0.2)" font-family="Arial">A</text></pattern></defs><rect width="1200" height="800" fill="url(%23logos)"/></svg>');
            opacity: 0.3;
            animation: pan 20s linear infinite;
            z-index: 1;
        }

        .hero-bg-animation::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
            z-index: 2;
        }

        @keyframes pan {
            0% {
                transform: translate(0, 0);
            }

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

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        .animate-slide-in-down {
            animation: slideInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        html[data-theme='light'] .hero-bg-animation {
            background: linear-gradient(135deg, #f8f6f3 0%, #efe8de 100%);
        }

        html[data-theme='light'] .hero-bg-animation::after {
            background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 42%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
        }

        html[data-theme='light'] #hero-headline {
            color: #1a1410;
        }

        html[data-theme='light'] #hero-subheadline,
        html[data-theme='light'] .trust-bar,
        html[data-theme='light'] .quick-tag,
        html[data-theme='light'] .hero-content .text-white\/60 {
            color: rgba(26, 20, 16, 0.72);
        }

        html[data-theme='light'] .search-input {
            background: rgba(255, 255, 255, 0.86);
            border-color: rgba(26, 20, 16, 0.14);
            color: #1a1410;
        }

        html[data-theme='light'] .search-input::placeholder {
            color: rgba(26, 20, 16, 0.46);
        }

        html[data-theme='light'] .search-input:focus {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
        }

        html[data-theme='light'] .search-icon {
            color: rgba(26, 20, 16, 0.56);
            opacity: 1;
        }

        html[data-theme='light'] .quick-tag {
            background: rgba(26, 20, 16, 0.04);
            border-color: rgba(26, 20, 16, 0.12);
        }

        html[data-theme='light'] .quick-tag:hover {
            background: rgba(124, 58, 237, 0.12);
            border-color: rgba(124, 58, 237, 0.35);
            color: #1a1410;
        }

        html[data-theme='light'] .avatar {
            border-color: rgba(248, 246, 243, 0.85);
        }

        html[data-theme='light'] .feature-item {
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(26, 20, 16, 0.1);
        }

        html[data-theme='light'] .feature-item:hover {
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(124, 58, 237, 0.35);
        }

        html[data-theme='light'] .feature-item-title {
            color: #1a1410;
        }

        html[data-theme='light'] .feature-item-desc {
            color: rgba(26, 20, 16, 0.72);
        }

        /* Search bar styling */
        .search-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            z-index: 140;
        }

        /* Ensure shared search dropdown is fully opaque and above hero content */

        .pls-sr {
            background: #ffffff !important;
            opacity: 1 !important;
            border: 1px solid rgba(26, 20, 16, 0.14) !important;
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22) !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            z-index: 999999 !important;
        }

        .pls-sr .pls-si {
            background: #ffffff !important;
            opacity: 1 !important;
        }

        html[data-theme='dark'] .pls-sr,
        body.pls-theme-dark .pls-sr {
            background: #1f2937 !important;
            border-color: rgba(148, 163, 184, 0.4) !important;
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5) !important;
        }

        html[data-theme='dark'] .pls-sr .pls-si,
        body.pls-theme-dark .pls-sr .pls-si {
            background: #1f2937 !important;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(124, 58, 237, 0.5);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
        }

        .search-icon {
            position: absolute;
            right: 15px;
            width: 20px;
            height: 20px;
            opacity: 0.6;
            pointer-events: none;
        }

        /* Quick tags */
        .quick-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .quick-tag:hover {
            background: rgba(124, 58, 237, 0.3);
            border-color: rgba(124, 58, 237, 0.5);
            color: white;
        }

        /* Trust bar */
        .trust-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 24px;
        }

        .avatar-stack {
            display: flex;
            margin-left: 8px;
        }

        .avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            margin-left: -10px;
            border: 2px solid rgba(26, 20, 16, 0.8);
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            color: white;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        /* Logo Gallery Grid - Masonry collage effect */
        .logo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            grid-auto-rows: 200px;
        }

        .logo-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            background: white;
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .logo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(124, 58, 237, 0.2);
        }

        .logo-card-lg {
            grid-column: span 1;
            grid-row: span 2;
        }

        .logo-card-sm {
            grid-column: span 1;
            grid-row: span 1;
        }

        .logo-placeholder {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .gradient-1 {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
        }

        .gradient-2 {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        .gradient-3 {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
        }

        .gradient-4 {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        }

        .gradient-5 {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }

        .logo-icon {
            width: 60%;
            height: 60%;
            opacity: 1;
            transition: transform 0.3s ease;
        }

        .logo-card:hover .logo-icon {
            transform: scale(1.1);
        }

        .logo-info {
            padding: 12px 16px;
            background: white;
            border-top: 1px solid #f0f0f0;
        }

        .logo-name {
            font-size: 14px;
            font-weight: 700;
            color: #1a1410;
            margin: 0;
        }

        .logo-category {
            font-size: 12px;
            color: #999;
            margin: 4px 0 0 0;
        }

        /* Feature cards below hero */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 60px;
        }

        .feature-item {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-item:hover {
            background: rgba(0, 0, 0, 0.55);
            border-color: rgba(124, 58, 237, 0.4);
            transform: translateY(-4px);
        }

        .feature-item-title {
            font-size: 15px;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }

        .feature-item-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        /* Section styling */
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Value prop cards */
        .value-card {
            background: white;
            border-radius: 16px;
            padding: 32px 24px;
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .value-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1410;
            margin-bottom: 12px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .value-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* CTA button */
        .cta-btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', sans-serif;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
        }

        /* Responsive */
        @media (max-width: 900px) {
            #hero {
                height: auto !important;
                min-height: 100svh;
                justify-content: flex-start;
                padding-top: 104px;
                padding-bottom: 44px;
            }

            .hero-content h1 {
                font-size: 3.2rem !important;
            }

            .hero-content {
                max-width: 100%;
                padding: 0 8px;
            }

            .hero-content .mb-12 {
                margin-bottom: 1.8rem !important;
            }

            .hero-content .mb-8 {
                margin-bottom: 1rem !important;
            }

            .feature-grid {
                margin-top: 24px;
                width: 100%;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #collection {
                padding-top: 74px;
                padding-bottom: 74px;
            }

            #collection .mb-16 {
                margin-bottom: 2.2rem !important;
            }

            .section-container {
                padding: 0 18px;
            }

            .value-section .grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .value-section .grid {
                grid-template-columns: 1fr;
            }

            #hero {
                padding-top: 92px;
                padding-bottom: 36px;
            }

            .hero-content h1 {
                font-size: 2.7rem !important;
            }

            .hero-content p {
                font-size: 1rem !important;
            }

            .feature-grid {
                margin-top: 18px;
                gap: 10px;
                grid-template-columns: 1fr;
            }

            .feature-item {
                padding: 14px;
            }

            #collection {
                padding-top: 56px;
                padding-bottom: 56px;
            }

            .logo-gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 150px;
                gap: 10px;
            }

            .logo-placeholder {
                padding: 12px;
            }

            .logo-info {
                padding: 9px 10px;
            }

            .logo-name {
                font-size: 12px;
            }

            .logo-category {
                font-size: 11px;
            }

            .collection-section .mt-16 {
                margin-top: 1.8rem !important;
            }
        }

        @media (max-width: 640px) {
            .hero-bg-animation::before {
                width: 300px;
                height: 300px;
            }

            .hero-bg-animation::after {
                width: 400px;
                height: 400px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .site-nav {
                height: 64px;
            }

            .site-mobile-menu {
                top: 64px;
            }

            .site-nav-inner {
                padding: 0 14px;
            }

            .site-nav-links {
                display: none;
            }

            .site-nav-toggle {
                display: inline-flex;
            }

            .logo-gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 142px;
                gap: 10px;
            }

            .logo-card-lg,
            .logo-card-sm {
                grid-row: span 1;
            }

            .logo-icon {
                width: 52%;
                height: 52%;
            }

            .section-container {
                padding: 0 14px;
            }

            .value-card {
                padding: 22px 16px;
            }

            .cta-btn {
                width: 100%;
                padding: 12px 18px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            #hero {
                padding-top: 84px;
                padding-bottom: 26px;
            }

            .logo-gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 132px;
            }

            .section-title {
                font-size: 2rem !important;
                line-height: 1.1;
            }

            .section-subtitle {
                font-size: 0.96rem;
            }

            .hero-content h1 {
                font-size: 2.3rem !important;
                line-height: 1;
            }

            .hero-content p {
                font-size: 0.95rem !important;
            }

            .feature-item-title {
                font-size: 14px;
            }

            .feature-item-desc {
                font-size: 12px;
            }

            .search-input {
                font-size: 14px;
                padding: 12px 16px;
            }

            .quick-tag {
                font-size: 12px;
                padding: 6px 10px;
            }

            .trust-bar {
                flex-direction: column;
                gap: 6px;
            }
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f8f6f3;
        }

        ::-webkit-scrollbar-thumb {
            background: #7c3aed;
            border-radius: 4px;
        }

body {
            box-sizing: border-box;
        }
