:root {
    --brand-color: oklch(0.6 0.23 26.48);
    --brand-color-hover: oklch(0.65 0.25 26.48);
    --brand-color-light: oklch(0.8 0.15 26.48);
    --warning-color: oklch(0.75 0.15 85);
    --warning-color-hover: oklch(0.8 0.18 85);
    --warning-color-light: oklch(0.9 0.1 85);
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --shadow-light: rgba(0, 0, 0, 0.24);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-heavy: rgba(0, 0, 0, 0.6);
    --accent-success: #34d399;
    --accent-warning: #fbbf24;
    --accent-error: #f87171;
    --warning-color: oklch(0.7 0.12 75);
    --warning-color-hover: oklch(0.75 0.15 75);
    --warning-color-light: oklch(0.8 0.1 75);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

header {
    background: var(--bg-primary);
    box-shadow: 0 4px 20px var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.header-left {
    flex: 1;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.theme-toggle-container {
    position: relative;
}

.theme-toggle-btn {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.theme-toggle-btn:hover {
    background: var(--brand-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.theme-icon {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.theme-icon-moon {
    display: none;
}

[data-theme="dark"] .theme-icon-sun {
    display: none;
}

[data-theme="dark"] .theme-icon-moon {
    display: block;
}

.theme-toggle-btn:hover .theme-icon {
    transform: rotate(20deg);
}

.uppercase {
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}

.main-title {
    text-align: center;
    color: var(--brand-color);
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-notice-content {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 12px 40px var(--shadow-medium);
    border: 2px solid var(--brand-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.legal-notice-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-color-hover));
}

.legal-notice-icon {
    background: var(--brand-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.legal-notice-icon i {
    font-size: 1.5rem;
}

.legal-notice-text {
    flex: 1;
}

.legal-notice-content:hover {
    transform: translateY(-6px);
}

.submission-instructions {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid var(--accent-success);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.submission-instructions:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.submission-icon {
    background: var(--accent-success);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.submission-icon i {
    font-size: 1.5rem;
}

.submission-content h3 {
    color: var(--accent-success);
    margin-bottom: 0.5rem;
}

.submission-content p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.submission-email {
    background: var(--accent-success);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.submission-email:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.title {
    color: var(--text-primary);
    text-align: center;
    margin: 2rem 0;
}

.obligations-notice-content {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.obligations-notice-line {
    display: block;
    margin: 1rem 0;
    font-size: 1.1rem;
    position: relative;
}

.obligations-notice-line:first-child {
    font-weight: 600;
    color: var(--brand-color);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.obligations-notice-line:first-child::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-color-hover));
    border-radius: 2px;
}

.obligations-notice-line:last-child {
    color: var(--text-secondary);
    font-style: italic;
}

ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.obligation {
    background: var(--bg-primary);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 12px;
    border-left: 4px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    opacity: 0;
}

.obligation.has-evidence {
    border-left-color: var(--brand-color);
}

.obligation.is-recommended {
    border-left-color: var(--warning-color);
}

.obligation:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px var(--shadow-medium);
    border-left-width: 6px;
}

.obligation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.obligation-text {
    flex: 1;
}

.required-evidence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-hover));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Figtree", sans-serif;
    flex-shrink: 0;
    position: sticky;
    top: 0;
}

.required-evidence-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-medium);
    background: linear-gradient(135deg, var(--brand-color-hover), var(--brand-color));
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--warning-color), var(--warning-color-hover));
    color: #2d1b0a;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Figtree", sans-serif;
    flex-shrink: 0;
    position: sticky;
    top: 0;
}

.recommended-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-medium);
    background: linear-gradient(135deg, var(--warning-color-hover), var(--warning-color));
}

.badge-icon {
    display: flex;
    align-items: center;
    font-size: 0.6rem;
}

.evidence-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}

.disclaimer-content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid var(--accent-error);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disclaimer-header i {
    font-size: 2rem;
    color: var(--accent-error);
}

.disclaimer-header h3 {
    color: var(--accent-error);
    margin: 0;
}

.disclaimer-text p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.disclaimer-text .figtree-bold {
    color: var(--accent-error);
    font-weight: 700;
}

.disclaimer-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(239, 68, 68, 0.4);
}

footer {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px var(--shadow-light);
}

.company-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.contact-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-link {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--brand-color-hover);
    text-decoration: underline;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item:hover i {
    color: var(--brand-color);
}

.bottom-bar {
    background: var(--bg-tertiary);
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.bottom-bar p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 959px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid > *:nth-child(2n-1):nth-last-of-type(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .header-left {
        flex: none;
    }
    
    .logo {
        order: -1;
    }
    
    .container {
        padding: 1rem;
        padding-top: 100px;
    }

    .submission-instructions {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .disclaimer-content {
        padding: 2rem;
    }
    
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .obligation {
        padding: 1rem;
    }
    
    .obligation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .required-evidence-badge,
    .recommended-badge {
        align-self: flex-start;
    }
    
    .contact-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 559px) {
    .legal-notice-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 359px) {
    .logo img {
        height: 40px;
    }
    
    .footer-logo img {
        height: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-notice-content {
    animation: fadeInUp 0.6s ease forwards;
}

.submission-instructions {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.obligation,
.disclaimer-content {
    animation: fadeInUp 0.6s ease forwards;
}

.obligation:nth-child(odd) {
    animation-delay: 0.1s;
}

.obligation:nth-child(even) {
    animation-delay: 0.2s;
}

button:focus,
.theme-toggle-btn:focus {
    outline: 2px solid var(--brand-color);
    outline-offset: 2px;
}

.contact-link:focus {
    outline: 2px solid var(--brand-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.oswald-bold {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.oswald-semibold {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.oswald-medium {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.oswald-regular {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.figtree-bold {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.figtree-semibold {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.figtree-medium {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.figtree-regular {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
} 