:root {
    --bg-color: #0F0F12;
    --card-bg: #1C1C1E;
    --text-main: #FFFFFF;
    --text-muted: #A1A1A6;
    --accent: #0A84FF;
    --accent-hover: #0071E3;
    --danger: #FF453A;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(15, 15, 18, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Badge Animations */
.nav-badge img,
.app-store-badge img {
    transition: opacity 0.2s, transform 0.2s;
}

.nav-badge:hover img,
.app-store-badge:hover img {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* --- Buttons --- */
.btn-primary,
.btn-primary-small {
    background-color: var(--accent);
    color: white !important;
    font-weight: 600;
    border-radius: 99px;
    text-align: center;
}

.btn-primary {
    padding: 12px 32px;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary-small {
    padding: 8px 20px;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    /* Centers the Hero */
}

.badge {
    background: rgba(255, 69, 58, 0.15);
    color: var(--danger);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid rgba(255, 69, 58, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFF 0%, #A1A1A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
    /* Centers the subtitle text block */
    font-weight: 300;
}

.subtitle strong {
    color: var(--text-main);
    font-weight: 500;
}

.version-info {
    display: block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- App Mockup --- */
.app-mockup {
    margin-top: 60px;
    background: #2C2C2E;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-bar {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.screenshot-placeholder {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
    background: linear-gradient(180deg, rgba(40, 40, 40, 1) 0%, rgba(20, 20, 20, 1) 100%);
}

/* --- Features --- */
.features {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing {
    padding: 80px 20px;
    background: #000;
    border-top: 1px solid #333;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.price-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan {
    flex: 1;
    min-width: 280px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.plan.highlight {
    border: 1px solid var(--accent);
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.1) 0%, rgba(28, 28, 30, 0) 100%);
}

.plan h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.plan .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.plan ul {
    list-style: none;
    margin-bottom: 32px;
}

.plan li {
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    gap: 8px;
}

.plan li::before {
    content: "✓";
    color: var(--accent);
}

/* --- Footer --- */
footer {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #222;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* --- Privacy Policy Specific Styles --- */
/* This section handles the Privacy Page Layout */

.policy-container {
    width: 100%;
    max-width: 800px;
    /* Limits width for readability */
    margin: 0 auto;
    /* CRITICAL: This centers the container */
    padding: 60px 20px 100px;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.last-updated {
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.policy-container section {
    margin-bottom: 40px;
}

.policy-container h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.policy-container p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.policy-container li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.policy-container li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-container strong {
    color: var(--text-main);
    font-weight: 600;
}

.policy-container .link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.policy-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Consider a mobile menu later */
    .hero {
        padding-top: 60px;
    }
}