:root {
    --secondary-color: #333;
    --background-color: #000;
    --text-color: #fff;
    --card-background: #111;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header Styles */
header {
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 30px;
}

/* Button Styles - Lighter, more visible buttons */
.download-btn, .primary-btn {
    background: #4285f4; /* Bright Google-style blue */
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    text-align: center;
}

.download-btn:hover, .primary-btn:hover {
    background: #3367d6; /* Slightly darker on hover */
    transform: translateY(-1px);
}

/* Secondary button style */
.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fix hero buttons layout */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: none;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 24px;
}

/* Benefits Section */
.benefits {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Add top divider */
.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.benefits h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    margin-top: 2rem; /* Add space after divider */
}

.benefits-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure proper spacing between sections */
.section-divider + .benefits {
    padding-top: 2rem;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.benefits-image {
    flex: 1;
    position: relative;
    z-index: 0;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Demo Section */
.demo {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fixed Video Container */
.video-container {
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-background);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        margin: 2rem 0;
    }
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--card-background) 0%, rgba(17, 17, 17, 0.8) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Improvements */
footer {
    padding: 3rem 2rem;
    background-color: var(--card-background);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive improvements for bottom section */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        margin: 0 1rem;
    }
    
    .benefits {
        padding: 4rem 1rem;
    }
    
    .video-container {
        margin: 2rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .benefits-container::before {
        display: none;
    }
} 

/* Add hover effects for better interactivity */
.download-btn:hover, .primary-btn:hover {
    background: #1a6efd;
    transform: translateY(-1px);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improve accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Add loading state for images */
img {
    transition: opacity 0.3s ease;
}

img[loading] {
    opacity: 0;
}

/* Add system dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #000;
        --text-color: #fff;
        --card-background: #111;
    }
} 

/* Improve typography with SF Pro Display */
@font-face {
    font-family: 'SF Pro Display';
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sfprodisplay-regular-webfont.woff');
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Smooth animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .benefit-item {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add subtle parallax effect */
.benefits-image img {
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.benefits-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Improved skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: top 0.3s;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
} 

/* Add noise texture overlay */
.noise-overlay {
    display: none;
}

/* Section dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    margin: 2rem 0;
} 

/* Logo and icon styles */
.logo svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
}

/* Enhanced section dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    margin: 2rem 0;
}

/* Enhanced video container */
.video-container {
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 50.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} 

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row; /* Keep buttons side by side */
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
} 

/* For very small screens */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }
} 

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content section {
    margin: 2.5rem 0;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .privacy-content {
        margin: 100px auto 40px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
} 

/* Add to existing privacy/terms content styles */
.privacy-content a {
    color: #4285f4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.privacy-content a:hover {
    opacity: 0.8;
}

/* Numbered list styles for terms */
.privacy-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-content section {
    margin: 2.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content section:last-child {
    border-bottom: none;
} 

/* Contact Page Styles */
.contact-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-content section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-content a {
    color: #4285f4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-content a:hover {
    opacity: 0.8;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #4285f4;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
    opacity: 1;
}

.contact-btn svg {
    stroke: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.channel-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.channel-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        margin: 100px auto 40px;
    }
    
    .contact-content h1 {
        font-size: 2rem;
    }
} 

@media (max-width: 968px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits-image {
        width: 100%;
        max-width: 500px;
        margin: 2rem auto 0;
    }
} 

.hero-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-video {
        margin-top: 2rem;
    }
} 

.carousel {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 0 auto;
}

.carousel-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem; /* Increase space between image and dots */
}

.dot {
    width: 10px; /* Slightly larger dots */
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #4285f4;
} 