/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem;
    width: 100%;
}

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

.nav-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 20%;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.nav-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.beta-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #8b7355;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    top: 0.5rem;
    right: 2rem;
    z-index: 1001;
}

.floating-cta .btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.floating-cta .btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #000000;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: white;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blinking Cursor */
.blinking-cursor {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.cursor-icon {
    color: #333;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.25));
    animation: pulse 2s ease-in-out infinite;
}

.cursor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
    z-index: -1;
    filter: blur(8px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* Hero Section with Full-Width Image */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

/* Desktop/Mobile display classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Video container with parallax support */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    will-change: transform;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile image with zoom effect */
.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Fixed cursor that grows with scroll */
.fixed-cursor {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    transition: all 0.3s ease;
    opacity: 1;
}

.fixed-cursor.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Scroll Spacer for Video Control */
.scroll-spacer {
    height: 40vh;
    position: relative;
    z-index: 2;
}

/* Features Spacer */
.features-spacer {
    height: 25vh;
    position: relative;
    z-index: 2;
}

/* Features Exit Spacer */
.features-exit-spacer {
    height: 0vh;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
    transition: color 0.5s ease;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Caudex', serif;
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hero-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #000000;
    color: white;
    border: 1px solid #000000;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.signup-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 16px;
    background: rgba(139, 115, 85, 0.1);
    padding: 12px;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Caudex', serif;
}

.signup-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #8b7355;
    font-family: 'Inter', sans-serif;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input, #email {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e8e0d0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #2c2c2c;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group input::placeholder {
    color: #8b7355;
}

.form-group button {
    padding: 16px 32px;
    white-space: nowrap;
    width: 100%;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 20;
}

.features.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 3rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e0d0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8b7355;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Caudex', serif;
}

.feature-card p {
    color: #5a5a5a;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* Coming Soon Section */
.coming-soon {
    padding: 80px 0;
    background: white;
}

.coming-soon-card {
    background: #faf9f5;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e0d0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.coming-soon-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Caudex', serif;
}

/* Screenshots Carousel Section */
.screenshots-carousel {
    padding: 40px 0;
    position: relative;
    background: transparent;
    margin-top: -140px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: visible;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #8b7355;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    align-items: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(139, 115, 85, 0.8);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(139, 115, 85, 0.5);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: transparent;
    text-align: center;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.footer-text {
    font-size: 0.9rem;
    color: #8b7355;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-text a {
    color: #5a4a3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #8b7355;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation adjustments for mobile */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand {
        gap: 0.4rem;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
        padding: 3px;
    }
    
    .nav-text {
        font-size: 1rem;
    }
    
    .beta-badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.3rem;
    }
    
    /* Floating CTA adjustments */
    .floating-cta {
        top: 0.75rem;
        right: 1rem;
    }
    
    .floating-cta .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Hero content adjustments for mobile */
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        top: 80%; /* Move text much lower */
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-bottom: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .hero-note {
        font-size: 0.9rem;
    }
    
    /* Fixed cursor adjustments for mobile - keep it but position higher */
    .fixed-cursor {
        top: 35%; /* Position cursor higher on mobile */
        transform: translate(-50%, -50%) scale(0.8); /* Make it slightly smaller */
    }
    
    /* Signup section adjustments for mobile */
    .signup {
        padding: 40px 0; /* Reduced padding */
    }
    
    .signup-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
        padding: 8px;
    }
    
    .signup-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .signup-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Form adjustments */
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-group input {
        padding: 14px 16px;
    }
    
    .form-group button {
        padding: 14px 24px;
        width: 100%; /* Full width button */
    }
    
    /* Grid adjustments */
    .features-grid,
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .feature-card,
    .coming-soon-card {
        padding: 2rem 1.5rem;
    }
    
    .custom-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 375px;
        margin: 0 auto;
        display: block;
    }
    
    /* Carousel adjustments */
    .carousel-container {
        height: 400px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Further mobile optimizations */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-text {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        top: 75%; /* Keep text lower on smaller screens */
        padding: 0 10px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .hero-note {
        font-size: 0.8rem;
    }
    
    /* Fixed cursor adjustments for smaller mobile */
    .fixed-cursor {
        top: 30%; /* Position even higher on smaller screens */
        transform: translate(-50%, -50%) scale(0.7); /* Make it smaller */
    }
    
    /* Signup section adjustments for smaller mobile */
    .signup {
        padding: 30px 0; /* Even less padding */
    }
    
    .signup-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
        padding: 6px;
    }
    
    .signup-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .signup-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card,
    .coming-soon-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3,
    .coming-soon-card h3 {
        font-size: 1.2rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .screenshots-carousel {
        margin-top: -80px;
    }
} 