/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1d1d1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0077ed;
}

/* Container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    padding: 48px 48px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    width: 80px;
    height: auto;
    display: block;
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px 80px;
}

.headline {
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.subheadline {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.003em;
    color: #86868b;
    margin-bottom: 48px;
    line-height: 1.38105;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 980px;
    margin-bottom: 64px;
    border: 1px solid #d2d2d7;
}

.coming-soon-badge span {
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: 0.012em;
}

/* Social Media Section */
.social-media {
    padding: 40px 0;
}

.social-title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.011em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f5f5f7;
    transition: all 0.3s ease;
    color: #1d1d1f;
}

.social-link:hover {
    background-color: #0071e3;
    color: #ffffff;
    transform: scale(1.1);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer */
.footer {
    padding: 32px 48px;
    text-align: center;
    border-top: 1px solid #d2d2d7;
}

.footer p {
    font-size: 12px;
    color: #86868b;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 32px 24px 24px;
    }
    
    .logo-img {
        width: 60px;
    }

    .headline {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .subheadline {
        font-size: 21px;
        margin-bottom: 32px;
    }

    .coming-soon-badge {
        padding: 10px 24px;
        margin-bottom: 48px;
    }

    .coming-soon-badge span {
        font-size: 15px;
    }

    .social-links {
        gap: 24px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 24px 16px 20px;
    }

    .logo-img {
        width: 50px;
    }

    .headline {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer {
        padding: 24px 16px;
    }
}