body {
    font-family: "Inter", sans-serif;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: black;
    padding: 24px 64px;
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.logo {
    height: 50px;
}

.menu {
    display: flex;
    color: white;
    gap: 24px;
    align-items: center;
}

a {
    font-family: sans-serif;
    text-decoration: none;
    color: white;
    
}

button {
    border-radius: 12px;
    padding: 12px 12px;
    border: none;
    font-size: medium;

}

.signin {
    border: 1px solid white;
    font-family: "Inter", sans-serif;
    background-color: black;
    color: white;
    width: 107px;
    height: 46px;
    border-radius: 12px;
}

ul {
    font-family: "Inter", sans-serif;
}

.hamburger {
    display: none;
}

.left {
    flex: 1;
    padding: 0px 64px 0px 64px;
    color: white;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.right {
    flex: 1;
}

.right img {
    width: 100%;

}

.hero {
    display: flex;
    flex: 1;
    height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #666666 100%);
    padding-top: 96px;
}

.eyebrow {
    background: linear-gradient(90deg, #F45028 0%, #EBB907 100%);
    font-family: "Inter", sans-serif;
    padding: 10px;
    width: fit-content;
    border-radius: 100px;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
}

.p2 {
    color: #C8C8C8;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.start {
    width: fit-content;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    font-family: "Inter", sans-serif;
    margin-top: 40px;
}

.stats {
    background-color: black;
    color: white;
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}

h1 {
    color: white;
    font-size: 64px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 64px;
}

h2 {
    font-size: 40px;
    line-height: 1.25;
    text-align: center;
    max-width: 520px;
}

.number {
    font-size: 64px;
    line-height: 48px;
    font-weight: 600;
}

.body-text {
    color: white;
}

.text-gray {
    color: #C8C8C8;
}

.stats-item ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}

.stats-list {
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: space-between;
    margin-top: 32px;
}

.shader {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: -5px;
}

.stats img {
    position: absolute;
    right: 0;
    top: 70px;
}

@media (max-width: 640px) {

    .menu, .signin {
        display: none;
    }

.hamburger {
display: flex;
}

nav {
    padding: 35px;
}

.hero {
    flex-direction: column-reverse;
    padding-top: 300px;
}
.left {
    padding: 32px 24px;
}

.stats-list {
    flex-direction: column;
    align-items: center;
    gap: 55px;
    text-align: center;
}

}





