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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
		linear-gradient(
		180deg,
		#111111,
		#181818
		);
    color: #fff;
    line-height: 1.6;
}

.container {
    width: min(1100px, 90%);
    margin: auto;
}

header {
    position: sticky;
    top: 0;
    background: rgba(17,17,17,.95);
    border-bottom: 1px solid #2b2b2b;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo
{
    display:flex;
    align-items:center;
    gap:14px;

    color:white;
    text-decoration:none;

    font-size:24px;
    font-weight:700;
}

.logo img
{
    width:317px;
    height:50px;

    display:block;
}

.logo-text
{
    font-family: "Michroma", sans-serif;

    font-size: 28px;
    letter-spacing: 0.18em;

    background: linear-gradient(
        180deg,
        #f7f7f7 0%,
        #d8d8d8 22%,
        #8f8f8f 48%,
        #efefef 74%,
        #8a8a8a 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #bbb;
    text-decoration: none;
    transition: .2s;
}

nav a:hover {
    color: white;
}

.hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    text-align: center;
	background:
		radial-gradient(
		circle at top,
		#232323,
		#111111 70%);
}

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

.hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero p {
    color: #bbb;
    font-size: 20px;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.section {
    padding: 90px 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.section-text {
    max-width: 700px;
    color: #bbb;
    margin-bottom: 30px;
}

.features {
    margin-left: 20px;
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 10px;
}

.image-placeholder {
    height: 450px;
    border: 1px solid #333;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #777;
    background: #1b1b1b;
}

.email-link
{
    max-width: 700px;
    color: #bbb;
    margin-bottom: 30px;
}

.email-link:hover
{
    background: #242424;
    border-color: #8A4DFF;

    color: white;

    transform: translateY(-2px);
}

footer {
    padding: 50px 0;
    border-top: 1px solid #2b2b2b;
    text-align: center;
    color: #777;
}

@media (max-width: 700px) {

    header .container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 15px;
    }

    nav {
        gap: 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

}