        :root {
            --red: hsl(0, 100%, 68%);
            --very-dark-blue: hsl(230, 29%, 20%);
            --dark-grayish-blue: hsl(230, 11%, 40%);
            --grayish-blue: hsl(231, 7%, 65%);
            --light-grayish-blue: hsl(207, 33%, 95%);
        }

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

        body {
            font-family: 'Barlow', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .background-rectangle {
            position: absolute;
            top: -100px;
            right: 0;
            width: 50%;
            height: 450px;
            border-radius: 0 0 0 60px;
            background-color: var(--light-grayish-blue);
            z-index: -1;
        }

        /* Header */
        header {
            position: relative;
            z-index: 1000;
            padding: 40px 0 60px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--very-dark-blue);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }

        

        .nav-links a:hover {
            color: var(--very-dark-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--dark-grayish-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .login-link {
            color: var(--grayish-blue) !important;
        }

        .login-link:hover {
            color: var(--dark-grayish-blue) !important;
        }

        .circle {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--grayish-blue);
            transition: background-color 0.3s ease;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--very-dark-blue);
            transition: 0.3s;
        }

        .mobile-menu {   
            display: none;
            position: fixed;
            top: 20%;
            left: 10%;
            width: 80%;
            height: 48vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 24px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            font-size: 24px;
            text-decoration: none;
            color: var(--very-dark-blue);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .close-menu {
            display: none;
        }

        /* Hero Section */
        .hero {
            padding-top: 30px;
            position: relative;
            overflow: hidden;
        }

        .hero img {
            position: relative;
            width: 150%;
            z-index: 2;
        }

        @keyframes float {
            0%, 100% { transform: rotate(15deg) translateY(0px); }
            50% { transform: rotate(15deg) translateY(-20px); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;  
            gap: 80px;
            align-items: center;
            /* position: relative; */
            z-index: 10;
        }

        .hero-labels {
            display: flex;
            flex-direction: row;
            align-items: baseline;
            gap: 20px;
            margin-bottom: 20px;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .new-badge {
            display: inline-block;
            background: var(--very-dark-blue);
            color: white;
            padding: 10px 24px;
            border-radius: 25px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* margin-bottom: 20px; */
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .product-label {
            color: var(--grayish-blue);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .hero h1 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            color: var(--very-dark-blue);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            max-width: 600px;
        }

        .hero p {
            color: var(--dark-grayish-blue);
            margin-bottom: 64px;
            font-size: 18px;
            line-height: 1.6;
            font-weight: 400;
            max-width: 300px;
        }

        .cta-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .cta-button {
            background: var(--red);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 10px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        .preview-link {
            color: var(--grayish-blue);
            text-decoration: none;
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .preview-link:hover {
            color: var(--dark-grayish-blue);
        }

        .hero-visual {
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

      

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 40px;
            }
            .nav-links {
                display: none;
            }

            .background-rectangle {
                height: 350px;
            }

            .circle {
                display:none
            }
            

            .divider-line {
            /*grayish-blue border line above text*/
            width: 60%;
            height: 1px;
            background-color: var(--grayish-blue);
        }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: left;
            }

            .hero {
                padding: 60px 0 80px;
            }

            .hero-visual {
                order: -1;
                
            }

            .cta-container {
                flex-direction: row;
                gap: 20px;
            }
        }

        @media (max-width: 375px) {
            .container {
                padding: 0 25px;
            }

            .hero-labels {
                gap: 10px;
            }

            .new-badge {
                padding: 10px 20px;
                font-size: 14px;
            }

            .product-label {
                font-size: 14px;
                letter-spacing: 3px;
            }

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

            .hero p {
                font-size: 16px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 12px;
            }

            .preview-link {
                font-size: 12px;
            }
        }
