@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap');

:root {
    /* Color Palette */
    --optic-brand-main: #0ea5e9; /* Sky 500 */
    --optic-ui-dark: #0f172a; /* Slate 900 */
    --optic-ui-light: #f8fafc; /* Slate 50 */
    --optic-tone-highlight: #f59e0b; /* Amber 500 */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    --gradient-dark: linear-gradient(to right, #0f172a, #1e293b);

    /* Fonts */
    --font-head: 'Oswald', sans-serif;
    --font-base: 'Inter', sans-serif;
}

body {
    font-family: var(--font-base);
    color: var(--optic-ui-dark);
    background-color: var(--optic-ui-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
}

/* Unique Semantic Classes */
.sight-navigation-bar {
    background-color: var(--optic-ui-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.wellness-intro-wrapper {
    position: relative;
    padding: 6rem 1rem;
    color: var(--optic-ui-light);
    text-align: center;
}

.wellness-intro-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.wellness-intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.ocular-concept-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--optic-brand-main);
}

.ocular-concept-box:hover {
    transform: translateY(-5px);
}

.step-flow-zone {
    padding: 4rem 1rem;
    background-color: #f1f5f9;
}

.step-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trigger-action-banner {
    padding: 4rem 1rem;
    text-align: center;
    color: white;
}

.informational-footer-base {
    background: var(--optic-ui-dark);
    color: #cbd5e1;
    padding: 3rem 1rem 1.5rem;
}

.cookie-consent-layer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--optic-ui-dark);
    color: var(--optic-ui-light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-consent-layer {
        flex-direction: row;
    }
}

.compliance-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
}

.compliance-btn.accept {
    background-color: var(--optic-tone-highlight);
    color: var(--optic-ui-dark);
}

.compliance-btn.decline {
    background-color: #4B5563;
    color: white;
}

.compliance-btn:hover {
    opacity: 0.9;
}

.visual-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-figure {
    font-size: 3.5rem;
    font-family: var(--font-head);
    color: var(--optic-brand-main);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.numbered-list-circle {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--optic-brand-main);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.8rem;
    margin-right: 8px;
    font-weight: bold;
}

.faq-panel {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.legal-document-wrapper {
    min-height: 100vh;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}