/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #121212;
    overflow-x: hidden;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333333;
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-button.accept {
    background: #4ade80;
    color: #000;
}

.cookie-button.accept:hover {
    background: #22c55e;
    transform: translateY(-1px);
}

.cookie-button.reject {
    background: transparent;
    color: #cccccc;
    border: 1px solid #444444;
}

.cookie-button.reject:hover {
    background: #333333;
    border-color: #666666;
}

.cookie-link {
    color: #4ade80;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    color: #22c55e;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(154, 205, 50, 0.3));
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: #BBBBBB;
    margin-top: -2px;
}

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

.nav-links a {
    color: #BBBBBB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #43A047;
}

.cta-button {
    background: linear-gradient(135deg, #43A047, #4CAF50);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #FFFFFF !important;
    font-weight: 600;
}

.cta-button:hover {
    background: linear-gradient(135deg, #4CAF50, #43A047);
    color: #FFFFFF !important;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #121212 0%, #1E1E1E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    perspective: 1000px;
}

.hero-content {
    opacity: 0;
    animation: heroSlideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image {
    opacity: 0;
    animation: heroSlideInRight 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    position: relative;
    /* Removed overflow: hidden to allow text shadows to render properly */
    padding: 0.5rem 0;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(67, 160, 71, 0.08) 0%,
        rgba(67, 160, 71, 0.04) 30%,
        transparent 50%
    );
    animation: titleGlow 4s ease-in-out infinite alternate;
    z-index: -1;
    /* Ensure it doesn't interfere with text shadows */
    pointer-events: none;
}

.baseline-ai {
    font-size: 3.8rem;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #43A047, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(67, 160, 71, 0.3);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #43A047, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #43A047 0%, #4CAF50 25%, #66BB6A 50%, #4CAF50 75%, #43A047 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
    text-shadow: 0 8px 32px rgba(67, 160, 71, 0.3);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #43A047 20%, 
        #4CAF50 50%, 
        #43A047 80%, 
        transparent 100%
    );
    border-radius: 2px;
    opacity: 0.6;
    animation: underlineGlow 3s ease-in-out infinite alternate;
}

/* Individual word colors and animations */
.hero-title span {
    display: inline-block;
    margin-right: 0.3em;
    position: relative;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    opacity: 0;
    animation: wordFadeIn 0.8s ease forwards;
}

.hero-title span:hover {
    transform: translateY(-2px) scale(1.05);
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }
.hero-title span:nth-child(4) { animation-delay: 0.8s; }
.hero-title span:nth-child(5) { animation-delay: 1.0s; }

.word-ai {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF6B6B 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
}

.word-coaching {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF6B6B 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    animation-delay: -1s;
    /* Enhanced text shadow for better visibility */
    filter: drop-shadow(0 4px 12px rgba(255, 107, 107, 0.4)) drop-shadow(0 2px 6px rgba(255, 107, 107, 0.3));
}

.word-community {
    background: linear-gradient(135deg, #A8E6CF 0%, #43A047 50%, #A8E6CF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    animation-delay: -2s;
    /* Enhanced text shadow for better visibility */
    filter: drop-shadow(0 4px 12px rgba(168, 230, 207, 0.4)) drop-shadow(0 2px 6px rgba(67, 160, 71, 0.3));
}

.word-and {
    background: linear-gradient(135deg, #FFD93D 0%, #FF8C42 50%, #FFD93D 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    animation-delay: -3s;
    /* Enhanced text shadow for better visibility */
    filter: drop-shadow(0 4px 12px rgba(255, 217, 61, 0.4)) drop-shadow(0 2px 6px rgba(255, 140, 66, 0.3));
    font-weight: 600;
}

.word-partners {
    background: linear-gradient(135deg, #B794F6 0%, #9F7AEA 50%, #B794F6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 9s ease-in-out infinite;
    animation-delay: -4s;
    /* Enhanced text shadow for better visibility */
    filter: drop-shadow(0 4px 12px rgba(183, 148, 246, 0.4)) drop-shadow(0 2px 6px rgba(159, 122, 234, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #BBBBBB;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Ensure buttons are never blurred */
    filter: none !important;
    backface-visibility: hidden;
}

.primary-button {
    background: linear-gradient(135deg, #43A047, #4CAF50);
    color: #FFFFFF;
}

.primary-button:hover {
    background: linear-gradient(135deg, #4CAF50, #43A047);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
}

.secondary-button {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #333333;
}

.secondary-button:hover {
    background: #1E1E1E;
    border-color: #43A047;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-container:hover .hero-content {
    transform: translateX(5px);
}

.hero-container:hover .hero-image {
    transform: translateY(-5px) scale(1.02) translateX(-5px);
}

.hero-container.in-view .hero-content {
    animation-play-state: running;
}

.hero-container.in-view .hero-image {
    animation-play-state: running;
}

/* Performance optimizations */
.hero-container,
.hero-content,
.hero-image {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-image {
        animation: heroContentReveal 0.3s ease forwards;
    }
    
    .hero-container:hover .hero-content,
    .hero-container:hover .hero-image {
        transform: none;
    }
    
    .hero-content > * {
        animation: fadeInUp 0.3s ease forwards;
    }
}

/* Story Wrapper */
.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

/* Story Progress Bars */
.story-progress-bars {
    display: flex;
    gap: 6px;
    width: min(400px, 100vw - 2rem);
    z-index: 20;
}

/* Instagram-style Story Container */
.story-container {
    position: relative;
    width: min(400px, 100vw - 2rem);
    height: 720px;
    border-radius: 32px;
    overflow: hidden;
    background: #1E1E1E;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 
                0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(67, 160, 71, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 
                0 10px 25px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(67, 160, 71, 0.15);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.progress-bar:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleY(1.2);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--progress, 0%);
    height: 100%;
    background: linear-gradient(90deg, #43A047, #4CAF50, #66BB6A);
    border-radius: 2px;
    transition: width 5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    box-shadow: 0 0 8px rgba(67, 160, 71, 0.3);
}

.progress-bar.active {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.progress-bar.active::before {
    background: linear-gradient(90deg, #ffffff, #f8f8f8, #ffffff);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    animation: progressPulse 2s ease-in-out infinite;
}

.progress-bar.completed {
    background: rgba(255, 255, 255, 0.5);
    transform: scaleY(1.1);
}

.progress-bar.completed::before {
    width: 100% !important;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

/* Story Content */
.story-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.story-slide.active {
    opacity: 1;
    transform: scale(1);
}

.story-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000000;
}

/* Story Overlay */
.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 60px 28px 28px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.story-slide.active .story-overlay {
    transform: translateY(0);
}

.story-overlay h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.story-overlay h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #43A047, #4CAF50);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(67, 160, 71, 0.3);
}

.story-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
}

/* Story Navigation Zones */
.story-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 15;
}

.nav-zone {
    flex: 1;
    cursor: pointer;
    background: transparent;
}

.nav-zone:hover {
    background: transparent;
}

.nav-zone:active {
    background: transparent;
}

.nav-prev {
    background: transparent;
}

.nav-next {
    background: transparent;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #1E1E1E;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #BBBBBB;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card.featured {
    background: linear-gradient(145deg, #1E1E1E, #333333);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #43A047;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(0);
    opacity: 0;
    animation: cardFadeIn 0.6s ease forwards;
    overflow: hidden;
}

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

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

.feature-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #43A047, #4CAF50, #43A047);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}


.feature-card.featured:active {
    transform: translateY(-5px) scale(1.02);
}

.additional-features {
    margin-top: 3rem;
}

.additional-features h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.feature-card.compact {
    background: linear-gradient(145deg, #1E1E1E, #2a2a2a);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(0);
    opacity: 0;
    animation: cardFadeIn 0.6s ease forwards;
}

.feature-card.compact:nth-child(1) { animation-delay: 0.3s; }
.feature-card.compact:nth-child(2) { animation-delay: 0.4s; }
.feature-card.compact:nth-child(3) { animation-delay: 0.5s; }
.feature-card.compact:nth-child(4) { animation-delay: 0.6s; }
.feature-card.compact:nth-child(5) { animation-delay: 0.7s; }
.feature-card.compact:nth-child(6) { animation-delay: 0.8s; }

.feature-card.compact:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: #43A047;
    box-shadow: 0 12px 25px rgba(67, 160, 71, 0.12), 
                0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card.compact:active {
    transform: translateY(-2px) scale(1.005);
}

.feature-icon.small {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    background: linear-gradient(135deg, #43A047, #4CAF50);
    border-radius: 8px;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(67, 160, 71, 0.2);
    flex-shrink: 0;
}

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

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #BBBBBB;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.feature-card {
    background: linear-gradient(145deg, #1E1E1E, #333333);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    opacity: 0;
    animation: cardFadeIn 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #43A047;
    box-shadow: 0 15px 40px rgba(67, 160, 71, 0.15), 
                0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:active {
    transform: translateY(-3px) scale(1.01);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #43A047, #4CAF50);
    border-radius: 12px;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #BBBBBB;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-highlight {
    color: #43A047;
    font-weight: 600;
    font-size: 0.9rem;
}


/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1E1E1E 0%, #121212 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: #BBBBBB;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    background: #1E1E1E;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    /* Ensure download buttons are never blurred */
    filter: none !important;
    backface-visibility: hidden;
}

.download-button:hover {
    background: #43A047;
    border-color: #43A047;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
}

.download-button.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.download-button.coming-soon:hover {
    background: #1E1E1E;
    border-color: #333333;
    color: #BBBBBB;
    transform: none;
    box-shadow: none;
}

.secondary-button.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.secondary-button.coming-soon:hover {
    background: transparent;
    border-color: #333333;
    transform: none;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
}

.store-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1;
    margin: 0;
}

.large-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

/* Footer */
.footer {
    background: #121212;
    padding: 2rem;
    border-top: 1px solid #333333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    color: #BBBBBB;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #BBBBBB;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #43A047;
}

.footer-contact {
    margin: 1rem 0;
}

.footer-contact p {
    color: #BBBBBB;
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact a {
    color: #43A047;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        animation: heroContentReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    }
    
    .hero-image {
        animation: heroContentReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    }
    
    .hero-container:hover .hero-content,
    .hero-container:hover .hero-image {
        transform: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        gap: 0.4rem;
    }
    
    .baseline-ai {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card.featured {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        border-top: 1px solid #333333;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

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

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #333333;
        display: block;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: #1E1E1E;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .cta-button {
        margin: 1rem !important;
        border-radius: 8px !important;
        width: calc(100% - 2rem) !important;
        max-width: 300px !important;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .baseline-ai {
        font-size: 2.2rem;
    }
    
    .highlight::after {
        height: 3px;
        bottom: -6px;
    }
    
    .hero-title span {
        margin-right: 0.15em;
        font-size: inherit;
        display: inline-block;
    }
    
    .hero-title span:hover {
        transform: translateY(-1px) scale(1.02);
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-card.featured {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-card.featured h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card.featured p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-highlight {
        font-size: 0.8rem;
    }

    /* Mobile-specific animations */
    .feature-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    
    .feature-card.compact:hover {
        transform: translateY(-2px) scale(1.005);
    }
    
    /* Touch-friendly active states */
    .feature-card:active {
        transform: translateY(-1px) scale(1.005);
    }
    
    .feature-card.featured:active {
        transform: translateY(-2px) scale(1.01);
    }
    
    .feature-card.compact:active {
        transform: translateY(-1px) scale(1.002);
    }
    
    .features, .cta {
        padding: 3rem 1rem;
    }
    
    .story-container {
        width: min(320px, 100vw - 2rem);
        height: 580px;
    }
    
    .story-progress-bars {
        width: min(320px, 100vw - 2rem);
        gap: 4px;
    }
    
    .progress-bar {
        height: 3px;
    }
    
    .progress-bar:hover {
        transform: scaleY(1.3);
    }
    
    .story-overlay {
        padding: 50px 24px 24px;
        border-radius: 0 0 24px 24px;
    }
    
    .story-overlay h3 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 10px;
    }
    
    .story-overlay h3::after {
        width: 35px;
        height: 2.5px;
        bottom: -7px;
    }
    
    .story-overlay p {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
    }
    
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.95);
        filter: blur(4px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(10px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.95) rotateY(15deg);
        filter: blur(4px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-10px) scale(1.02) rotateY(-3deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
        filter: blur(0);
    }
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(6px);
    }
    40% {
        opacity: 0.3;
        transform: translateY(20px) scale(0.95);
        filter: blur(3px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(67, 160, 71, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(67, 160, 71, 0.2);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes titleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes underlineGlow {
    0% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.02);
    }
}

.hero-content > * {
    opacity: 0;
    animation: heroContentReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title {
    animation-delay: 0.5s;
}

.hero-subtitle {
    animation-delay: 0.7s;
}

.hero-buttons {
    animation-delay: 0.9s;
    /* Ensure buttons are not blurred after animation */
    filter: none !important;
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        gap: 0.2rem !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-title span {
        margin-right: 0.2em !important;
        font-size: inherit !important;
        text-align: center !important;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2.0rem !important;
        line-height: 1.3 !important;
        gap: 0.2rem !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-title span {
        margin-right: 0.15em !important;
        text-align: center !important;
    }
    
    .story-container {
        width: min(280px, 100vw - 2rem) !important;
        height: 500px !important;
    }
    
    .story-progress-bars {
        width: min(280px, 100vw - 2rem) !important;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #64ffda 0%, #1de9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews .section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-number {
    color: #64ffda;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64ffda 0%, #1de9b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #121212;
    font-size: 1.1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.reviewer-location {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #64ffda 0%, #1de9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Reviews Responsive Design */
@media (max-width: 768px) {
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        padding: 0 1rem;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}