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

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #222;
    --text: #f5f5f5;
    --text-muted: #888;
    --accent: #8ccb05;
    --accent-secondary: #9d0706;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

main {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

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

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(140, 203, 5, 0.15));
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Sections */
section {
    margin-bottom: 64px;
}

h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

p strong {
    color: var(--text);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.feature span:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Why Section */
.why ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why li {
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.why li strong {
    color: var(--text);
}

/* Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

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

.button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(140, 203, 5, 0.3);
}

.store-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Subpage Header */
.page-header {
    text-align: center;
    padding: 40px 0 60px;
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 32px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 64px;
}

.contact-section p {
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages */
.legal-content {
    margin-bottom: 64px;
}

.legal-placeholder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.legal-placeholder > h2 {
    margin-bottom: 16px;
}

.legal-placeholder > p {
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-section p {
    font-size: 0.9375rem;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    main {
        padding: 40px 20px 60px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .logo {
        width: 100px;
    }

    .button {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .footer-links {
        gap: 16px;
    }

    .legal-placeholder {
        padding: 24px;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}
