/* Prototype Styles - proto-20260415-105900-test-fintech-dashboard-with-me */
:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --secondary: #7209b7;
    --accent: #f72585;
    --success: #4cc9f0;
    --warning: #ff9e00;
    --danger: #ef476f;
    
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --darker: #121416;
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    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: var(--dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo i {
    color: var(--primary);
    font-size: 2.5rem;
}

.logo h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.metadata {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--darker);
}

.hero-content h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-style: italic;
    padding: 20px;
    background: var(--light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    background: linear-gradient(135deg, var(--light), #e9ecef);
    width: 300px;
    height: 200px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    border: 2px dashed #adb5bd;
}

.visual-placeholder i {
    margin-bottom: 15px;
    opacity: 0.8;
}

.visual-placeholder p {
    font-weight: 600;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--darker);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h3 i {
    color: var(--primary);
}

/* Prompt Card */
.prompt-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--light), #f1f3f9);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent);
}

.prompt-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.prompt-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.prompt-text {
    flex: 1;
}

.prompt-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--darker);
    margin-bottom: 15px;
    font-weight: 500;
}

.prompt-info {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    background: var(--light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.8rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--darker);
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    min-width: 120px;
    background: var(--light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tech-item i {
    color: var(--primary);
}

.tech-item span {
    font-weight: 600;
    color: var(--dark);
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--darker);
}

.step-content p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--darker);
    color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo i {
    color: var(--success);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-info p {
    color: #6c757d;
    margin-bottom: 8px;
}

.footer-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .metadata {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        gap: 15px;
    }
    
    .tech-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px;
    }
    
    .section {
        padding: 25px 20px;
    }
    
    .prompt-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}
