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

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --dark-bg: #0a0e27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: #b0b0c0;
            --accent-color: #667eea;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* ========== HEADER ========== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.7);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border-color);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-items {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .theme-toggle-btn {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .theme-toggle-btn:hover {
            border-color: rgba(102, 126, 234, 0.6);
            box-shadow: 0 8px 22px -12px rgba(102, 126, 234, 0.7);
        }

        .nav-items a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-items a:hover {
            color: var(--accent-color);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1f4f 0%, #2d1b69 50%, #1a1f4f 100%), url('https://images.unsplash.com/photo-1620121692029-d088224ddc74?q=80&w=2832&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            background-attachment: fixed;
            z-index: 0;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter></defs><rect width="1200" height="600" fill="none" opacity="0.1" filter="url(%23noise)"/></svg>');
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(20px);
            }
        }

        /* ========== HERO CONTENT ========== */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 2rem;
            width: 100%;
        }

        .pre-headline {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(102, 126, 234, 0.4);
            border-radius: 50px;
            color: #a0aef7;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

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

        .hero h1 {
            font-size: clamp(2rem, 7vw, 4.5rem);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 800;
            animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
        }

        .hero h1 .gradient-text {
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        /* ========== SEARCH BAR - HERO FOCAL POINT ========== */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin-bottom: 3rem;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
            z-index: 10;
            overflow: visible;
        }

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

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

        .search-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.3rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            box-shadow:
                0 0 40px rgba(102, 126, 234, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: visible;
        }

        .search-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.05) 50%,
                    transparent 100%);
            animation: shimmer 3s infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        .search-box:focus-within {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(102, 126, 234, 0.6);
            box-shadow:
                0 0 60px rgba(102, 126, 234, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
        }

        .search-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .search-box input {
            flex: 1;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
            outline: none;
            font-family: inherit;
            z-index: 1;
            position: relative;
        }

        .search-box input::placeholder {
            color: rgba(176, 176, 192, 0.6);
        }

        .search-btn {
            padding: 0.8rem 1.8rem;
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 1;
            position: relative;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* ========== QUICK SEARCH TAGS ========== */
        .quick-searches {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
        }

        .quick-tag {
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 25px;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .quick-tag:hover {
            background: rgba(102, 126, 234, 0.15);
            border-color: var(--accent-color);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        /* ========== FLOATING TRUST BADGES ========== */
        .floating-badges {
            display: flex;
            gap: 2rem;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
            max-width: 500px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 10;
            margin: 1rem auto 0;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            font-size: 0.9rem;
        }

        .badge-avatars {
            display: flex;
            gap: -8px;
        }

        .badge-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-gradient);
            border: 2px solid var(--dark-bg);
            margin-left: -8px;
        }

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

        /* ========== SCROLL INDICATOR ========== */
        .scroll-indicator {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: bounce 2s ease-in-out infinite;
            z-index: 5;
        }

        .scroll-text {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .scroll-mouse {
            width: 30px;
            height: 50px;
            border: 2px solid var(--text-secondary);
            border-radius: 15px;
            position: relative;
        }

        .scroll-mouse::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 8px;
            background: var(--text-secondary);
            border-radius: 2px;
            animation: scroll 2s ease-in-out infinite;
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(8px);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* ========== VALUE GRID (BELOW FOLD) ========== */
        .value-section {
            padding: 6rem 2rem;
            background: var(--dark-bg);
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .value-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .value-title p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            padding: 2rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .value-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .value-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .value-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .value-card:hover {
            background: rgba(102, 126, 234, 0.08);
            border-color: var(--accent-color);
            transform: translateY(-8px);
        }

        .value-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== PAGE THEME STATES (driven by shared-functionality.js) ========== */
        body.pls-theme-light {
            --dark-bg: #f3f6ff;
            --card-bg: rgba(255, 255, 255, 0.86);
            --border-color: rgba(17, 24, 39, 0.12);
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --accent-color: #4f46e5;
            background: #f3f6ff;
            color: #0f172a;
        }

        body.pls-theme-light header {
            background: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(17, 24, 39, 0.1);
        }

        body.pls-theme-light .nav-items a {
            color: #475569;
        }

        body.pls-theme-light .hero-bg {
            background: linear-gradient(135deg, #e8edff 0%, #f3e8ff 50%, #eaf1ff 100%), url('https://images.unsplash.com/photo-1620121692029-d088224ddc74?q=80&w=2832&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-blend-mode: screen;
        }

        body.pls-theme-light .hero-bg::before {
            background:
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
        }

        body.pls-theme-light .hero-subtitle,
        body.pls-theme-light .scroll-text,
        body.pls-theme-light .value-title p,
        body.pls-theme-light .value-card p {
            color: #475569;
        }

        body.pls-theme-light .hero h1,
        body.pls-theme-light .value-title h2,
        body.pls-theme-light .value-card h3,
        body.pls-theme-light .badge,
        body.pls-theme-light .badge span {
            color: #0f172a;
        }

        body.pls-theme-light .search-box,
        body.pls-theme-light .quick-tag,
        body.pls-theme-light .badge,
        body.pls-theme-light .value-card {
            background: rgba(255, 255, 255, 0.84);
            border-color: rgba(17, 24, 39, 0.12);
        }

        body.pls-theme-light .search-box input {
            color: #0f172a;
        }

        body.pls-theme-light .search-box input::placeholder {
            color: rgba(71, 85, 105, 0.8);
        }

        body.pls-theme-light .value-section {
            background: #f3f6ff;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                padding-top: 80px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .search-container {
                max-width: 100%;
            }

            .floating-badges {
                bottom: 40px;
                gap: 1rem;
            }

            .nav-items {
                gap: 1rem;
            }

            .value-section {
                padding: 3rem 1rem;
            }
        }

        @media (max-width: 560px) {
            header {
                padding: 0.8rem 0.9rem;
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .logo {
                font-size: 1.35rem;
            }

            .nav-items {
                width: 100%;
                justify-content: space-between;
                gap: 0.5rem;
                flex-wrap: nowrap;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 2px;
            }

            .nav-items a {
                font-size: 0.78rem;
            }

            .hero {
                min-height: auto;
                padding-top: 92px;
                padding-bottom: 56px;
            }

            .hero-content {
                padding: 1rem 0.75rem;
            }

            .pre-headline {
                font-size: 0.7rem;
                padding: 0.5rem 0.95rem;
            }

            .hero h1 {
                font-size: 1.72rem;
                line-height: 1.28;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                line-height: 1.65;
                margin-bottom: 1.5rem;
            }

            .search-container {
                margin-bottom: 1.6rem;
            }

            .search-box {
                flex-wrap: wrap;
                gap: 0.6rem;
                padding: 0.9rem 0.85rem;
                border-radius: 12px;
            }

            .search-box input {
                width: 100%;
                font-size: 0.95rem;
                order: 2;
            }

            .search-btn {
                width: 100%;
                order: 3;
                justify-content: center;
            }

            .quick-searches {
                gap: 0.5rem;
                margin-bottom: 1.2rem;
            }

            .quick-tag {
                font-size: 0.72rem;
                padding: 0.45rem 0.78rem;
            }

            .floating-badges {
                gap: 0.55rem;
            }

            .badge {
                width: 100%;
                justify-content: center;
                font-size: 0.8rem;
                padding: 0.58rem 0.72rem;
            }

            .value-title h2 {
                font-size: 1.8rem;
            }

            .value-title p {
                font-size: 0.95rem;
            }

            .value-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .value-card {
                padding: 1.25rem;
                border-radius: 12px;
            }
        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.52rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .quick-tag {
                font-size: 0.66rem;
                padding: 0.38rem 0.58rem;
            }

            .badge {
                font-size: 0.74rem;
            }

            .search-box {
                padding: 0.72rem 0.62rem;
            }

            .search-btn {
                padding: 0.62rem 0.78rem;
                font-size: 0.82rem;
            }
        }
