/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #E4EBF2;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* 3D Background Canvas */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(228, 235, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #ccc;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.nav-download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-badge {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-download-btn:hover {
    transform: translateY(-1px);
}

.nav-download-btn:hover .nav-badge {
    filter: brightness(0.9);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Enhanced Hero Text */
.hero-text-container {
    animation: heroTextEntry 1.5s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-transform: uppercase;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.title-line-2 {
    animation-delay: 0.3s;
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    animation-delay: 0.6s;
    font-size: 88px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 500;
}

.subtitle-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

.subtitle-reveal.delay-1 {
    animation-delay: 1.3s;
    color: #ff6b35;
    font-weight: 600;
}

.subtitle-reveal.delay-2 {
    animation-delay: 1.6s;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-text {
    margin-bottom: 32px;
    opacity: 0;
    animation: pulseIn 1s ease-out 2s forwards;
}

.limited-time {
    background: linear-gradient(135deg, #ff6b35, #f7941d);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

/* App Icon */
.app-icon {
    margin-bottom: 32px;
    text-align: left;
}

.icon-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.icon-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* App Screenshots */
.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* App Store Buttons */
.app-store-buttons {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    background: none !important;
    border: none;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    margin-right: 16px;
}

.store-badge {
    height: 68px;
    width: auto;
    transition: all 0.3s ease;
}

.store-badge.large {
    height: 88px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    background: none !important;
    box-shadow: none !important;
}

.download-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: none;
    border: none;
    padding: 0;
}

.hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    height: 700px;
}

.phone-mockup {
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px);
}

.phone-1 {
    transform: rotate(-5deg) translateY(-20px);
    z-index: 3;
}

.phone-2 {
    transform: scale(1.1);
    z-index: 4;
}

.phone-3 {
    transform: rotate(5deg) translateY(-20px);
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}



/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.08);
        filter: brightness(1.2);
    }
}

@keyframes heroTextEntry {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes downloadEntry {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.phone-1, .phone-3 {
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-2 {
    animation: phoneFloat 4s ease-in-out infinite 1s;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    margin-bottom: 24px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
    font-weight: 500;
}

/* Premium Section */
.premium-section {
    padding: 80px 0;
    text-align: center;
}

.premium-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-subtitle {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 60px;
    line-height: 1.4;
    font-weight: 500;
}

.premium-visual {
    margin: 60px 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.premium-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 12px;
    border: 1px solid #333;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: block; /* Visible on all devices */
}

.video-content {
    max-width: 800px;
    margin: 0 auto;
}

.video-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    width: 100%;
    height: 450px;
}

.app-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    background: #000;
    transform: scale(1.1);
}

.app-video::-webkit-media-controls {
    display: none;
}

.app-video::-webkit-media-controls-enclosure {
    display: none;
}

/* Custom video controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.video-control-btn {
    background: rgba(255, 107, 53, 0.9);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 80px;
}

.video-control-btn:hover {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.05);
}

.mute-button {
    background: rgba(51, 51, 51, 0.9);
}

.mute-button:hover {
    background: rgba(51, 51, 51, 1);
}



/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    text-align: center;
}

.reviews-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reviews-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-text {
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
    font-weight: 500;
}

.review-author strong {
    color: #1a1a1a;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.review-author span {
    color: #888;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 16px;
    color: #bbb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    text-align: center;
}

/* Enhanced Download Section */
.download-content {
    text-align: center;
    animation: downloadEntry 1s ease-out;
}

.download-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.download-line-1 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.5s forwards;
}

.download-line-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.8s forwards;
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 72px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.download-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.download-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
}

.download-reveal.delay-1 {
    animation-delay: 1.5s;
    color: #ff6b35;
    font-weight: 600;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.proof-stat {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pulse-cta {
    animation: ctaPulse 2s ease-in-out infinite;
    transform-origin: center;
}

.final-push {
    margin-top: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.5s forwards;
}

.guarantee {
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Privacy Policy Link */
.privacy-link {
    color: #ccc !important;
    font-size: 13px !important;
    border-top: 1px solid #333;
    padding-top: 8px !important;
    margin-top: 8px !important;
}

.privacy-link:hover {
    color: #fff !important;
}

/* Removed Footer */

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 12px 20px;
        justify-content: space-between;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-right {
        gap: 15px;
        order: unset;
        width: auto;
        justify-content: flex-end;
        flex-shrink: 0;
    }
    
    .nav-links {
        gap: 10px;
        justify-content: flex-end;
        flex: none;
        font-size: 13px;
    }
    
    .nav-badge {
        height: 24px;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .title-line-3 {
        font-size: 48px !important;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .limited-time {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .download-title {
        font-size: 32px;
    }
    
    .download-line-2 {
        font-size: 40px !important;
    }
    
    .download-subtitle {
        font-size: 18px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .proof-stat {
        font-size: 13px;
    }
    
    .icon-image {
        width: 100px;
        height: 100px;
    }
    
    .app-store-buttons {
        gap: 12px;
        justify-content: flex-start;
    }
    
    .store-badge {
        height: 42px;
    }
    
    .store-badge.large {
        height: 56px;
    }
    
    .hero-phones {
        display: none; /* Hide phone mockups on tablets and mobile */
    }
    
    .phone-mockup {
        display: none; /* Hide phone mockups on tablets and mobile */
    }

    /* Video section mobile styling */
    .video-section {
        padding: 60px 0;
    }
    
    .video-title {
        font-size: 36px;
    }
    
    .video-subtitle {
        font-size: 16px;
    }
    
    .phone-1, .phone-3 {
        transform: rotate(0deg) translateY(0px);
    }
    
    .phone-2 {
        transform: scale(1);
        order: -1;
        margin-bottom: 20px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .download-store-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .premium-title {
        font-size: 36px;
    }
    
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 10px 16px;
        justify-content: space-between;
    }
    
    .nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .nav-links {
        gap: 8px;
        font-size: 12px;
    }
    
    .nav-badge {
        height: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .title-line-3 {
        font-size: 36px !important;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .limited-time {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .download-title {
        font-size: 24px;
    }
    
    .download-line-2 {
        font-size: 32px !important;
    }
    
    .social-proof {
        gap: 12px;
    }
    
    .proof-stat {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .icon-image {
        width: 80px;
        height: 80px;
    }
    
    .app-store-buttons {
        gap: 10px;
        justify-content: flex-start;
    }
    
    .store-badge {
        height: 38px;
    }
    
    .store-badge.large {
        height: 48px;
    }
    
    .hero-phones {
        display: none; /* Hide phone mockups on mobile */
    }
    
    .phone-mockup {
        display: none; /* Hide phone mockups on mobile */
    }

    /* Video section mobile styling */
    .video-section {
        padding: 40px 0;
    }
    
    .video-title {
        font-size: 28px;
    }
    
    .video-subtitle {
        font-size: 14px;
    }
    
    .video-player {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        height: 250px;
    }
    
    .premium-title {
        font-size: 24px;
    }
    
    .premium-subtitle {
        font-size: 16px;
    }
    
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 12px;
    }
    
    .reviews-title {
        font-size: 24px;
    }
    
    .download-title {
        font-size: 24px;
    }
}

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

/* Selection colors */
::selection {
    background-color: #ffffff;
    color: #000000;
}

/* Loading animations */
body:not(.loaded) .app-icon,
body:not(.loaded) .hero-title,
body:not(.loaded) .hero-subtitle,
body:not(.loaded) .app-store-buttons,
body:not(.loaded) .hero-phones {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

/* Enhanced phone animations */
.phone-mockup {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Clean App Store buttons - no backgrounds */
.app-store-btn * {
    background: none !important;
    box-shadow: none !important;
}

/* Micro-interactions */
.phone-mockup:active {
    transform: scale(0.98);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.stat-item:hover .stat-number {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
} 