* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
background-color: #000;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}

.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 30px;
}

.logo {
width: 42%;
max-width: 700px;
height: auto;
margin-top: 10px;
margin-bottom: 60px;
}

.company-name {
font-size: 2rem;
font-weight: 500;
letter-spacing: 2px;
margin-bottom: 15px;
}

.hero h1 {
font-size: 1.4rem;
font-weight: 300;
letter-spacing: 3px;
text-transform: uppercase;
}

.roadmap-section {
position: fixed;
left: 60px;
top: 58%;
transform: translateY(-50%);
text-align: left;
}

.socials-section {
position: fixed;
left: 60px;
bottom: 40px;
text-align: left;
}

.contact-section {
position: fixed;
right: 60px;
bottom: 40px;
text-align: right;
}

.roadmap-section h2,
.socials-section h2,
.contact-section h2 {
font-size: 1.1rem;
margin-bottom: 10px;
font-weight: 500;
}

.roadmap-section p,
.socials-section p,
.contact-section p {
font-size: 0.9rem;
color: #bfbfbf;
}

.copyright {
position: fixed;
bottom: 35px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: #777;
font-size: 0.75rem;
letter-spacing: 1px;
line-height: 1.5;
}

@media (max-width: 768px) {

```
.hero {
    min-height: auto;
    padding: 30px 20px 120px;
}

.logo {
    width: 80%;
    margin-bottom: 40px;
}

.company-name {
    font-size: 1.4rem;
    text-align: center;
}

.hero h1 {
    font-size: 1rem;
    text-align: center;
}

.roadmap-section,
.socials-section,
.contact-section,
.copyright {
    position: static;
    transform: none;
    text-align: center;
}

.roadmap-section,
.socials-section,
.contact-section {
    margin-bottom: 30px;
}

.copyright {
    padding-bottom: 30px;
}
```

}
