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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #2d3748;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2d3748;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
    text-align: left;
}

.headline {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.description {
    margin-bottom: 3rem;
}

.desc-line {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.desc-line:hover {
    color: #2d3748;
    transform: translateX(4px);
}

.highlight {
    color: #2d3748;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    border-radius: 1px;
    opacity: 0.7;
}

.emoji {
    font-size: 1.25em;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.founder-link {
    color: #4a5568;
    text-decoration: underline;
    text-decoration-color: #cbd5e0;
    transition: all 0.2s ease;
}

.founder-link:hover {
    color: #2d3748;
    text-decoration-color: #4a5568;
}

.kit-form-container {
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Style Kit form elements to match our design */
.kit-form-container .formkit-form {
    font-family: 'Inter', sans-serif !important;
}

.kit-form-container .formkit-input {
    padding: 0.875rem 1rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    font-size: 0.95rem !important;
    background: white !important;
    color: #2d3748 !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.kit-form-container .formkit-input:focus {
    border-color: #4299e1 !important;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1) !important;
    outline: none !important;
}

.kit-form-container .formkit-submit {
    padding: 0.875rem 1.5rem !important;
    background: #2d3748 !important;
    color: white !important;
    border: 1px solid #2d3748 !important;
    border-radius: 6px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
    width: auto !important;
}

.kit-form-container .formkit-submit:hover {
    background: #1a202c !important;
    border-color: #1a202c !important;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.form-message {
    min-height: 1.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.success {
    color: #38a169;
}

.error {
    color: #e53e3e;
}

.footer {
    padding: 2rem 3rem;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer p {
    font-size: 0.875rem;
    color: #718096;
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1.5rem;
    }
    
    .main {
        padding: 1rem 1.5rem;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        max-width: none;
    }
    
    #email {
        border-radius: 6px;
        border-right: 1px solid #e2e8f0;
        margin-bottom: 0.5rem;
    }
    
    button {
        border-radius: 6px;
        width: 100%;
    }
    
    .footer {
        padding: 1.5rem;
    }
}