/* Mills: Nine Mens Morris - Privacy Policy Minimalist Theme */

:root {
    /* Black and White Palette */
    --bg-light: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f9f9;
    
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    
    --accent-black: #000000;
    --accent-gray: #e0e0e0;
    --accent-gray-dark: #333333;
    
    --border-gray: 1px solid #e0e0e0;
    --border-black: 1px solid #000000;
    
    --container-max: 960px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Structure */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

.hero-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--accent-black);
    box-shadow: var(--shadow-soft);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--accent-black);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 32px;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0f0f0;
    color: #000000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: var(--border-gray);
    line-height: 1;
    text-transform: uppercase;
}

.badge-update {
    background: #000000;
    color: #ffffff;
    border: none;
}

/* Privacy policy main wrapper */
.policy-card {
    background-color: var(--bg-card);
    border: var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

/* Policy Content Details */
.policy-card h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 48px 0 20px;
    color: var(--accent-black);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
    border-bottom: 2px solid var(--accent-black);
    padding-bottom: 8px;
    width: fit-content;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.policy-card p strong {
    color: var(--text-primary);
}

/* Highlight boxes */
.highlight-box {
    background: #f9f9f9;
    border-left: 4px solid var(--accent-black);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin: 32px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

/* Lists */
.policy-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.policy-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.policy-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-black);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Interactive section grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0;
}

.feature-item {
    background: #ffffff;
    border: var(--border-gray);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--accent-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent-black);
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.accent-text {
    color: #000000;
}

/* Footer styling */
footer {
    border-top: var(--border-gray);
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #000000;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-card {
        padding: 32px 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 60px 0 30px;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}