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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --light-gray: #E8E8E8;
    --accent: #FF3366;
    --yellow: #FFE500;
}

body {
    font-family: 'Archivo', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
}

* {
    cursor: none !important;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease;
    background: var(--white);
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-color: var(--white);
}

a, button, .nav-toggle, input, textarea {
    cursor: none;
}

/* Circular Navigation */
.nav-circle {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 140px;
    height: 140px;
    background: var(--black);
    border-radius: 50%;
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-circle:hover {
    transform: scale(1.1) rotate(10deg);
}

.nav-circle.open {
    transform: scale(30);
}

.nav-toggle {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1001;
    position: fixed;
    top: 40px;
    right: 40px;
    transition: all 0.3s ease;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle.active {
    color: var(--white);
    font-size: 12px;
    transform: none;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.nav-menu.active {
    opacity: 1;
    pointer-events: all;
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin: 12px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-menu.active .nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-links li:nth-child(2) { transition-delay: 0.2s; }
.nav-links li:nth-child(3) { transition-delay: 0.3s; }
.nav-links li:nth-child(4) { transition-delay: 0.4s; }
.nav-links li:nth-child(5) { transition-delay: 0.5s; }
.nav-links li:nth-child(6) { transition-delay: 0.6s; }

.nav-links a {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(35px, 6vw, 70px);
    line-height: 1.1;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    transform: translateX(20px);
}

/* Brand */
.brand {
    position: fixed;
    top: 40px;
    left: 40px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    z-index: 100;
    mix-blend-mode: difference;
    color: var(--white);
}

.brand a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero.compact {
    min-height: 70vh;
    padding: 180px 40px 100px;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.hero-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(-1deg);
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 60px;
    position: relative;
}

.hero.compact .hero-title {
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.95;
    margin-bottom: 40px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.3s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.5s; font-style: italic; }

.hero-title .highlight {
    color: var(--accent);
    font-style: italic;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--gray);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.hero.compact .hero-subtitle {
    position: static;
    max-width: 700px;
    font-size: 22px;
}

.hero-subtitle.positioned {
    position: absolute;
    right: 0;
    bottom: 200px;
    max-width: 480px;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 120px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.stat {
    position: relative;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 6vw, 90px);
    line-height: 1;
    margin-bottom: 12px;
}

.stat:nth-child(1) .stat-number { color: var(--accent); }
.stat:nth-child(2) .stat-number { color: var(--black); }
.stat:nth-child(3) .stat-number { color: var(--yellow); }
.stat:nth-child(4) .stat-number { color: var(--black); }

.stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 120px 40px 60px;
}

.footer-main {
    max-width: 1600px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 120px;
}

.footer-brand {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1;
}

.footer-tagline {
    font-size: 24px;
    margin-bottom: 50px;
    color: var(--accent);
    font-weight: 500;
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.footer-cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translate(-4px, -4px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-item {
    margin-bottom: 15px;
    font-size: 16px;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.5;
}

.footer-partner {
    display: flex;
    align-items: center;
}

.footer-partner-link {
    display: inline-block;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-partner-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-partner-image {
    height: 40px;
    width: auto;
    display: block;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.5;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-links-section {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-partner {
        order: 2;
    }

    .footer-social {
        order: 3;
    }
}

@media (max-width: 768px) {
    .brand {
        display: block;
        top: 20px;
        left: 20px;
        font-size: 16px;
        color: var(--white);
        mix-blend-mode: difference;
    }

    .cursor {
        display: none;
    }

    a, button, .nav-toggle, input, textarea {
        cursor: auto;
    }

    .nav-circle {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }

    .nav-toggle {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
        font-size: 10px;
    }

    .nav-circle.open {
        transform: scale(40);
    }

    .nav-links li {
        margin: 8px 0;
    }

    .nav-links a {
        font-size: clamp(28px, 8vw, 45px);
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .hero.compact {
        padding: 100px 20px 60px;
    }

    .hero-subtitle.positioned {
        position: static;
        margin-top: 40px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .footer-brand {
        font-size: 50px;
    }

    .footer-tagline {
        font-size: 20px;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 40px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    cursor: default !important;
    display: block;
    visibility: visible;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer !important;
}

.cookie-banner-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cookie-banner-button {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
    white-space: nowrap;
}

.cookie-banner-button.accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-banner-button.accept:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translate(-2px, -2px);
}

.cookie-banner-button.decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-banner-button.decline:hover {
    background: var(--white);
    color: var(--black);
}

.cookie-banner-button.settings {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-button.settings:hover {
    border-color: var(--white);
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 30px 20px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-button {
        width: 100%;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
