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

body {
    font-family: "Inter", sans-serif;
    background: #0a0b0e;
    color: #f9fafb;
    overflow-x: hidden;
    font-variation-settings: "wght"400, "slnt"0;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.6;
}

.parallax {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.parallax span {
    position: absolute;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.parallax span:nth-child(1) {
    top: 20%;
    left: 10%;
}

.parallax span:nth-child(2) {
    top: 42%;
    left: 70%;
}

.parallax span:nth-child(3) {
    top: 65%;
    left: 30%;
}

.parallax span:nth-child(4) {
    top: 80%;
    left: 60%;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 56px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.brand {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.status {
    font-size: 14px;
    color: #9ca3af;
}

section {
    padding: 180px 80px;
}

.intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.intro h1 {
    font-size: 96px;
    line-height: 0.95;
    letter-spacing: -2px;
}

.morph-shapes {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    opacity: 0.7;
    z-index: 1;
}

.icons {
    position: absolute;
    top: 10%;
    right: 10%;
    display: flex;
    gap: 20px;
    pointer-events: none;
}

.icons .icon {
    width: 40px;
    height: 40px;
    opacity: 0.15;
    transform-origin: center;
}

.scroll-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-text {
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    max-width: 900px;
}

.manifest {
    max-width: 900px;
}

.manifest h2 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 32px;
}

.manifest p {
    font-size: 20px;
    color: #d1d5db;
}

.horizontal {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.track {
    display: flex;
    gap: 140px;
    font-size: 48px;
    font-weight: 700;
    white-space: nowrap;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transform: scale(0.9);
    opacity: 0.6;
}

.item span {
    margin-top: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    font-family: "DM Sans", sans-serif;
}

/* Hover animation */
.item:hover img {
    transform: scale(1.05) rotate(-2deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .track {
        gap: 40px;
    }

    .item img {
        width: 150px;
        height: 150px;
    }

    .item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .track {
        gap: 20px;
    }

    .item img {
        width: 120px;
        height: 120px;
    }

    .item span {
        font-size: 0.9rem;
    }
}

.beliefs h2 {
    font-size: 72px;
    margin-bottom: 32px;
}

.beliefs p {
    font-size: 22px;
    margin-bottom: 12px;
}

.closing {
    text-align: center;
    padding-bottom: 240px;
}

.closing h2 {
    font-size: 96px;
    line-height: 0.95;
}

.footer {
    padding: 40px;
    text-align: center;
    color: #6b7280;
}

/* Media Queries for small screens */
@media (max-width: 768px) {
    section {
        padding: 100px 20px;
    }

    .intro h1,
    .manifest h2,
    .beliefs h2,
    .closing h2 {
        font-size: 8vw;
    }

    .scroll-text {
        font-size: 5vw;
    }

    .track {
        font-size: 6vw;
        gap: 4vw;
    }

    .header {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {

    .intro h1,
    .manifest h2,
    .beliefs h2,
    .closing h2 {
        font-size: 10vw;
    }

    .scroll-text {
        font-size: 6vw;
    }

    .track {
        font-size: 8vw;
        gap: 3vw;
    }

    section {
        padding: 80px 16px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 16px;
    }
}