<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>
        Clarkspicks.com    </title>
    <style>
        :root {
            --primary-color: #1C1C1C;
            --secondary-color: #3A3A3A;
            --accent-color: #C9A24D;
            --background-color: #F7F5F2;
            --text-color: #1E1E1E;
            --transition-speed: 0.4s;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
            /* Custom cursor */
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Custom Cursor */
        .cursor-dot,
        .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 9999;
            pointer-events: none;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--accent-color);
        }

        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent-color);
            transition: width 0.2s, height 0.2s, transform 0.2s;
        }

        body.hovering .cursor-outline {
            width: 60px;
            height: 60px;
            background-color: rgba(201, 162, 77, 0.1);
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-speed);
        }

        /* Navigation */
        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(247, 245, 242, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        #navbar.scrolled {
            padding: 0.5rem 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        #navbar ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        #navbar a {
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            color: var(--secondary-color);
        }

        #navbar a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        #navbar a:hover,
        #navbar a.active {
            color: var(--primary-color);
        }

        #navbar a:hover::after,
        #navbar a.active::after {
            width: 100%;
        }

        /* Sections General */
        section {
            padding: 6rem 2rem;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .container {
            width: 100%;
            max-width: 1100px;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-child {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .active .stagger-child {
            opacity: 1;
            transform: translateY(0);
        }

        .active .stagger-child:nth-child(1) {
            transition-delay: 0.1s;
        }

        .active .stagger-child:nth-child(2) {
            transition-delay: 0.2s;
        }

        .active .stagger-child:nth-child(3) {
            transition-delay: 0.3s;
        }

        .active .stagger-child:nth-child(4) {
            transition-delay: 0.4s;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(-45deg, #1C1C1C, #2c2c2c, #3A3A3A, #1C1C1C);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            filter: blur(80px);
            /* Increased blur for smoother look */
            opacity: 0.4;
            border-radius: 50%;
            /* Make them circles */
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--accent-color), transparent);
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            bottom: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, #4a4a4a, transparent);
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            top: 40%;
            left: 40%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, rgba(201, 162, 77, 0.2), transparent);
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.95);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        #hero .container {
            position: relative;
            z-index: 2;
        }

        #hero h1 {
            color: #fff;
            /* Ensure contrast */
        }

        #hero p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.5s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: fadeIn 1s ease-out 1s forwards;
            opacity: 0;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--accent-color);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .btn:hover {
            color: var(--primary-color);
        }

        .btn:hover::before {
            width: 100%;
        }

        @keyframes slideInDown {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* About & Services */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .content-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.5s ease;
        }

        .image-wrapper:hover {
            transform: perspective(1000px) rotateY(2deg) translateY(-5px);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-wrapper:hover img {
            transform: scale(1.05);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        /* Reviews */
        #reviews {
            background-color: var(--secondary-color);
            color: #fff;
        }

        #reviews h2 {
            color: #fff;
        }

        .reviews-container {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding: 2rem 0;
            width: 100%;
            scrollbar-width: none;
        }

        .reviews-container::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            min-width: 300px;
            background: #2a2a2a;
            /* Slightly lighter than secondary */
            padding: 2rem;
            border-radius: 10px;
            flex-shrink: 0;
            position: relative;
        }

        .review-card::before {
            content: '“';
            font-size: 5rem;
            position: absolute;
            top: -10px;
            left: 20px;
            color: var(--accent-color);
            opacity: 0.2;
            font-family: serif;
        }

        .stars {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .customer-name {
            font-weight: bold;
            display: block;
            margin-top: 1rem;
            color: var(--accent-color);
        }

        /* Statistics */
        #statistics {
            background: var(--background-color);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
            margin-bottom: 4rem;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .chart-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        canvas {
            width: 100% !important;
            height: auto !important;
        }

        /* Privacy Policy & Disclaimer */
        .legal-text {
            text-align: left;
            background: #fff;
            padding: 3rem;
            border-radius: 10px;
            border-left: 5px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        /* Contact */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-family: inherit;
            background: transparent;
            transition: border-color 0.3s;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        /* Unsubscribe */
        #unsubscribe {
            background: #f0f0f0;
            border-top: 1px solid #ddd;
        }

        .messages {
            margin-bottom: 1rem;
        }

        .alert {
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        .alert-dismissable {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: #fff;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }
        }
    </style>
</head>

<body>
    <!-- Custom Cursor -->
    <div class="cursor-dot"></div>
    <div class="cursor-outline"></div>

    <!-- Navigation -->
    <nav id="navbar">
        <ul>
            <li><a href="#about" class="nav-link">About</a></li>
            <li><a href="#services" class="nav-link">Services</a></li>
            <li><a href="#reviews" class="nav-link">Reviews</a></li>
            <li><a href="#statistics" class="nav-link">Statistics</a></li>
            <li><a href="#privacy-policy" class="nav-link">Privacy Policy</a></li>
            <li><a href="#disclaimer" class="nav-link">Disclaimer</a></li>
            <li><a href="#contact" class="nav-link">Contact</a></li>
            <li><a href="#unsubscribe" class="nav-link">Unsubscribe</a></li>
        </ul>
    </nav>

    <!-- Hero -->
    <section id="hero">
        <div class="hero-shapes">
            <div class="shape"></div>
            <div class="shape"></div>
            <div class="shape"></div>
        </div>
        <div class="container">
            <h1>Claim Your Goals</h1>
            <p>Achieve greatness with clarity and purpose.</p>
            <a href="#services" class="btn hover-target">Get Started</a>
        </div>
    </section>

    <!-- About -->
    <section id="about">
        <div class="container reveal">
            <h2>About Us</h2>
            <div class="content-grid">
                <div class="content-text">
                    <p class="stagger-child">Welcome to
                        Clarkspicks.com, your premier partner in strategic goal realization. We believe
                        that every ambition deserves a roadmap.
                    </p>
                    <p class="stagger-child">Our methodology combines data-driven insights with human-centric coaching
                        to unlock potential you didn't know you had. We don't just set goals; we claim them.</p>
                    <a href="#contact" class="btn mt-3 hover-target stagger-child">Learn More</a>
                </div>
                <div class="image-wrapper stagger-child">
                    <img src="assets/lucid-origin_surreal_golden_compass_with_intricate_engravings_and_a_glowing_needle_pointing_n-0.jpg"
                        alt="">
                </div>
            </div>
        </div>
    </section>

    <!-- Services -->
    <section id="services">
        <div class="container reveal">
            <h2>Our Services</h2>
            <div class="services-grid">
                <div class="service-card hover-target stagger-child">
                    <div class="service-icon">✦</div>
                    <h3>Goal Mapping</h3>
                    <p>Visualizing your path to success with precision and clarity.</p>
                </div>
                <div class="service-card hover-target stagger-child">
                    <div class="service-icon">★</div>
                    <h3>Performance Tracking</h3>
                    <p>Real-time analytics to keep your progress transparent and measurable.</p>
                </div>
                <div class="service-card hover-target stagger-child">
                    <div class="service-icon">◆</div>
                    <h3>Strategic Consulting</h3>
                    <p>Expert advice tailored to your unique challenges and opportunities.</p>
                </div>
            </div>
            <div class="content-grid" style="margin-top: 4rem;">
                <div class="image-wrapper stagger-child">
                    <img src="assets/ideogram-v3.0_futuristic_holographic_dashboard_displaying_growth_metrics_floating_in_dark_void-0.jpg"
                        alt="">
                </div>
                <div class="content-text">
                    <h3 class="stagger-child">Why Choose Us?</h3>
                    <p class="stagger-child">We integrate advanced frameworks with intuitive design to create a seamless
                        experience for personal and professional growth.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Reviews -->
    <section id="reviews">
        <div class="container reveal">
            <h2>Client Reviews</h2>
            <div class="reviews-container">
                <div class="review-card hover-target">
                    <div class="stars">★★★★★</div>
                    <p>"Absolutely transformative. The clarity I gained is unmatched."</p>
                    <span class="customer-name">James Thornton</span>
                </div>
                <div class="review-card hover-target">
                    <div class="stars">★★★★★</div>
                    <p>"A premium experience from start to finish. Highly recommended."</p>
                    <span class="customer-name">Michael Chen</span>
                </div>
                <div class="review-card hover-target">
                    <div class="stars">★★★★☆</div>
                    <p>"Professional, sleek, and effective. Helped me hit my Q4 targets."</p>
                    <span class="customer-name">David Ross</span>
                </div>
                <div class="review-card hover-target">
                    <div class="stars">★★★★★</div>
                    <p>"The best investment I've made for my career growth this year."</p>
                    <span class="customer-name">Robert Vance</span>
                </div>
            </div>
        </div>
    </section>

    <!-- Statistics -->
    <section id="statistics">
        <div class="container reveal">
            <h2>Our Impact</h2>
            <div class="stats-grid">
                <div class="stat-item hover-target">
                    <h3 class="counter" data-target="500">0</h3>
                    <p>Clients Served</p>
                </div>
                <div class="stat-item hover-target">
                    <h3 class="counter" data-target="1200">0</h3>
                    <p>Goals Claimed</p>
                </div>
                <div class="stat-item hover-target">
                    <h3 class="counter" data-target="98">0</h3>
                    <p>% Satisfaction</p>
                </div>
                <div class="stat-item hover-target">
                    <h3 class="counter" data-target="15">0</h3>
                    <p>Years Experience</p>
                </div>
            </div>

            <div class="chart-container stagger-child">
                <!-- Simple SVG Chart animated via JS or Canvas -->
                <canvas id="growthChart"></canvas>
            </div>
        </div>
    </section>

    <!-- Privacy Policy -->
    <section id="privacy-policy">
        <div class="container reveal">
            <h2>Privacy Policy</h2>
            <div class="legal-text">

                <p>This Privacy Policy explains our policy regarding the privacy of information supplied by users or
                    collected by us from users of this web site or from other third parties. Because we want to build
                    users' trust and confidence in our privacy practices, we want to disclose them to you.</p>

                <p><b>Changes in this Privacy Statement</b></p>
                <p>If we decide to change our privacy policy, we will post those changes to this privacy statement, the
                    home page, and other places we deem appropriate so that you are aware of what information we
                    collect, how we use it, and under what circumstances, if any, we disclose it.
                    We reserve the right to modify this privacy statement at any time, so please review it frequently.
                    If we make material changes to this policy, we will notify you here, by email, or by means of a
                    notice on our home page.</p>

                <p><b>Registration Newsletter/ Frequency of Mailings</b></p>
                <p>By registering to our newsletter, you are agreeing to receive our newsletters on a daily basis. <b>
                        Clarkspicks.com                    </b> has the right to change frequency of delivery of its newsletters without notice.</p>

                <p><b>Collection and Use of information</b></p>
                <p>We respect your right to privacy. <b>
                        Clarkspicks.com                    </b> received your information from your submission to us or through one of our affiliates.
                    Clarkspicks.com is the owner of the information that you provided in any registration
                    process. Your email address and any other identifying information that you give us will not be
                    revealed to any third party, including any of the direct marketers who may use us to pass offers to
                    you.
                </p>

                <p>We use the information that you provided primarily to send you our newsletters. Moreover, the
                    information subscribers give us is sometimes used to send prizes, verify legal age, and to send
                    third-party mailings based on the interests that each individual subscriber has opted-in for. We may
                    also collect and report to third parties (such as affiliates, content and service providers, and
                    advertisers) aggregated information from our web site. For example, we may aggregate and report to
                    third parties that X people purchased a particular product during a month, or that Y% of visitors to
                    this web site are between the ages 25-34.</p>

                <p>From time to time, we may provide you the opportunity to participate in contests or surveys on our
                    site. If you participate, we will request certain personally identifiable information from you.
                    Participation in these surveys or contests is completely voluntary and you, therefore, have a choice
                    whether or not to disclose this information. The requested information typically includes contact
                    information (such as name and shipping address), and demographic information (such as zip code).</p>

                <p>As is true of most web sites, we also gather certain information automatically and store it in log
                    files. This information includes internet protocol (IP) addresses, browser type, internet service
                    provider (ISP), referring/exit pages, operating system, date/time stamp, and click stream data. We
                    use this information, which does not identify individual users, to analyze trends, to administer the
                    site, to track users' movements around the site and to gather demographic information about our user
                    base as a whole. We do link this automatically-collected data to personally identifiable information
                    like IP addresses and email addresses. However, this is solely for internal uses and used to verify
                    appropriate registration methods.</p>

                <p>Finally, <b>
                        Clarkspicks.com                    </b> may disclose subscriber information in response to subpoenas, court orders, and other legal
                    processes.</p>

                <p><b>Children</b></p>
                <p>We are committed to the safety of children and do not intend to collect personally identifiable
                    information from children under age 18. If you are under age 18, please ask your parent for
                    permission before sending any information to our site or anyone else online. Have your parent
                    contact us as indicated below in order to provide us with prior written consent. We will not
                    intentionally use personal information from or send marketing communications to children under age
                    13 without prior parental consent.</p>

                <p><b>Cookies</b></p>
                <p>A cookie is a small text file that is stored on a user's computer for record-keeping purposes. We do
                    not use cookies on this site. This privacy statement covers the use of cookies by this site only and
                    does not cover the use of cookies by any advertisers.</p>

                <p><b>Aggregate Information (non-personally identifiable)</b></p>
                <p>We maintain the right to share aggregated demographic information about our subscriber base with our
                    partners and advertisers. This information does not identify individual subscribers. We do not link
                    aggregate user data with personally identifiable information.</p>

                <p><b>Third-Party Links</b></p>
                <p>For your convenience, our newsletter contains links to third-party web sites that are not owned or
                    controlled by us. We are not responsible for the privacy practices of these other web sites. We
                    encourage you to note when you follow links in our newsletters and to read the privacy statements of
                    these other web sites. We encourage you to be aware when you leave our newsletter and to read the
                    privacy statements of each and every web site that collects personally identifiable information.
                    This Privacy Policy applies solely to information collected by
                    Clarkspicks.com                </p>

                <p><b>Security</b></p>
                <p>We use certain efforts to secure our web site. We will periodically review our security policies and
                    implement changes from time to time. However, we cannot and do not guarantee complete security, as
                    it does not exist on the Internet. If you have any questions about security on our web site, you can
                    send an email</p>

                <p><b>Business Transitions</b></p>
                <p>In the event <b>
                        Clarkspicks.com                    </b> goes through a business transition, such as a merger, acquisition by another company, or sale
                    of all or a portion of its assets, your personally identifiable information will likely be among the
                    assets transferred. You will be notified via prominent notice on our web site prior to any such
                    change in ownership or control of your personal information.</p>

                <p><b>Choice/Opt-out</b></p>
                <p>If you no longer wish to receive our newsletter and promotional communications, you may opt-out of
                    receiving them by following the instructions included in each newsletter or communication or by
                    emailing us</p>

                <p><b>Acceptance of Terms</b></p>
                <p>By subscribing to our newsletter, you agree to the Privacy Policy. If you do not agree to this
                    policy, please do not subscribe to our newsletters. We reserve the right, at our discretion, to
                    change, modify, add, or remove portions of this policy at any time. All Privacy Policy changes will
                    take effect immediately upon their posting on the site. Please check this page periodically for
                    changes.</p>

                <p><b>Contact Us</b></p>
                <p>If you have any questions or suggestions regarding our privacy policy, please contact us</p>
            </div>
        </div>
    </section>

    <!-- Disclaimer -->
    <section id="disclaimer">
        <div class="container reveal">
            <h2>Disclaimer</h2>
            <div class="legal-text">
                <p><b>
                        Clarkspicks.com                    </b> serves as an informational service only. The inclusion of a link on this web site does not
                    imply
                    Clarkspicks.com endorsement of the linked site nor does
                    Clarkspicks.com accept any responsibility for the content, or the use, of such site.
                </p>

                <p> <b>
                        Clarkspicks.com                    </b> is not responsible for the offers or goods supplied by vendors. <b>
                        Clarkspicks.com                    </b> has no control over the legality of any coupons or other offers made by vendors, the ability of
                    any of the vendors to complete the sales or transactions in accordance with the offers, or the
                    quality of the goods offered by the vendors. In the event you have a dispute with a vendor in any
                    way relating to this site or the use
                    of information from this site, you agree to waive and release <b>
                        Clarkspicks.com                    </b> from any and all claims, demands, actions, damages (actual and consequential), losses, costs
                    and expenses of every kind and nature, known and unknown, disclosed and undisclosed relating to that
                    dispute.</p>

                <p>It is your responsibility to verify independently that any merchant you are doing business with is
                    legitimate and reputable. Before participating in any specific offers and/or promotions, please
                    analyze the details and conditions of the offer including the fine print. Any access to or use of
                    this site shall be deemed your agreement to and approval of all the above terms and conditions.</p>

                <p><b>
                        Clarkspicks.com                    </b> and the <b>
                        Clarkspicks.com                    </b> service, and all materials and information contained on it, and any services or products
                    provided through it are provided "AS IS" without warranties of any kind, express or implied,
                    INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTY OF MERCHANTABILITY, fitness for a particular
                    purpose, expectation of privacy (unless discussed on our Privacy Policy) or non-infringement. any
                    warranty for information.</p>

                <p><b>
                        Clarkspicks.com                    </b> is not responsible for any damages, including without limitation, any special, indirect,
                    incidental or consequential damages, that may arise from any use of, inability to use, or reliance
                    on the site and/or the materials contained on the site whether the materials contained on the site
                    are provided by the <b>
                        Clarkspicks.com                    </b>, or a third party.</p>

                <p>The above disclaimer of liability applies to any damages or injury caused by any error, omission,
                    deletion, defect, interruption, failure of performance, delay in operation or transmission, computer
                    virus, communication line failure, theft or destruction or unauthorized access to, alteration of, or
                    use of record, whether for breach of contract, negligence, tortious behavior, or under any other
                    cause of action.</p>

                <p>Information on this web site may contain technical inaccuracies or typographical errors. <b>
                        Clarkspicks.com                    </b> may make updates, improvements and/or changes in the products and/or information described at
                    any time without notice. <b>
                        Clarkspicks.com                    </b> does not guarantee the accuracy or completeness of the information contained in this site. This
                    site contains links to sites which are not maintained by <b>
                        Clarkspicks.com                    </b> .
                    We are not responsible and have no control over the content of those sites nor do we guarantee the
                    content of such sites. All products, services, and deals mentioned by this site are provided by
                    third parties and are subject to change without notice and are subject to restrictions, limitations,
                    availability, conditions, and qualifications.</p>
            </div>
        </div>
    </section>

    <!-- Contact -->
    <section id="contact">
        <div class="container reveal">
            <h2>Contact Us</h2>
            <div class="content-grid">
                <div class="contact-form hover-target">
                    <div class="input-group">
                        <input type="text" placeholder="Name" required>
                    </div>
                    <div class="input-group">
                        <input type="email" placeholder="Email" required>
                    </div>
                    <div class="input-group">
                        <textarea rows="5" placeholder="Message" required></textarea>
                    </div>
                    <button type="submit" class="btn">Send Message</button>
                </div>
                <div class="image-wrapper stagger-child">
                    <img src="assets/lucid-origin_abstract_network_nodes_connecting_in_a_intricate_gold_light_structure_with_delic-0.jpg"
                        alt="">
                </div>
            </div>
        </div>
    </section>

    <!-- Unsubscribe -->
    <section id="unsubscribe">
        <div class="container reveal">
            <h2>Unsubscribe</h2>
            <form class="form" id="unsubscribe-form" method="POST" action="">

                <div class="messages">
                                    </div>

                <!-- email input -->
                <div class="input-group" style="max-width: 400px; margin: 0 auto 1rem;">
                    <input type="email" name="email" placeholder="Enter your email to unsubscribe" required
                        value="">
                </div>
                <!-- submit button -->
                <div style="text-align: center;">
                    <button type="submit" class="btn">Unsubscribe</button>
                </div>

            </form>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        &copy;
        2026        Clarkspicks.com All Rights Reserved.
    </footer>

    <script>
        // Custom Cursor Logic
        const cursorDot = document.querySelector('.cursor-dot');
        const cursorOutline = document.querySelector('.cursor-outline');

        window.addEventListener('mousemove', (e) => {
            const posX = e.clientX;
            const posY = e.clientY;

            cursorDot.style.left = `${posX}px`;
            cursorDot.style.top = `${posY}px`;

            // Outline follows with slight delay handled by CSS transition
            cursorOutline.style.left = `${posX}px`;
            cursorOutline.style.top = `${posY}px`;

            cursorOutline.animate({
                left: `${posX}px`,
                top: `${posY}px`
            }, { duration: 500, fill: "forwards" });
        });

        document.querySelectorAll('a, button, .hover-target').forEach(el => {
            el.addEventListener('mouseenter', () => document.body.classList.add('hovering'));
            el.addEventListener('mouseleave', () => document.body.classList.remove('hovering'));
        });

        // Sticky Navbar Scroll Effect
        const navbar = document.getElementById('navbar');
        window.addEventListener('scroll', () => {
            if (window.scrollY > 50) {
                navbar.classList.add('scrolled');
            } else {
                navbar.classList.remove('scrolled');
            }
        });

        // Active Link Indicator
        const sections = document.querySelectorAll('section');
        const navLi = document.querySelectorAll('nav ul li a');

        window.addEventListener('scroll', () => {
            let current = '';
            sections.forEach(section => {
                const sectionTop = section.offsetTop;
                const sectionHeight = section.clientHeight;
                if (pageYOffset >= (sectionTop - sectionHeight / 3)) {
                    current = section.getAttribute('id');
                }
            });

            navLi.forEach(li => {
                li.classList.remove('active');
                if (li.getAttribute('href').includes(current)) {
                    li.classList.add('active');
                }
            });
        });

        // Intersection Observer for Animations
        const observerOptions = {
            threshold: 0.15
        };

        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('active');

                    // Trigger counters if statistics section
                    if (entry.target.closest('#statistics')) {
                        startCounters();
                        drawChart();
                    }
                }
            });
        }, observerOptions);

        document.querySelectorAll('.reveal').forEach(el => {
            observer.observe(el);
        });

        // Count Up Animation
        let counted = false;
        function startCounters() {
            if (counted) return;
            const counters = document.querySelectorAll('.counter');
            counters.forEach(counter => {
                const target = +counter.getAttribute('data-target');
                const updateCount = () => {
                    const c = +counter.innerText;
                    const increment = target / 100;
                    if (c < target) {
                        counter.innerText = Math.ceil(c + increment);
                        setTimeout(updateCount, 20);
                    } else {
                        counter.innerText = target;
                    }
                };
                updateCount();
            });
            counted = true;
        }

        // Canvas Chart
        function drawChart() {
            const canvas = document.getElementById('growthChart');
            if (!canvas) return;
            const ctx = canvas.getContext('2d');

            // Set resolution
            canvas.width = 600;
            canvas.height = 300;

            const data = [10, 25, 40, 35, 55, 70, 90];
            const labels = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'];
            const padding = 40;
            const width = canvas.width - padding * 2;
            const height = canvas.height - padding * 2;
            const stepX = width / (data.length - 1);

            // Draw axes
            ctx.beginPath();
            ctx.strokeStyle = '#3A3A3A';
            ctx.lineWidth = 2;
            ctx.moveTo(padding, padding);
            ctx.lineTo(padding, canvas.height - padding);
            ctx.lineTo(canvas.width - padding, canvas.height - padding);
            ctx.stroke();

            // Draw line
            ctx.beginPath();
            ctx.strokeStyle = '#C9A24D';
            ctx.lineWidth = 4;

            data.forEach((val, i) => {
                const x = padding + i * stepX;
                const y = canvas.height - padding - (val / 100 * height);
                if (i === 0) ctx.moveTo(x, y);
                else ctx.lineTo(x, y);

                // Draw point
                ctx.fillStyle = '#C9A24D';
                ctx.fillRect(x - 4, y - 4, 8, 8);
            });
            ctx.stroke();

            // Fill area (Gradient)
            ctx.lineTo(padding + (data.length - 1) * stepX, canvas.height - padding);
            ctx.lineTo(padding, canvas.height - padding);
            ctx.closePath();

            const gradient = ctx.createLinearGradient(0, 0, 0, canvas.height);
            gradient.addColorStop(0, "rgba(201, 162, 77, 0.4)");
            gradient.addColorStop(1, "rgba(201, 162, 77, 0)");
            ctx.fillStyle = gradient;
            ctx.fill();
        }

        // Unsubscribe Scroll Logic
        window.addEventListener('load', function () {
            const section = window.location.pathname.replace('/', '');
            if (section) {
                const el = document.getElementById(section);
                if (el) el.scrollIntoView({ behavior: 'smooth' });
            }
        });
    </script>
</body>

</html>