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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle background curve */
.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: fadeIn 2s ease-out;
}

/* Main content */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 48rem;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Decorative circle */
.decorative-circle {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    opacity: 0.8;
    animation: scaleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Main heading */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

/* Subtitle */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4rem;
    animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* Coming soon message */
.message {
    margin-bottom: 5rem;
    animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.message p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.6;
    color: #374151;
    margin: 0.75rem 0;
}

/* Contact */
.contact {
    animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2563eb;
}

.contact-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-link:hover .arrow {
    transform: translateX(4px);
}

/* Minimal decorative dot */
.decorative-dot {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #d1d5db;
    animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .content {
        padding: 0 1rem;
    }

    .decorative-circle {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        margin-bottom: 3rem;
    }

    .message {
        margin-bottom: 4rem;
    }

    .decorative-dot {
        bottom: 2rem;
    }
}
