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

html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: rgb(13, 0, 31);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    max-width: 600px;
    width: 100%;
    padding: 0 24px;
}

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

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgb(0, 210, 211);
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Features */
.features {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.feature p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA */
.cta {
    text-align: center;
    padding: 32px 0 48px;
}

.store-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.store-link:hover {
    opacity: 0.8;
}

.store-badge {
    height: 54px;
    width: auto;
}

.coming-soon {
    font-size: 1.1rem;
    color: rgba(0, 210, 211, 0.7);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
}

footer a {
    color: rgba(0, 210, 211, 0.6);
    text-decoration: none;
}

footer a:hover {
    color: rgb(0, 210, 211);
}

/* Privacy / Prose */
.back-link {
    display: inline-block;
    color: rgba(0, 210, 211, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding-top: 48px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: rgb(0, 210, 211);
}

.prose h1 {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(0, 210, 211);
    margin-bottom: 4px;
}

.prose .last-updated {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.prose h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 28px;
    margin-bottom: 8px;
}

.prose p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.prose a {
    color: rgb(0, 210, 211);
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding: 80px 0 48px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }
}
