/* Variables */
:root {
    --neon-pink: #FF3366;
    --neon-purple: #8360c3;
    --neon-green: #2ebf91;
    --ios-blue: #007AFF;
    --dark-bg: #000000;
    --dark-card: #1C1C1E;
    --dark-surface: #2C2C2E;
    --text-primary: #ffffff;
    --text-secondary: #8E8E93;
    --gradient: linear-gradient(135deg, #FF3366, #8360c3);
    --gradient-hover: linear-gradient(135deg, #FF5580, #9570d3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}

body {
    font-family: '.SF Pro Text', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(255, 51, 102, 0.1);
}

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

.nav-logo {
    cursor: pointer;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(45, 212, 191, 0.3));
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(45, 212, 191, 0.5));
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-pink);
}

.btn-nav {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
    border-color: var(--neon-pink);
}

.btn-nav:hover::before {
    opacity: 1;
}

.nav-mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--neon-pink);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-pink);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--ios-blue);
    top: 20%;
    left: 10%;
    animation-delay: 21s;
}

.orb-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-green));
    bottom: 20%;
    right: 10%;
    animation-delay: 28s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(50px);
    }
    50% {
        transform: translateY(30px) translateX(-30px);
    }
    75% {
        transform: translateY(-30px) translateX(-50px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 51, 102, 0.6);
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 51, 102, 0.8);
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: '.SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.text-neon {
    color: var(--neon-pink);
    animation: text-glow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-prop:hover {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateX(5px);
}

.value-prop i {
    color: var(--neon-pink);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.value-prop span {
    color: white;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(255, 51, 102, 0.3),
        0 0 60px rgba(255, 51, 102, 0.2);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: white;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 51, 102, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.glass-stat {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-stat:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 51, 102, 0.1);
    position: relative;
    animation: float-phone 6s infinite ease-in-out;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px) rotateZ(0deg);
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(255, 51, 102, 0.2);
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(0) rotateZ(2deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(-2deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App UI Mockup Styles */
.app-ui-mockup {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    font-family: '.SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.status-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-icon {
    width: 32px;
    height: 32px;
}

.header-title {
    font-size: 18px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

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

.icon {
    font-size: 20px;
    opacity: 0.8;
}

.feed-section {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.activity-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-2px);
    border-color: var(--neon-pink);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.2);
}

.activity-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.activity-location {
    font-size: 13px;
    color: var(--neon-purple);
    margin-bottom: 8px;
}

.activity-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.badge.hot {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.badge.crowd {
    background: rgba(131, 96, 195, 0.2);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.badge.music {
    background: rgba(46, 191, 145, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.badge.drinks {
    background: rgba(0, 122, 255, 0.2);
    border-color: var(--ios-blue);
    color: var(--ios-blue);
}

.badge.energy {
    background: rgba(255, 149, 0, 0.2);
    border-color: #FF9500;
    color: #FF9500;
}

.badge.dance {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.activity-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-pink);
}

.bottom-nav {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 12px 0 8px;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

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

.nav-item.active .nav-label {
    color: var(--neon-pink);
}

.nav-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nav-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.company-stat {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.company-stat:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.company-stat h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-stat p {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface));
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: '.SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 51, 102, 0.05), 
        rgba(131, 96, 195, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 20px 40px rgba(255, 51, 102, 0.2),
        0 0 60px rgba(255, 51, 102, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.15;
}

.feature-icon i {
    position: relative;
    z-index: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--dark-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    opacity: 0.5;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* App Preview */
.app-preview {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-surface), var(--dark-bg));
}

.preview-carousel {
    margin-top: 80px;
    position: relative;
}

.preview-track {
    display: flex;
    transition: transform 0.5s ease;
}

.preview-item {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.preview-phone img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.preview-description h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.preview-description p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.preview-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.preview-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-control.active {
    background: var(--neon-pink);
    width: 40px;
    border-radius: 20px;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
}

.problems-carousel {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.problems-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 400%;
}

@media (max-width: 768px) {
    .problems-carousel {
        padding: 0 20px;
        margin: 40px -20px 0 -20px;
    }
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 25%;
    width: 25%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--neon-pink);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 51, 102, 0.6);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-pink);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--neon-pink);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Beta Signup */
.beta-signup {
    padding: 80px 0;
    background: var(--dark-bg);
}

.beta-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 30px;
    padding: 80px;
    border: 2px solid var(--glass-border);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 51, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.beta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 51, 102, 0.03), 
        rgba(131, 96, 195, 0.03));
    pointer-events: none;
}

.beta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.beta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.beta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.beta-counter {
    font-size: 16px;
    color: var(--neon-pink);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.beta-perks-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.perk-item i {
    color: var(--neon-pink);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.perk-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.beta-perks {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-green);
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.beta-form .form-row {
    display: flex;
    gap: 15px;
}

.beta-form .form-row input {
    flex: 1;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
    padding: 18px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-family: '.SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.beta-form input::placeholder,
.beta-form textarea::placeholder {
    color: var(--text-secondary);
}

.beta-form textarea {
    resize: vertical;
    min-height: 120px;
}

.beta-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 55px;
}

.beta-form select option {
    background: #1C1C1E;
    color: white;
    padding: 12px;
    border: none;
}

.beta-form select:invalid {
    color: var(--text-secondary);
}

.beta-form select:valid {
    color: white;
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 51, 102, 0.05);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}

.btn-submit {
    position: relative;
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    display: none;
}

.form-message.success {
    background: rgba(46, 191, 145, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    display: block;
}

.city-input-container {
    position: relative;
    width: 100%;
}

.city-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.city-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-suggestion:last-child {
    border-bottom: none;
}

.city-suggestion:hover,
.city-suggestion.highlighted {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-pink);
}

.city-suggestion-main {
    font-weight: 500;
    color: white;
}

.city-suggestion-sub {
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-top: 2px;
}



.beta-note {
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* App Mockup Styles */
.app-mockup-container {
    width: 100%;
    height: 100%;
    background: #191923;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    padding: 15px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #222230;
    border-radius: 12px;
    margin-bottom: 15px;
}

.mockup-logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF3366, #8360c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mockup-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.mockup-hot-spots {
    margin-bottom: 20px;
}

.mockup-hot-spots h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.mockup-venue-cards {
    display: flex;
    gap: 10px;
}

.mockup-venue-card {
    flex: 1;
    background: #222230;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.venue-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.venue-rating {
    font-size: 12px;
    color: #FF3366;
    margin-bottom: 4px;
}

.venue-status {
    font-size: 11px;
    color: #8360c3;
}

.mockup-feed {
    flex: 1;
}

.mockup-feed-item {
    background: #222230;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.feed-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FF3366, #8360c3);
    border-radius: 50%;
}

.feed-content {
    flex: 1;
}

.feed-username {
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.feed-location {
    color: #8360c3;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.feed-tags {
    display: flex;
    gap: 8px;
}

.feed-tags span {
    background: rgba(255, 51, 102, 0.1);
    color: #FF3366;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.mockup-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background: #222230;
    border-radius: 12px;
    margin-top: auto;
}

.nav-icon {
    font-size: 20px;
    opacity: 0.5;
}

.nav-icon.active {
    opacity: 1;
    color: #FF3366;
}

/* Preview Mockup Styles */
.preview-mockup {
    width: 100%;
    height: 600px;
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mockup-status-bar {
    padding: 8px 20px;
    font-size: 14px;
    color: white;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    font-weight: 600;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.mockup-logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-logo-icon {
    width: 28px;
    height: 28px;
}

.mockup-logo-text {
    font-size: 16px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.mockup-icons {
    display: flex;
    gap: 16px;
    font-size: 18px;
    opacity: 0.8;
}

.mockup-section-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.preview-feed-content {
    padding: 20px;
    flex: 1;
}

.preview-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.preview-feed-item:hover {
    transform: translateY(-2px);
    border-color: var(--neon-pink);
}

.mini-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF3366, #8360c3);
    border-radius: 50%;
    flex-shrink: 0;
}

.feed-item-content {
    flex: 1;
}

.feed-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-size: 15px;
}

.feed-checkin {
    color: var(--neon-purple);
    font-size: 13px;
    margin-bottom: 8px;
}

.feed-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mini-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.mini-badge.hot {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.mini-badge.crowd {
    background: rgba(131, 96, 195, 0.2);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.mini-badge.music {
    background: rgba(46, 191, 145, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.mini-badge.drinks {
    background: rgba(0, 122, 255, 0.2);
    border-color: var(--ios-blue);
    color: var(--ios-blue);
}

.mini-badge.energy {
    background: rgba(255, 149, 0, 0.2);
    border-color: #FF9500;
    color: #FF9500;
}

.mini-badge.dance {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.feed-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-pink);
}

/* Map Mockup */
.map-search-bar {
    background: rgba(34, 34, 48, 0.95);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 12px 20px;
    border-radius: 25px;
    color: #b0b0c0;
}

.map-view {
    height: 400px;
    position: relative;
    background: #0a0a0f;
    margin: 0 20px;
    border-radius: 15px;
    overflow: hidden;
}

.map-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 51, 102, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 102, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
}

.pin-dot {
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    margin-bottom: 8px;
    border: 2px solid white;
}

.pin-dot.hot {
    background: #FF3366;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.5);
}

.pin-dot.medium {
    background: #8360c3;
}

.pin-dot.quiet {
    background: #2ebf91;
}

.map-pin span {
    transform: rotate(0);
    background: rgba(34, 34, 48, 0.95);
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(34, 34, 48, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
}

/* Venue Mockup */
.venue-hero-img {
    height: 180px;
    background: linear-gradient(135deg, #FF3366, #8360c3);
    position: relative;
}

.venue-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.venue-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.venue-hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.venue-hero-text h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.venue-hero-text span {
    font-size: 13px;
    opacity: 0.9;
}

.venue-live-status {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid #FF3366;
    margin: 20px;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FF3366;
    font-size: 14px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.venue-ratings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px;
}

.rating-box {
    background: #222230;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-label {
    font-size: 11px;
    color: #b0b0c0;
}

.rating-value {
    font-size: 18px;
    font-weight: 600;
    color: #FF3366;
}

.venue-checkin-btn {
    background: linear-gradient(135deg, #FF3366, #8360c3);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 20px;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.footer-info h4,
.footer-links h4,
.footer-social h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-pink);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero .container {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    
    .glass-stat {
        padding: 16px;
        min-width: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step::after {
        display: none;
    }
    
    .preview-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .beta-card {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .beta-perks {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
/* Enh
anced Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .problems-carousel {
        margin-top: 40px;
    }
    
    .problem-card {
        flex: 0 0 25%;
        width: 25%;
        padding: 30px 25px;
        min-height: 180px;
    }
    
    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .beta-form input,
    .beta-form select,
    .beta-form textarea {
        padding: 16px 20px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .beta-form select {
        background-size: 18px;
        padding-right: 50px;
        background-position: right 18px center;
    }
    
    .beta-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .value-props {
        margin: 30px 0;
    }
    
    .value-prop {
        padding: 12px 16px;
    }
    

    
    .beta-perks-new {
        gap: 12px;
    }
    
    .perk-item {
        padding: 10px 16px;
    }
    
    .problem-solution,
    .faq-section {
        padding: 40px 0;
    }
    
    .beta-signup {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
}