/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties - NexProLink Theme */
:root {
    /* Main Theme Colors - Orange & Black/White */
    --theme-accent: #f97316;
    --theme-accent-hover: #ea580c;
    --theme-accent-light: #fed7aa;
    --theme-accent-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    
    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #1a1a1a;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Border & Shadow */
    --border-color: #333333;
    --border-light: #404040;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.4);
    
    /* Radius */
    --border-radius: 16px;
    --border-radius-small: 8px;
    --border-radius-large: 24px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Mobile Notice Banner */
.mobile-notice {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-notice-icon {
    font-size: 16px;
}

.mobile-notice-text {
    font-weight: 600;
}

/* App Store Section - Mobile Top */
.app-store-section-top {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .app-store-section-top {
        display: block;
    }
    
    .app-store-section-bottom {
        display: none;
    }
}

/* Live Session Overlay - positioned over phone */
.live-session-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ea580c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
}

/* Modern Earning Steps */
.earning-steps-modern {
    margin: 3rem 0;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.steps-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.steps-subtitle-modern {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 500;
}

.modern-steps-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .modern-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.modern-step-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-1 { border-color: #3b82f6; }
.step-2 { border-color: #10b981; }
.step-3 { border-color: #f59e0b; }

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-number-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-1 .step-number-modern { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.step-2 .step-number-modern { background: linear-gradient(135deg, #10b981, #059669); }
.step-3 .step-number-modern { background: linear-gradient(135deg, #f59e0b, #d97706); }

.step-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.step-content-modern {
    position: relative;
    z-index: 2;
}

.step-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.75rem;
}

.step-desc-modern {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.benefit-tag.money { background: linear-gradient(135deg, #22c55e, #16a34a); }
.benefit-tag.home { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.benefit-tag.video { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.benefit-tag.growth { background: linear-gradient(135deg, #f59e0b, #d97706); }
.benefit-tag.earn { background: linear-gradient(135deg, #ef4444, #dc2626); }
.benefit-tag.remote { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.step-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    border-radius: 16px;
}

.step-1-gradient { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.step-2-gradient { background: linear-gradient(135deg, #10b981, #059669); }
.step-3-gradient { background: linear-gradient(135deg, #f59e0b, #d97706); }

.earning-cta {
    text-align: center;
    margin-top: 2rem;
}

.earning-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    animation: glow 2s infinite alternate;
}

.earning-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes glow {
    0% { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); }
    100% { box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5); }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .steps-title-modern {
        font-size: 2rem;
    }
    
    .modern-step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-benefits {
        justify-content: center;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Main Content - Mobile First */
.main {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 769px) {
    .main {
        padding: 2rem;
    }
}

/* Header - Mobile First */
.header {
    padding: 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .header {
        padding: 1.5rem 2rem;
    }
}

/* NexProLink Logo styles */
.nexprolink-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.logo-svg {
    width: 24px;
    height: 24px;
}

/* App Store Section */
.app-store-section {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
    text-align: center;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button-container {
    position: relative;
    display: inline-block;
}

.store-badge {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 8px;
}

.store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.coming-soon-overlay {
    position: absolute;
    top: 15%;
    right: -10%;
    transform: rotate(-12deg);
    background: rgba(0, 0, 0, 0.8);
    color: #ff6b35;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-shadow: none;
    border: 2px solid #ff6b35;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

/* Mobile adjustments and layout order */
@media (max-width: 768px) {
    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-section {
        order: 1;
    }
    
    .phone-section {
        order: 2;
        align-self: center;
        position: relative;
    }
    
    /* Move app store section into main content flow for mobile */
    .header .app-store-section {
        position: static;
        order: 3;
        margin: 2rem auto;
        justify-content: center;
    }
    
    .app-store-section {
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .store-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .store-badge {
        height: 45px;
    }
    
    .coming-soon-overlay {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* Optimize mobile elements */
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        order: 2;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
        order: 4;
    }
    
    .signup-steps {
        order: 5;
        margin: 2rem 0;
    }
    
    .waiting-list-form {
        order: 6;
        margin: 2rem 0;
    }
    
    .feature-card {
        padding: 1rem;
        text-align: center;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        opacity: 0.8;
    }
}

    .coming-soon-overlay {
        top: 10%;
        right: -15%;
        transform: rotate(-8deg);
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    /* Mobile scroll animations for feature cards */
    .feature-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease-out forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }

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

    /* Intersection Observer triggered animations */
    .feature-card.animate-in {
        animation: cardPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

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

/* Custom expertise field styling */
.custom-expertise-field {
    margin-top: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0 2rem 2rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    align-items: center;
    padding: 0;
    margin: 0;
}

@media (min-width: 769px) {
    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1400px;
        align-items: start;
    }
}

/* Content Section */
.content-section {
    order: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--theme-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: var(--bg-tertiary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: var(--theme-accent);
}

.feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 1-2-3 Signup Steps */
.signup-steps {
    margin-bottom: 3rem;
}

.steps-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.steps-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    min-width: 200px;
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--bg-tertiary);
    border-color: var(--theme-accent);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--theme-accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Waiting List Form */
.waiting-list-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-field {
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.full-width {
    grid-column: 1 / -1;
}

.cta-button {
    background: var(--theme-accent-gradient);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.cta-button:active {
    transform: translateY(0);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Social Proof Section */
.social-proof {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-accent);
    line-height: 1;
}

.proof-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.privacy-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Phone Section */
.phone-section {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .phone-section {
        padding: 2rem 0;
        gap: 2rem;
    }
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    order: 1;
}

@media (min-width: 769px) {
    .phone-mockup {
        max-width: 350px;
    }
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
    border-radius: 35px;
    padding: 8px;
    box-shadow: var(--shadow-strong);
    position: relative;
    transform: none;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .phone-frame {
        width: 280px;
        height: 560px;
        transform: rotateY(-5deg) rotateX(5deg);
    }
}

/* Enhanced mobile scroll animation */
@media (max-width: 768px) {
    .phone-frame {
        animation: mobileFloat 4s ease-in-out infinite;
        will-change: transform;
        transform: none;
        width: 240px;
        height: 480px;
    }
    
    .phone-frame:hover {
        animation-play-state: paused;
    }
}

@keyframes mobileFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-12px) rotate(1deg) scale(1.02); 
    }
    50% { 
        transform: translateY(-4px) rotate(0deg) scale(1.01); 
    }
    75% { 
        transform: translateY(-8px) rotate(-1deg) scale(1.02); 
    }
}

.phone-frame:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem 1rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.indicators {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.app-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.phone-content {
    padding: 1rem;
    height: calc(100% - 80px);
    overflow: hidden;
}

.feed-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.feed-post {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #333;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4C96FF, #ff6b35);
    border-radius: 50%;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified {
    color: #ff6b35;
    font-size: 8px;
}

.user-handle {
    font-size: 9px;
    color: #888;
}

.follow-btn {
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 600;
}

.post-content {
    padding-left: 4px;
}

.post-media {
    margin-bottom: 8px;
}

.post-image {
    background: linear-gradient(135deg, #ff6b35, #4C96FF);
    height: 80px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.emoji-reactions {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    opacity: 0.8;
}

.post-overlay-text {
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.post-text {
    font-size: 9px;
    color: #ddd;
    line-height: 1.3;
    margin-bottom: 8px;
}

.post-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #333;
}

.action-btn {
    font-size: 9px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 2px;
}

.app-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.nav-icon {
    font-size: 14px;
    opacity: 0.7;
}

.app-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    text-align: center;
}

/* Exact News Feed Recreation Styles */
.news-feed-header {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
}

.nav-icons {
    display: flex;
    gap: 16px;
}

.nav-icon, .share-icon {
    font-size: 16px;
    opacity: 0.8;
    color: #fff;
}

.main-post {
    background: #000;
    padding: 12px;
    border-bottom: 1px solid #333;
}

.post-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.user-profile {
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4C96FF, #ff6b35);
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.username {
    color: #888;
    font-weight: 400;
}

.post-time {
    font-size: 12px;
    color: #888;
}

.follow-button-red {
    background: #ff3b30;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.post-image-container {
    margin-bottom: 12px;
}

.post-main-image {
    height: 200px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-photo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #D2B48C 20%, #F4A460 40%, #DEB887 60%, #CD853F 80%, #A0522D 100%);
    background-size: cover;
    background-position: center;
    /* Simulating warm coffee shop atmosphere with browns and tans */
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 80px;
        background: #8B4513;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        opacity: 0.7;
    }
}

.floating-reactions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.reaction {
    font-size: 18px;
    opacity: 0.9;
    animation: float 2s ease-in-out infinite;
}

.reaction:nth-child(2) { animation-delay: 0.3s; }
.reaction:nth-child(3) { animation-delay: 0.6s; }
.reaction:nth-child(4) { animation-delay: 0.9s; }
.reaction:nth-child(5) { animation-delay: 1.2s; }

.floating-social-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.social-icon.blue { background: rgba(74, 144, 226, 0.9); }
.social-icon.pink { background: rgba(255, 105, 180, 0.9); }
.social-icon.green { background: rgba(46, 204, 113, 0.9); }
.social-icon.yellow { background: rgba(241, 196, 15, 0.9); }

.social-icon:nth-child(2) { animation-delay: 0.5s; }
.social-icon:nth-child(3) { animation-delay: 1s; }
.social-icon:nth-child(4) { animation-delay: 1.5s; }
.social-icon:nth-child(5) { animation-delay: 2s; }

.learn-spanish-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.spanish-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
}

.woman-with-coffee {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 120px;
}

.person-silhouette {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 40px;
    opacity: 0.6;
}

.post-description p {
    font-size: 13px;
    line-height: 1.4;
    color: #ddd;
    margin: 0;
}

.highlight-text {
    color: #ff6b35;
}

.see-more {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.post-engagement {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid #333;
}

.engagement-item {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.secondary-post {
    background: #000;
    padding: 12px;
    border-top: 1px solid #333;
}

.secondary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secondary-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #4C96FF);
}

.secondary-info {
    flex: 1;
    margin-left: 10px;
}

.secondary-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.secondary-handle {
    color: #888;
    font-weight: 400;
}

.secondary-time {
    font-size: 10px;
    color: #888;
}

.following-badge {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 1px solid #ff6b35;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
}

/* Enhanced 3 Simple Steps with Flow Arrows */
.signup-steps {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.steps-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.enhanced-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-step:hover::before {
    transform: scaleX(1);
}

.enhanced-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.step-icon {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.step-content {
    flex: 1;
}

.step-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 500;
}

.flow-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
    z-index: 3;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.enhanced-step:last-child .flow-arrow {
    display: none;
}

@media (max-width: 768px) {
    .enhanced-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .flow-arrow {
        position: static;
        align-self: center;
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* Mobile-first responsive design fixes */
* {
    box-sizing: border-box;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Compact 3 Simple Steps Design - Mobile First */
.signup-steps-compact {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.05);
    width: 100%;
    max-width: 100%;
}

.compact-steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.compact-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.step-number-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.compact-step-content {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.compact-step-heading {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ffffff;
    word-wrap: break-word;
    hyphens: auto;
}

.compact-step-description {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    hyphens: auto;
}

.compact-step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.compact-feature-tag {
    padding: 0.15rem 0.4rem;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    font-size: 0.65rem;
    color: #ff6b35;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.compact-step .step-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
}

.compact-step:last-child .step-arrow {
    display: none;
}

/* Desktop improvements */
@media (min-width: 769px) {
    .signup-steps-compact {
        margin: 2rem 0;
        padding: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .compact-step {
        padding: 1rem;
        gap: 1rem;
    }
    
    .step-number-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .compact-step-heading {
        font-size: 1.1rem;
    }
    
    .compact-step-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .compact-feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Live Session Indicator */
.live-session-indicator {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 53, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.live-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero section styling in header */
.hero-section {
    text-align: center;
    margin: 2rem 0;
    padding: 0 2rem;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-section .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* App store section under phone - Mobile First */
.app-store-section-bottom {
    margin: 0;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
    max-width: 100%;
    order: 2;
    box-sizing: border-box;
}

.app-store-section-bottom .store-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.store-button-container {
    position: relative;
    max-width: 140px;
    flex-shrink: 0;
}

.store-badge {
    width: 100%;
    height: auto;
    max-width: 140px;
    border-radius: 8px;
}

@media (min-width: 769px) {
    .app-store-section-bottom {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .app-store-section-bottom .store-buttons {
        gap: 1rem;
    }
    
    .store-button-container {
        max-width: 160px;
    }
    
    .store-badge {
        max-width: 160px;
    }
}

/* Enhanced 3-Step Process Styles */
.signup-steps {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a24 0%, #2a2a3a 100%);
    border-radius: 20px;
    margin: 3rem 0;
}

.steps-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.enhanced-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.enhanced-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.step-icon {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.step-content {
    flex: 1;
}

.step-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Mobile responsive for enhanced steps */
@media (max-width: 768px) {
    .steps-title {
        font-size: 2rem;
    }
    
    .enhanced-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-features {
        justify-content: center;
    }
}

.floating-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -20%;
    /* ... */
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: -25%;
    animation-delay: 1.5s;
}

.notification {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--border-color);
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    border: 1px solid var(--border-color);
    animation: scaleIn 0.3s ease;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-button {
    background: var(--theme-accent-gradient);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-content {
        padding: 2rem 2rem 4rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr 400px;
        gap: 4rem;
    }
    
    .content-section {
        order: 1;
    }
    
    .phone-section {
        order: 2;
    }
    
    .input-group {
        grid-template-columns: 1fr 1fr;
    }
    
    .floating-element {
        display: block;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-container {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 500px;
        gap: 6rem;
    }
    
    .phone-frame {
        width: 320px;
        height: 640px;
    }
    
    .waiting-list-form {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 1rem;
    }
    
    .main-content {
        padding: 0 1rem 2rem;
    }
    
    .waiting-list-form {
        padding: 2rem 1.5rem;
        margin: 0 -0.5rem;
    }
    
    .input-group {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        min-width: auto;
    }
    
    .social-proof {
        gap: 1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
}

/* Loading States */
.input-field:disabled,
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cta-button.loading {
    pointer-events: none;
}

.cta-button.loading .button-text::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* High Contrast and Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.cta-button:focus-visible,
.input-field:focus-visible,
.modal-button:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}
