/* CSS Variables for Brand Consistency */
:root {
    --bg-dark: #070C17;
    --bg-light: #152342;
    --mint-primary: #2EED8A;
    --mint-dark: #00B368;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-stack);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span.mint { color: var(--mint-primary); }
.logo span.poll { color: var(--text-main); }

.logo svg {
    width: 40px;
    height: 40px;
}

/* Main Content Areas */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 5%;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.5s ease-in;
}

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

/* Hero Section Styling */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--mint-primary);
}

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

.price-match-badge {
    display: inline-block;
    background: rgba(46, 237, 138, 0.1);
    border: 1px solid var(--mint-dark);
    color: var(--mint-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* App Store Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.2s, border-color 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
    border-color: var(--mint-primary);
}

.store-btn svg { width: 30px; height: 30px; fill: white; }
.store-btn .btn-text { text-align: left; }
.store-btn .btn-small { font-size: 0.7rem; display: block; opacity: 0.8; }
.store-btn .btn-large { font-size: 1.1rem; font-weight: 600; }

/* Legal Pages Styling */
.legal-content h2 { margin-bottom: 1.5rem; color: var(--mint-primary); }
.legal-content h3 { margin: 1.5rem 0 0.5rem 0; }
.legal-content p { color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.legal-document h1 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--mint-primary); }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: var(--text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.legal-content hr { border: none; border-top: 1px solid rgba(46, 237, 138, 0.2); margin: 2rem 0; }
.legal-content em { color: var(--text-muted); }

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h4 { margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--mint-primary); }
.copyright { text-align: center; color: var(--text-muted); margin-top: 3rem; font-size: 0.9rem; }
