@font-face{
    font-family:"Caviar";
    src:url("assets/Caviar(19).ttf");
    font-weight:400;
}

html,
body{
    margin:0;
    width:100%;
    height:100%;
    overflow:hidden;

    background:#050505;
    color:#f2f2f2;

    font-family:"Caviar",sans-serif;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.scene{
    position:fixed;
    inset:0;
    overflow:hidden;
}

.tree{
    position:absolute;

    left:47%;
    top:0;

    height:520vh;
    width:auto;

    transform:
        translateX(-50%)
        translateY(-89%);

    transition:
        transform 1.8s cubic-bezier(.22,1,.36,1);

    opacity:.9;

    pointer-events:none;

    z-index:0;
}

.guide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:.4;

    pointer-events:none;

    z-index:1;
}


.grain{
    position:absolute;
    inset:0;

    background:
        url("assets/grain(3).png")
        center/cover;

    mix-blend-mode:screen;

    opacity:.18;

    pointer-events:none;

    z-index:2;
}

.scene::after{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        ellipse at center,
        transparent 40%,
        rgba(0,0,0,.35) 100%
    );

    pointer-events:none;
    z-index:3;
}

.nav{
    position:fixed;
    top:28px;
    left:0;
    right:0;

    padding:0 48px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    z-index:100;
}

.logo img{
    width:220px;
    display:block;
}

nav{
    display:flex;
    align-items:center;

    gap:70px;

    padding-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.25);

    min-width:730px;

    opacity:1;
}

nav a{
    color:rgba(255,255,255,.85);

    text-decoration:none;

    font-size:13px;
    font-weight:300;

    letter-spacing:.08em;
    text-transform:uppercase;

    display:flex;
    align-items:center;
}

nav a.active{
    color:white;
    font-weight:700;
}

.nav-marker{
    width:12px;
    height:12px;

    margin-right:8px;

    flex-shrink:0;
}


#app{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    z-index:20;
}

.start{
    font-weight:700;

    font-size:82px;
    line-height:1;

    cursor:pointer;

    transition:.3s ease;
}

.start:hover{
    opacity:.8;
}

.sub{
    margin-top:24px;

    max-width:700px;

    font-size:12px;

    letter-spacing:.12em;
    text-transform:uppercase;

    opacity:.45;
}

.counter{
    margin-bottom:18px;

    font-size:12px;

    letter-spacing:.18em;
    text-transform:uppercase;

    opacity:.45;
}

.q{
    max-width:700px;

    font-size:20px;
    line-height:1.5;

    margin-bottom:42px;

    opacity:.85;
}


.answers{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.answers button{
    background:none;
    border:none;

    color:white;

    font-family:inherit;

    font-size:54px;
    font-weight:400;

    cursor:pointer;

    transition:
        opacity .25s ease,
        transform .25s ease;

    opacity:.72;
}

.answers button:hover{
    opacity:1;

    transform:
        translateY(-2px);
}

.answers button.active{
    opacity:1;
    font-weight:700;
}

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

.collection-title{
    font-weight:700;

    font-size:96px;
    line-height:1;

    letter-spacing:.04em;

    margin-bottom:10px;
}

.collection-subtitle{
    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.2em;

    opacity:.45;
}

.orbit,
.left,
.right{
    display:none;
}

.result{
    font-size:120px;
    line-height:1;
}


@media (max-width:768px){

    .nav{
        padding:0 20px;
    }

    .logo img{
        width:140px;
    }

    nav{
        gap:14px;
        min-width:auto;
    }

    nav a{
        font-size:10px;
    }

    .start{
    font-weight:700;

        font-size:58px;
    }

    .q{
        font-size:18px;
        max-width:90%;
    }

    .answers button{
        font-size:34px;
    }

    .collection-title{
    font-weight:700;

        font-size:56px;
    }
}
.collection-subtitle{
    color:#f2f2f2;
    text-decoration:none;
    cursor:pointer;
    transition:opacity .25s ease, transform .25s ease;
}

.collection-subtitle:hover{
    opacity:.9;
    transform:translateY(-1px);
}
@media (max-width:768px){.nav{top:22px;left:0;right:0;padding:0;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:24px}.logo img{width:150px}nav{width:min(82vw,480px);min-width:0;max-width:none;gap:0;display:flex;justify-content:space-between;align-items:center;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.32)}nav a{font-size:10px;letter-spacing:.055em;white-space:nowrap}.nav-marker,nav a.active img{width:8px;height:8px;margin-right:4px}}
@media (max-width:430px){.nav{top:20px;gap:22px}.logo img{width:138px}nav{width:86vw}nav a{font-size:9px;letter-spacing:.04em}}
