*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    margin: 0 20px;
    background: #fff;
}
  /* Header Styles */
    #header {
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    #header-content {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    #logo {
        text-decoration: none;
        color: #000;
    }

    #nav-links {
        display: flex;
        gap: 20px;
    }

    #nav-links a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        font-size: 1em;
        padding: 0px 16px;
    }


    /* Main Content Container */
    #main-content {
        flex: 1;
        width: 100%;
        margin: 20px auto;
        display: flex;
        gap: 40px;
        align-items: stretch;
    }

    #left-content {
        flex: 1 1 50%;
        min-width: 0;
        box-sizing: border-box;
    }

    #right-content {
        flex: 1 1 50%;
        min-width: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    #slogan {
        font-family: 'Crimson Text', serif;
        font-weight: 100;
        padding-top: 40px;
        color: #000;
        text-align: center;
        margin: auto;
        width: 90%;
        line-height: 1;
    }
    #slogan H1 {
        margin: 0;
        font-weight: 300;
        font-size: 5em;
    }
    #slogan H2 {
        margin: 0;
        font-weight: 100;
        font-size: 3em;
    }
    #threeD {
        text-shadow: 0 0 0 #000;
    }

    #mesg {
        width: 80%;
        margin: auto;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 1.6rem;
        line-height: 1.6em;
        padding-top: 30px;
        color: #444;
        font-weight: 300;
    }
    #main-message {
        width: 80%;
        margin: auto;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 1.2rem;
        padding-top: 30px;
        color: #444;
        font-weight: 200;
    }
    #pitch {
        margin-bottom: 2rem;
    }
    #pitch-features {
        text-align: left;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.8;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #9dd8f2;
        width: 90%;
        background-color: #dcf1fa;
        margin: 0 auto;
        min-width: 300px;
        max-width: 400px;
    }

    #quote {
        flex: 0 0 40%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    #quote .quote-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    #quote .quote-content {
        text-align: center;
        font-family: 'Crimson Text', serif;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transform: translateX(0);
        opacity: 1;
    }

    #quote .quote-content.quote-exiting {
        transform: translateX(-100%);
        opacity: 0;
    }

    #quote .quote-content.quote-entering {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    #quote .quote-content.quote-entering.quote-enter-active {
        transform: translateX(0);
        opacity: 1;
    }

    #quote .quote-text {
        margin: 0 0 10px 0;
        font-style: italic;
        color: #555;
        font-size: 1.2em;
    }

    #quote .quote-author {
        margin: 0;
        font-size: 1rem;
        color: #777;
        font-weight: 400;
    }

    .site-footer {
        border-top: 1px solid #ccc;
        color: #666;
        margin-top: 3rem;
        padding: 0.5rem 0;
        font-family: 'Inter', sans-serif;
    }

    .footer-container {
        margin: 0 auto;
    }

    .footer-columns {
        max-width: 1200px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin: 0.5rem auto;
        padding: 0 20px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-logo {
        margin-bottom: 0.5rem;
    }

    .footer-logo img {
        max-height: 40px;
        width: auto;
    }

    .footer-tagline {
        font-size: 1rem;
        color: #333;
        margin: 0 0 0.5rem 0;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: #666;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .social-icon:hover {
        color: #001efe;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .footer-heading {
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #666;
        margin: 0 0 0.5rem 0;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.25rem;
    }

    .footer-links a {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #999;
        text-decoration: none;
        transition: color 0.3s ease;
        letter-spacing: 0.02em;
    }

    .footer-links a:hover {
        color: #001efe;
    }

    .footer-copyright {
        border-top: 1px solid #ccc;
        padding-top: 0.5rem;
        text-align: center;
    }

    .footer-copyright p {
        margin: 0;
        font-size: 0.875rem;
        color: #666;
    }

    .footer-copyright a {
        color: #b3b3b3;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-copyright a:hover {
        color: #fff;
    }

    #thumbs {
        flex: 1 1 60%;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 10px 0;
        background: #fff;
    }

    #thumbs::before,
    #thumbs::after {
        display: none;
    }

    .thumb-row {
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        min-height: 140px;
    }

    .thumb-track {
        display: flex;
        gap: 10px;
        align-items: center;
        will-change: transform;
    }

    .thumb-track.animate-left {
        animation: thumbs-scroll-left var(--scroll-duration, 240s) linear infinite;
        transform: translateX(0);
    }

    .thumb-track.animate-right {
        animation: thumbs-scroll-right var(--scroll-duration, 240s) linear infinite;
        transform: translateX(-50%);
    }

    #thumbs .thumb-item {
        display: block;
        flex: 0 0 auto;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    #thumbs .thumb-item img {
        width: 200px;
        height: 140px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    #thumbs .thumb-item:hover img {
        transform: scale(1.04);
    }

    @keyframes thumbs-scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes thumbs-scroll-right {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .thumb-track.animate-left,
        .thumb-track.animate-right {
            animation: none;
            transform: none !important;
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        #header-content {
            padding: 0 1rem;
        }

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

        #nav-links {
            position: absolute;
            right: 0;
            z-index: 1000;
        }

        #nav-links.mobile-open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        #nav-links a {
            padding: 0.75rem 1rem;
            border-radius: 0.25rem;
            text-align: left;
        }

        #main-content {
            margin: 20px 0;
            flex-direction: column;
            gap: 24px;
        }

        #left-content {
            width: 100%;
        }

        #right-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        #pitch-features {
            text-align: center;
        }

        #quote {
            flex: 0 0 auto;
            width: 95%;
            margin: 0 auto;
            padding: 30px 0 10px 0;
            min-height: auto;
            max-height: none;
            overflow: visible;
            align-items: flex-start;
        }

        #quote .quote-container {
            position: relative;
            width: 100%;
            height: auto;
            min-height: auto;
            align-items: flex-start;
            justify-content: center;
        }

        #quote .quote-content {
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            width: 100%;
        }

        #quote .quote-text {
            font-size: 1.1rem;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        #quote .quote-author {
            font-size: 0.9rem;
            margin-top: 10px;
        }

        #thumbs {
            flex: 0 0 auto;
            gap: 16px;
            padding: 0;
            background: #fff;
        }

        #thumbs::before,
        #thumbs::after {
            display: none;
        }

        #thumbs .thumb-item img {
            width: 160px;
            height: 110px;
        }

        #slogan {
            width: 95%;
            padding-top: 20px;
        }

        #slogan H1 {
            font-size: 3em;
        }

        #slogan H2 {
            font-size: 2em;
        }

        #mesg {
            width: 95%;
            font-size: 1.2rem;
            padding-top: 30px;
        }

        #main-message {
            width: 95%;
            font-size: 1.4rem;
            padding-top: 30px;
        }

        #thumbs {
            gap: 6px;
            margin-top: 30px;
            width: 100%;
            grid-template-columns: repeat(2, 1fr);
        }

        /* Footer Mobile Styles */
        .site-footer {
            padding: 3rem 0 1.5rem;
        }

        .footer-container {
            padding: 0 1rem;
        }

        .footer-columns {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            max-width: 100%;
        }
        .footer-heading {
            font-size: 1rem;
            color: #444;
        }
        .footer-links a {
            font-size: 1rem;
            color: #444;
        }
        .footer-tagline {
            font-size: 1.2rem;
            color: #444;
        }
    }

    @media (max-width: 480px) {
        #slogan H1 {
            font-size: 3em;
        }

        #slogan H2 {
            font-size: 1.5em;
        }

        #mesg {
            font-size: 1rem;
        }
    }

