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

body {
    background-color: #0A0A0A;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.hero {
	position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #0A0A0A;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('../assets/drysignal_banner_back.png') center bottom no-repeat;
    background-size: cover;
    opacity: 0.35;
    pointer-events: none;
}

.hero-content {
    max-width: 820px;
}

.logo {
    width: 170px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 26px;
}

.manifesto {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    font-weight: 300;
    color: #E5E5E5;
    margin-bottom: 30px;
}

.status {
    font-size: 0.95rem;
    color: #7A7A7A;
}

section {
    padding: 110px 20px;
    text-align: center;
}

.about {
    background-color: #101010;
}

.project {
    background-color: #161616;
}

.contact {
    background-color: #1C1C1C;
}

section + section {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.about p,
.project p,
.contact p {
    color: #CFCFCF;
    font-size: 1.05rem;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    padding: 70px 20px;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    background-color: #0A0A0A
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
    }
	
    .hero h1 {
        font-size: 2rem;
    }

    .manifesto {
        font-size: 1.05rem;
    }

    section {
        padding: 90px 20px;
    }
}