:root {
    --teal: #1b8a8f;
    --teal-deep: #0d6e7a;
    --green: #7ac043;
    --ink: #1a2b32;
    --muted: #5a6b72;
    --bg: #f4faf9;
}

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 20%, rgba(122, 192, 67, 0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(27, 138, 143, 0.20), transparent 50%),
        var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 100vh;
}

.container {
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(13, 110, 122, 0.15);
}

.tagline {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--teal-deep);
    font-weight: 500;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.coming-soon {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.6s ease-in-out infinite;
}

.dot:nth-child(2) {
    background: var(--teal);
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    background: var(--teal-deep);
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.subtext {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 420px;
}

.contact {
    margin-top: 2.5rem;
    width: 100%;
}

.contact-label {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--teal-deep);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(27, 138, 143, 0.18);
    box-shadow: 0 4px 14px rgba(13, 110, 122, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13, 110, 122, 0.16);
    color: var(--teal);
}

footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 480px) {
    .logo { width: 170px; }
    h1 { font-size: 2rem; }
    .tagline { font-size: 1rem; }
}
