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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
}

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

main {
    width: 100%;
    padding: 2rem;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: slideUp 1s ease-out;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

.mission {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: #2d2d2d;
    max-width: 640px;
    margin: 0 auto 4rem;
    letter-spacing: 0.01em;
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
}

.products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.product-link:hover {
    opacity: 0.7;
}

.product-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.product-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .mission {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 3rem;
    }
    
    .products {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    main {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mission {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 2.5rem;
    }
    
    .products {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
    
    .product-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    main {
        padding: 1rem;
    }
}

