:root {
    /* Brand Color Palette */
    --color-teal-dark: #357B82;
    --color-teal-mid: #369D9A;
    --color-teal-bright: #389F9B;
    --color-lime-vibrant: #A0CA4C;
    --color-lime-soft: #9FC26B;
    --color-olive-dark: #7A9E47;

    /* Dark UI Theme Tokens */
    --bg-dark: #091012;
    --bg-surface: #121F23;
    --bg-surface-border: rgba(160, 202, 76, 0.15);
    --text-primary: #F2F8F8;
    --text-secondary: #90A8AB;
    --text-muted: #536B6E;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.7;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    overflow-x: hidden;
}

/* Animated Ambient Background Gradients */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 50% 20%, rgba(53, 123, 130, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 80% 50%, rgba(160, 202, 76, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(56, 159, 155, 0.18) 0%, transparent 50%);
    filter: blur(60px);
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Page Containers */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

.content-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 0;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-surface-border);
}

.logo-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(160, 202, 76, 0.18) 0%, transparent 70%);
    filter: blur(25px);
    z-index: -1;
}

.brand-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

header .brand-logo {
    max-width: 220px;
    margin-bottom: 1.5rem;
}

/* Status Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    background: rgba(160, 202, 76, 0.1);
    border: 1px solid rgba(160, 202, 76, 0.25);
    color: var(--color-lime-vibrant);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-lime-vibrant);
    box-shadow: 0 0 8px var(--color-lime-vibrant);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Headings */
.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 40%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 40%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--color-lime-vibrant);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
}

/* Highlight Box */
.highlight-box {
    background: rgba(160, 202, 76, 0.08);
    border: 1px solid rgba(160, 202, 76, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
}

.highlight-box h3 {
    color: var(--color-lime-vibrant);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box p {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Legal Content Sections */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2rem;
    background-color: var(--color-lime-vibrant);
    border-radius: 2px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer, .footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    width: 100%;
    max-width: 800px;
    z-index: 1;
}

footer a, .footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover, .footer a:hover {
    color: var(--color-lime-vibrant);
}

.email-link {
    color: var(--color-lime-vibrant);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.email-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .page-title {
        font-size: 1.75rem;
    }
    .heading {
        font-size: 1.4rem;
    }
    .brand-logo {
        max-width: 240px;
    }
    .description {
        font-size: 0.95rem;
    }
    footer, .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
