:root {
    --primary: #0E3F2F;
    --primary-hover: #0B1F19;
    --bg-color: #0B0F0D;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --grid-color: rgba(14, 63, 47, 0.2);
    --accent: #E6A700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

.grid-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 70%);
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.logo-container {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.logo-image {
    width: 2.5rem;
    height: 2.5rem;
}

.logo h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0;
}

.content h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.content h2 .highlight {
    color: var(--accent);
    display: block;
}

.content .tagline {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
}

.content .description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    max-width: 600px;
    text-align: center;
}

.benefits li {
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    line-height: 1.5;
    text-align: center;
}

.launching-soon {
    margin: 3rem auto 2rem;
    text-align: center;
}

.launching-soon h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.time-box span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.time-box .label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 2rem;
    height: 2rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
    .logo-container {
        width: 3.5rem;
        height: 3.5rem;
    }

    .logo-image {
        width: 2rem;
        height: 2rem;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .content .tagline {
        font-size: 1.125rem;
    }

    .content .description {
        font-size: 1rem;
    }

    .benefits {
        font-size: 0.875rem;
    }

    .launching-soon h3 {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        min-width: 70px;
        padding: 1rem;
    }

    .time-box span:first-child {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-logo span {
        font-size: 1rem;
    }
}