:root {
    --primary: #6366F1;
    --secondary: #A5B4FC;
    --bg: #FFFFFF;
    --text: #0F172A;
    --surface: #F8FAFC;
    --notify: #EF4444;
    --gradient: linear-gradient(135deg, #6366F1 0%, #A5B4FC 100%);
    --glass-border: rgba(99, 102, 241, 0.15);
}

.about-obsidian-hero {
    background: var(--bg);
    min-height: 100vh;
    padding: 190px 5% 70px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin-top: -105px;
}

/* Ambient Background Lights */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(120px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.2;
}
.ag-1 { background: var(--primary); top: -10%; right: -5%; }
.ag-2 { background: var(--secondary); bottom: -10%; left: -5%; }

/* Soft overlay */
.about-obsidian-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99,102,241,0.15), transparent);
}

.about-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- TEXT SECTION --- */
.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 15px;
}

.glass-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}
.glass-title span { color: var(--primary); }

.highlight-bento {
    background: var(--surface);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 30px 30px 0;
    margin-bottom: 35px;
    box-shadow: inset 10px 0 20px rgba(99,102,241,0.1);
}
.highlight-bento p {
    font-size: 1.4rem;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
}

.story-text p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* 3D Stat Bubbles */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.stat-bubble {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 20px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.05),
        inset 2px 2px 5px rgba(255,255,255,0.6);
}
.stat-bubble strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text);
}
.stat-bubble span {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
}

/* --- VISUAL SECTION --- */
.artifact-frame {
    position: relative;
    border-radius: 50px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.artifact-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
}

/* Glass reflection */
.glass-reflection {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(99,102,241,0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
    border-radius: 50px;
}

/* Floating badge */
.floating-tag {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--primary);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(99,102,241,0.3);
    animation: floatVertical 4s infinite ease-in-out;
}
.floating-tag i {
    color: #fff;
    font-size: 1.5rem;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .highlight-bento {
        border-left: none;
        border-top: 4px solid var(--primary);
        border-radius: 30px;
    }

    .about-stats {
        justify-content: center;
    }

    .artifact-frame img {
        height: 400px;
    }

    .floating-tag {
        right: 20px;
    }
}

@media (max-width: 600px) {
    .glass-title {
        font-size: 2.5rem;
    }

    .stat-bubble {
        padding: 15px 20px;
        width: 100%;
    }
}

:root {
    --primary: #6366F1;
    --secondary: #A5B4FC;
    --bg: #FFFFFF;
    --text: #0F172A;
    --surface: #F8FAFC;
    --notify: #EF4444;
    --gradient: linear-gradient(135deg, #6366F1 0%, #A5B4FC 100%);
}

.different-section {
    background-color: var(--bg);
    padding: 80px 5% 50px;
    position: relative;
    overflow: hidden;
}

/* Background Orbs */
.diff-orb {
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}
.orb-top { top: -100px; right: -50px; background: var(--primary); }
.orb-bottom { bottom: -100px; left: -50px; background: var(--secondary); }

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- HEADER STYLE --- */
.why-header {
    text-align: center;
    margin-bottom: 70px;
}
.eyebrow {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.why-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text);
    margin: 15px 0;
}
.why-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-header p {
    color: #64748B;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- THE 3D BUBBLE CARDS --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--surface);
    padding: 45px 30px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    
    /* THE FIX: Sharp, uniform edges on all sides */
    border: 1px solid rgba(165, 180, 252, 0.3); 
    
    /* Layered 3D Shadow (Internal volume + soft drop) */
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.06), 
        inset 4px 4px 10px #ffffff, 
        inset -4px -4px 10px rgba(165, 180, 252, 0.2);
}

.why-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 
        0 30px 60px rgba(99, 102, 241, 0.12), 
        inset 4px 4px 10px #ffffff;
}

/* 3D Icon Bubble */
.icon-wrap {
    width: 80px; height: 80px;
    background: var(--gradient);
    border-radius: 25px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2.2rem;
    color: white;
    transform: rotate(-10deg);
    transition: 0.4s;
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.3);
}

.why-card:hover .icon-wrap {
    transform: rotate(0deg) scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.why-card p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .why-header h2 { font-size: 2rem; }
    .why-grid { grid-template-columns: 1fr; }
}

:root {
    --primary: #6366F1;
    --secondary: #A5B4FC;
    --bg: #FFFFFF;
    --text: #0F172A;
    --surface: #F8FAFC;
    --notify: #EF4444;
    --gradient: linear-gradient(135deg, #6366F1 0%, #A5B4FC 100%);
}

.prism-mv-section {
    background-color: var(--bg);
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Suble Dot Grid for Professional Look */
.tech-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
}

.mv-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- HEADER --- */
.mv-header { text-align: center; margin-bottom: 80px; }
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.status-tag .dot { width: 6px; height: 6px; background: var(--notify); border-radius: 50%; }

.mv-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text);
    margin-top: 20px;
    letter-spacing: -2px;
}
.mv-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- THE PRISM TILES --- */
.prism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.prism-card {
    position: relative;
    background: var(--surface);
    border-radius: 45px;
    padding: 60px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* SHARP EDGE DEFINITION: 1px Indigo + 1px White Inset */
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.05),
        inset 1px 1px 0px #ffffff;
}

.prism-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 50px 100px rgba(99, 102, 241, 0.1);
}

.prism-icon {
    width: 90px; height: 90px;
    background: #fff;
    border-radius: 28px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 40px;
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.05),
        inset 3px 3px 6px rgba(255,255,255,1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.prism-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 20px;
}

.prism-content p {
    font-size: 1.15rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 90%;
}

/* Corner Decoration for that "Premium Tool" vibe */
.corner-accent {
    position: absolute;
    bottom: 40px; right: 40px;
    width: 40px; height: 40px;
    border-right: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
    border-radius: 0 0 15px 0;
    opacity: 0.2;
    transition: 0.4s;
}

.prism-card:hover .corner-accent {
    opacity: 1;
    width: 50px; height: 50px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .prism-grid { grid-template-columns: 1fr; }
    .prism-card { padding: 40px; border-radius: 35px; }
}

@media (max-width: 600px) {
    .mv-header h2 { font-size: 2.2rem; }
    .prism-content h3 { font-size: 1.8rem; }
    .prism-icon { width: 70px; height: 70px; font-size: 2rem; }
}