:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent-1: #ec4899;
    --accent-2: #14b8a6;
    --accent-3: #f59e0b;
    --bg: #ffffff;
    --text: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
}

.container {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.content-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.title {
    font-size: 6.5rem;
    font-weight: 200;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--accent-1);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-1));
    margin: 2rem auto;
    border-radius: 2px;
}

.buttons {
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-1));
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dots {
    margin: 2rem 0;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    animation: pulse 2s infinite;
}

.dot:nth-child(1) { background: var(--primary); animation-delay: 0s; }
.dot:nth-child(2) { background: var(--accent-1); animation-delay: 0.3s; }
.dot:nth-child(3) { background: var(--accent-2); animation-delay: 0.6s; }

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1),
        rgba(236, 72, 153, 0.1));
    left: 10%;
    animation: float 10s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.1),
        rgba(245, 158, 11, 0.1));
    right: 10%;
    animation: float 8s infinite reverse;
}

.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        rgba(99, 102, 241, 0.05) 1px, 
        transparent 1px
    );
    background-size: 50px 50px;
}

.footnote {
    color: var(--text);
    opacity: 0.7;
    font-weight: 300;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }

    .content-wrapper {
        padding: 0 0.5rem;
    }

    .title {
        font-size: 3rem;
        word-break: break-word;
    }

    .buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}