:root {
    --primary: #4A148C;
    --primary-light: #E1BEE7;
    --secondary: #111111;
    --light: #F9F9F9;
    --white: #ffffff;
    --text: #333333;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; margin: 0; color: var(--text); overflow-x: hidden; line-height: 1.7; }

/* --- WIP Banner --- */
.wip-banner {
    background: #FFF9C4;
    color: #5F4B00;
    padding: 10px 5%;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid #FBC02D;
    z-index: 1100;
    position: relative;
}
.wip-content { display: flex; align-items: center; justify-content: center; gap: 10px; }
.wip-icon { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* --- Navigation --- */
header {
    background: var(--white);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.logo { font-weight: 800; color: var(--primary); letter-spacing: 1px; font-size: 1.2rem; }
nav a { margin-left: 25px; text-decoration: none; color: var(--secondary); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
nav a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: white !important; padding: 8px 20px; border-radius: 4px; }

/* --- Hero --- */
.split { display: flex; min-height: 85vh; flex-wrap: wrap; }
.split-text { 
    flex: 1; padding: 8%; display: flex; flex-direction: column; justify-content: center; 
    background: var(--primary); color: white; animation: slideInLeft 1s ease-out;
}
.split-image { 
    flex: 1; min-height: 400px;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1350&q=80') center/cover; 
    animation: zoomIn 1.5s ease-out;
}
.badge { background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; display: inline-block; margin-bottom: 15px; }
.highlight { color: var(--primary-light); }
.cta-btn { background: var(--white); color: var(--primary); padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; margin-right: 15px; transition: var(--transition); }
.cta-secondary { border: 2px solid white; color: white; padding: 13px 35px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; transition: var(--transition); }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- Sections --- */
.section { padding: 100px 10%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); }
.bg-light { background: var(--light); }

.mission-vision { display: flex; padding: 0 10% 80px; gap: 30px; margin-top: -50px; position: relative; z-index: 10; flex-wrap: wrap; }
.box { flex: 1; background: white; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-radius: 12px; border-bottom: 5px solid var(--primary); transition: var(--transition); }
.box:hover { transform: translateY(-10px); }

/* --- Grid & Cards --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 40px; border-radius: 12px; border: 1px solid #eee; transition: var(--transition); }
.card:hover { border-color: var(--primary); background: #fdfaff; }
.card ul { padding-left: 20px; color: #666; font-size: 0.9rem; }

/* --- Founder Section --- */
.founder-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.founder-image img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--primary); }
.founder-text em { display: block; font-size: 1.2rem; color: var(--primary); margin: 20px 0; border-left: 3px solid var(--primary); padding-left: 20px; font-style: italic; }

/* --- Slider & Testimonials --- */
.splide__slide img { width: 100%; border-radius: 12px; height: 350px; object-fit: cover; }
.test-card { background: white; padding: 40px; border-radius: 15px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.1; position: absolute; top: 10px; left: 15px; }
.user { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.user-avatar { width: 45px; height: 45px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; }

/* --- Footer --- */
.contact-strip { background: var(--secondary); color: white; padding: 80px 10% 40px; text-align: center; }
.email-link { color: white; font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--primary); }
.footer-bottom { margin-top: 60px; opacity: 0.5; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

/* --- Animations --- */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 992px) {
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-image img { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .split-text, .split-image { flex: 100%; }
    .section { padding: 60px 5%; }
}