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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(129, 140, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(129, 140, 248, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.2);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f472b6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

header p {
    color: #cbd5e1;
    font-size: 1.2rem;
    opacity: 0.9;
}

.info-section {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(129, 140, 248, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(129, 140, 248, 0.3),
        0 0 40px rgba(129, 140, 248, 0.2);
    transform: translateY(-5px);
}

.info-section h2 {
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-step {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    border-color: rgba(129, 140, 248, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.workflow-step h3 {
    color: #f1f5f9;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.workflow-step p {
    color: #cbd5e1;
    font-size: 1rem;
}

.audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-item {
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
}

.audience-item:hover {
    border-color: rgba(129, 140, 248, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.2);
}

.audience-item h3 {
    color: #a5b4fc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.audience-item p {
    color: #cbd5e1;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    border-left: 4px solid #818cf8;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(10, 10, 10, 0.7);
    transform: translateX(5px);
    border-left-color: #c084fc;
}

.features-list li strong {
    color: #a5b4fc;
    font-size: 1.1rem;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case {
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.use-case h3 {
    color: #a5b4fc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.use-case blockquote {
    color: #cbd5e1;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid #818cf8;
    padding-left: 1.5rem;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(129, 140, 248, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.2);
    margin-bottom: 2rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-size: 2rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(129, 140, 248, 0.5);
}

.landings {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(129, 140, 248, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landings::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 140, 248, 0.1) 0%,
        rgba(192, 132, 252, 0.1) 50%,
        rgba(244, 114, 182, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.landings:hover::before {
    opacity: 1;
}

.landings:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(129, 140, 248, 0.3),
        0 0 40px rgba(129, 140, 248, 0.2);
    transform: translateY(-5px);
}

.landings h2 {
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.landings ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.landings li {
    margin-bottom: 1rem;
}

.landings a {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.landings a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(129, 140, 248, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.landings a:hover::before {
    left: 100%;
}

.landings a:hover {
    color: #c084fc;
    background: rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.4);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
    transform: translateX(5px);
}

.landing-desc {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 2.5rem 1.5rem;
    }
    
    header {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .info-section {
        padding: 2rem;
    }
    
    .workflow,
    .audience,
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .landings {
        padding: 2rem;
    }
    
    .landings h2 {
        font-size: 1.5rem;
    }
    
    .landings a {
        display: block;
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 0.75rem;
    }
    
    header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    header p {
        font-size: 0.9rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
    
    .landings {
        padding: 1.5rem;
    }
    
    .landings h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .landings a {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}
