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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f1;
    color: #111;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8vw;
}

.content {
    max-width: 900px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 80px;
}

.logo span {
    font-weight: 300;
    margin-left: 8px;
}

h1 {
    font-size: clamp(60px, 10vw, 150px);
    line-height: 0.88;
    letter-spacing: -6px;
    font-weight: 700;
}

.intro {
    margin-top: 60px;
    max-width: 520px;
    font-size: 22px;
    line-height: 1.5;
    color: #555;
}

.coming {
    margin-top: 60px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}