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

@font-face {
    font-family: 'Telegraf';
    src: url('TelegrafReg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Telegraf', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('polariswall.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    flex-grow: 1;
    align-items: center;
}

.launching-text h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.text-section {
    max-width: 500px;
    justify-self: end;
}

.announcement {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.contact-info {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #b3b3b3;
}

.contact-info a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}