/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0d0f17;
    --bg-secondary: #131419;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
    --accent: #e0e0e0;
    --accent-hover: #ffffff;
    --glow-blue: rgba(80, 140, 220, 0.15);
    --glow-purple: rgba(120, 80, 200, 0.1);
    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Garet', 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
    font-size: 16px;
    scroll-behavior: auto;
    overflow-x: hidden;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vh;
    height: 100vw;
    background-image: url('assets/space-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: -1;
    filter: blur(var(--bg-blur, 0px));
    transition: filter 0.4s ease-out;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    cursor: none;
}

::selection {
    background: var(--accent);
    color: var(--text-primary);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease-out), opacity 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
    border-color: var(--accent);
}

/* ===== EDGE GLOW EFFECTS ===== */
.edge-glow {
    position: fixed;
    z-index: 50;
    pointer-events: none;
    opacity: 0.6;
}

.edge-glow--top {
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(50, 100, 180, 0.08), transparent);
}

.edge-glow--bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(50, 100, 180, 0.08), transparent);
}

.edge-glow--left {
    top: 0;
    left: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(to right, rgba(80, 60, 180, 0.06), transparent);
}

.edge-glow--right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(to left, rgba(80, 60, 180, 0.06), transparent);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 3px;
    height: 60px;
}

.scroll-indicator__track {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.scroll-indicator__fill {
    width: 100%;
    height: 0%;
    background: var(--text-primary);
    border-radius: 3px;
    transition: height 0.1s linear;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 10px 40px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(10, 15, 30, 0.15);
    backdrop-filter: blur(10px);
}



.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--ease-out);
    filter: brightness(0) invert(1);
    opacity: 1;
}

.logo:hover .logo__img {
    transform: scale(1.05);
}

/* Language Switcher Removed */

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.showreel-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s;
}

.showreel-link:hover {
    opacity: 0.7;
}

.play-icon {
    color: var(--accent);
    font-size: 10px;
}

.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 50px 50px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s var(--ease-in-out);
}

.menu-overlay.active {
    clip-path: inset(0 0 0% 0);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-link {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    transition: color 0.3s, transform 0.3s var(--ease-out);
    padding: 10px 0;
}

.menu-link::before {
    content: attr(data-index);
    position: absolute;
    left: -40px;
    top: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.menu-link:hover {
    color: var(--accent);
    transform: translateX(20px);
}

.menu-footer {
    margin-top: auto;
}

.menu-socials {
    display: flex;
    gap: 30px;
}

.menu-socials a {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.menu-socials a:hover {
    color: var(--accent);
}

/* ===== SECTIONS SCROLL OFFSET ===== */
section {
    scroll-margin-top: 100px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    scroll-margin-top: 0;
    /* Hero doesn't need offset */
}

/* Background overlay removed from hero - now on body */
.hero__bg {
    display: none;
}

/* ===== ASTEROIDS OVERLAY ===== */
.asteroids-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.asteroids-img {
    position: absolute;
    left: -10%;
    top: -30%;
    width: 120%;
    height: 300%;
    object-fit: cover;
    will-change: transform;
}

/* ===== ASTRONAUTS ===== */
.hero__astronauts {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.astronaut {
    position: fixed;
    will-change: transform, left, right;
    filter: drop-shadow(0 0 30px rgba(80, 140, 255, 0.3)) drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: left 1.5s var(--ease-out), right 1.5s var(--ease-out), transform 1.5s var(--ease-out), filter 0.3s;
}

/* Center astronaut — large, front and center */
.astronaut--center {
    height: 60vh;
    max-height: 600px;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Left astronaut — extremely close to center */
.astronaut--left {
    height: 48vh;
    max-height: 480px;
    left: 32%;
    top: 25%;
    z-index: 2;
}

/* Right astronaut — extremely close to center */
.astronaut--right {
    height: 48vh;
    max-height: 480px;
    right: 28%;
    top: 22%;
    z-index: 2;
}

.hero__content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 4;
    width: 65%;
    will-change: transform, opacity;
}

/* Hero logo removed - now in header */

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    margin-right: 0;
    width: 100%;
}

.hero__title-line {
    display: block;
    font-size: clamp(32px, 5vw, 65px);
    opacity: 0;
    transform: translateY(60px);
    animation: revealTitle 1.2s var(--ease-out) forwards;
}

.hero__title-line[data-delay="0"] {
    animation-delay: 0.3s;
}

.hero__title-line[data-delay="1"] {
    animation-delay: 0.5s;
}

.hero__title-line[data-delay="2"] {
    animation-delay: 0.7s;
}

.hero__title-line[data-delay="3"] {
    animation-delay: 0.9s;
}

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

.hero__info {
    position: absolute;
    bottom: 80px;
    right: 50px;
    z-index: 2;
    max-width: 400px;
}

.hero__description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 1.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== CONTENT WRAPPER (consistent width for all sections) ===== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ===== PARTNERS SECTION (was About) ===== */
.partners {
    position: relative;
    z-index: 3;
    padding: 150px 0;
    background: transparent;
}

.partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-title,
.projects__label {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.partner-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.partner-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.partner-logo {
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.partner-logo img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.logo-placeholder {
    font-size: 12px;
    border: 1px dashed var(--text-muted);
    padding: 10px;
    color: var(--text-muted);
}

.partner-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.partner-role {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsive Partners */
@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ===== OBJECTIVES SECTION (was Projects) ===== */
.objectives {
    position: relative;
    z-index: 3;
    padding: 50px 0 150px;
}

.projects__label {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.objective-item {
    opacity: 0;
    transform: translateY(30px);
    display: block;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), background 0.3s, padding-left 0.3s;
}

.objective-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 50px;
}

.objective-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.objective-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.objective-item:hover .objective-title {
    color: var(--accent);
}

.objective-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;

    /* Hover Reveal */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.5s var(--ease-out), margin-top 0.5s;
    margin-top: 0;
}

.objective-item:hover .objective-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

/* GDPR Popup */
.gdpr-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 50px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    justify-content: center;
}

.gdpr-popup.active {
    transform: translateY(0);
}

.gdpr-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gdpr-content p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 700px;
}

.gdpr-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.gdpr-btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.gdpr-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.gdpr-btn:hover {
    background: var(--accent);
    color: white;
}

@media (max-width: 768px) {
    .gdpr-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== PRIVACY POLICY POPUP ===== */
.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.privacy-popup.active {
    opacity: 1;
    visibility: visible;
}

.privacy-popup__content {
    background: var(--bg-secondary);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.privacy-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.privacy-popup__close:hover {
    color: var(--accent);
}

.privacy-popup__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.privacy-popup__section {
    margin-bottom: 30px;
}

.privacy-popup__section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.privacy-popup__section p,
.privacy-popup__section ul {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.privacy-popup__section ul {
    padding-left: 20px;
}

.privacy-popup__section li {
    margin-bottom: 8px;
}

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

    .privacy-popup__title {
        font-size: 24px;
    }
}

.bottom {
    position: relative;
    z-index: 3;
    padding: 150px 0;
    background: transparent;
}

.bottom__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.bottom__title {
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 80px;
    line-height: 1.15;
}

.bottom__title-line {
    display: block;
    font-size: clamp(28px, 4.5vw, 56px);
    overflow: hidden;
}

.bottom__title-line .char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.bottom__title-line.visible .char {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.bottom__title-line:nth-child(2) .char {
    transition-delay: calc(var(--char-index, 0) * 0.02s + 0.15s);
}

.bottom__title-line:nth-child(3) .char {
    transition-delay: calc(var(--char-index, 0) * 0.02s + 0.3s);
}

.bottom__title-line:nth-child(4) .char {
    transition-delay: calc(var(--char-index, 0) * 0.02s + 0.45s);
}

.bottom__info {
    max-width: 600px;
    margin-left: auto;
}

.bottom__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.bottom__text.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.bottom__cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--accent);
    margin-top: 20px;
    transition: color 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out) 0.3s, transform 0.8s var(--ease-out) 0.3s, color 0.3s, border-color 0.3s;
}

.bottom__cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.bottom__cta:hover {
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 3;
    padding: 80px 50px 40px;
    background: transparent;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column--left {
    text-align: left;
}

.footer__column--center {
    text-align: left;
}

.footer__column--right {
    text-align: left;
}

.footer__logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer__project-id {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__disclaimer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer__disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__socials a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__socials a:hover {
    color: var(--accent);
}

.footer__social-icon {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__lang {
    display: flex;
    gap: 15px;
}

.footer__lang a {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__lang a.active {
    color: var(--text-primary);
}

.footer__lang a:hover {
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    body::before {
        width: 100vw;
        height: 100vh;
        transform: translate(-50%, -50%) rotate(0deg);
        background-size: cover;
    }

    .asteroids-layer {
        opacity: 0.5;
    }

    .asteroids-img {
        height: 100%;
        top: 0;
    }

    .header {
        padding: 15px 20px;
    }

    .header-center,
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo__img {
        height: 45px;
    }

    .hero {
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero__content {
        bottom: 180px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .hero__title-line {
        font-size: clamp(24px, 7vw, 40px);
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .hero__info {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: 100%;
    }

    .hero__description {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Astronauti molto ridotti su mobile per evitare sovrapposizioni */
    .astronaut--left,
    .astronaut--right {
        height: 25vh;
        max-height: 220px;
        opacity: 0.7;
    }

    .astronaut--center {
        height: 35vh;
        max-height: 320px;
        opacity: 0.85;
    }

    .partners,
    .objectives,
    .bottom {
        padding: 100px 20px 80px;
    }

    .partners__container,
    .objectives-list,
    .bottom__content {
        padding: 0;
    }

    .section-title,
    .projects__label {
        font-size: 11px;
        margin-bottom: 50px;
        letter-spacing: 3px;
    }

    .partner-card {
        margin-bottom: 40px;
    }

    .partner-name {
        font-size: 16px;
        margin-top: 20px;
    }

    .partner-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .bottom__title {
        margin-bottom: 60px;
    }

    .bottom__title-line {
        font-size: clamp(22px, 6.5vw, 38px);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .bottom__info {
        margin-left: 0;
        max-width: 100%;
    }

    .bottom__text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .objective-item {
        padding: 25px 15px;
        margin-bottom: 10px;
    }

    .objective-item:hover {
        padding-left: 20px;
    }

    .objective-title {
        font-size: clamp(18px, 5vw, 26px);
        line-height: 1.3;
    }

    .objective-desc {
        font-size: 13px;
    }

    .footer {
        padding: 80px 20px 40px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer__column--center,
    .footer__column--right {
        text-align: left;
    }

    .footer__logo {
        width: 150px;
    }

    .footer__disclaimer-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer__disclaimer {
        font-size: 12px;
    }

    .menu-link {
        font-size: clamp(28px, 7vw, 50px);
        padding: 8px 0;
    }

    .menu-link::before {
        display: none;
    }

    .menu-overlay {
        padding: 100px 20px 40px;
    }

    .menu-nav {
        gap: 8px;
    }

    .scroll-indicator {
        right: 12px;
        height: 40px;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    a,
    button {
        cursor: pointer;
    }
}

/* ===== LOADING ANIMATION ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-bar {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar__fill {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    animation: loadingProgress 1.5s var(--ease-in-out) forwards;
}

@keyframes loadingProgress {
    to {
        width: 100%;
    }
}

/* ===== SMOOTH PARALLAX HELPERS ===== */
.parallax {
    will-change: transform;
}

/* ===== SCROLL REVEAL EFFECTS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for multiple elements */
.reveal-stagger:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-stagger:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-stagger:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-stagger:nth-child(5) {
    transition-delay: 0.4s;
}