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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #1A202C;
    color: #F7FAFC;
    line-height: 1.5;
    min-height: 100vh;
    font-weight: 300;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.logo {
    font-size: 14px;
    letter-spacing: 4px;
    color: #FBD38D;
    margin-bottom: 40px;
    font-weight: 200;
}

h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 18px;
    color: #CBD5E0;
    font-weight: 300;
}

/* Phone Mockup */
.preview {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #2D3748;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.screen {
    width: 100%;
    height: 100%;
    background: #1A202C;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.status-bar {
    height: 30px;
    background: #1A202C;
}

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

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.greeting {
    font-size: 18px;
    letter-spacing: 2px;
    color: #FBD38D;
    font-weight: 200;
}

.moon-icon {
    font-size: 24px;
}

.tonight-card {
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.2), rgba(159, 122, 234, 0.1));
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.card-label {
    font-size: 11px;
    color: #CBD5E0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

.play-btn {
    display: inline-block;
    background: rgba(251, 211, 141, 0.2);
    color: #FBD38D;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

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

.mini-card {
    flex: 1;
    height: 120px;
    background: #2D3748;
    border-radius: 15px;
}

.nav-bar {
    height: 60px;
    background: #2D3748;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: #4A5568;
    border-radius: 50%;
}

.nav-dot.active {
    background: #9F7AEA;
}

/* Description */
.description {
    padding: 80px 0;
}

.desc-block h2 {
    font-size: 32px;
    font-weight: 200;
    margin-bottom: 50px;
    text-align: center;
}

.features-simple {
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 40px;
}

.number {
    font-size: 14px;
    color: #9F7AEA;
    font-weight: 400;
}

.feature-item p {
    font-size: 20px;
    font-weight: 200;
    color: #F7FAFC;
    line-height: 1.4;
}

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

.download h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 10px;
}

.download-subtitle {
    font-size: 16px;
    color: #CBD5E0;
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn {
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-btn img {
    display: block;
    height: 40px;
    width: auto;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid #2D3748;
    margin-top: 80px;
}

footer p {
    font-size: 14px;
    color: #CBD5E0;
    line-height: 1.8;
}

.footer-year {
    color: #4A5568;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .feature-item {
        gap: 20px;
    }
    
    .feature-item p {
        font-size: 18px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        display: inline-block;
    }
}

/* Subtle animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-mockup {
    animation: float 6s ease-in-out infinite;
}

/* Clean focus states */
a:focus {
    outline: 2px solid #9F7AEA;
    outline-offset: 4px;
}

/* Remove all the fancy stuff */
.stars, .moon-glow, .ripple {
    display: none;
}