:root {
    --primary-color: var(--gray-900);
    --text-light: var(--gray-500);
    --bg-color: var(--gray-50);
    --bg-light: var(--gray-100);
    --border-color: var(--gray-200);
    --shadow: 0 4px 30px hsla(0, 0%, 0%, 0.1);

    --gray-50: hsl(210, 20%, 98%);
    --gray-100: hsl(220, 14%, 96%);
    --gray-200: hsl(220, 13%, 91%);
    --gray-300: hsl(216, 12%, 84%);
    --gray-400: hsl(218, 11%, 65%);
    --gray-500: hsl(220, 9%, 46%);
    --gray-600: hsl(215, 14%, 34%);
    --gray-700: hsl(217, 19%, 27%);
    --gray-800: hsl(215, 28%, 17%);
    --gray-900: hsl(221, 39%, 11%);
    --gray-950: hsl(224, 71%, 4%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--bg-color);
    font-size: 18px;
}

header {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 4rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.container {
    width: 95%;
    max-width: 760px;
    margin: 0 auto;
}

.policy-header {
    gap: 0.5rem;
    padding: 2rem 1rem;
}

.hero-screenshot {
    max-width: 1080px;
    max-height: 60vh;
    width: 95%;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    border: 10px solid var(--bg-light);
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.badge {
    border-radius: 9999px;
    background-color: #f0fdf4;
    padding: 0.25rem 0.75rem;
    font-size: 15px;
    font-weight: 500;
    color: #15803d;
    border: 1px solid #86efac;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
}

.tagline {
    font-size: 1.25rem;
    color: var(--primary-color);
    text-wrap: balance;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    margin-bottom: 2.5rem;
}

.features {
    font-size: 20px;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

li::before {
    content: "▫️";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s ease-out, transform 0.2s ease-out;
    border: 2px solid transparent;
    background: var(--primary-color);
    color: white;
    margin-top: 1.2rem;
}

.btn:active {
    transform: scale(0.97);
}

.btn:hover {
    background: var(--gray-700);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    color: var(--gray-500);
    border-top: 1px solid var(--border-color);
    background-color: var(--primary-color);
    font-size: 16px;
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease-out;
}
footer a:hover {
    color: var(--gray-200);
}

/* Privacy Policy Styles */

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.policy-header,
.policy {
    align-items: flex-start;
}

.policy-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 960px;
}

.policy h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.policy ul li::before {
    content: "•";
    color: var(--text-light);
}

.policy code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: "Monaco", "Consolas", monospace;
    font-size: 0.875rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
    .badge {
        font-size: 13px;
        padding: 2px 8px;
        margin-bottom: 4px;
    }
    h1 {
        font-size: 2.6rem;
    }
    .btn {
        text-align: center;
    }
    .features {
        font-size: 18px;
    }
}
